mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
5c1d975935
Horde_ActiveSync 2.6.1 -> 2.6.2 Horde_Css_Parser 1.0.0 -> 1.0.1 Horde_Db 2.0.3 -> 2.0.4 Horde_Imap_Client 2.12.0 -> 2.13.1 Horde_Mail 2.0.6 -> 2.1.0 Horde_Mime 2.2.4 -> 2.2.5 Horde_Queue 1.0.0 -> 1.1.0 Horde_SessionHandler 2.2.1 -> 2.2.2 Horde_View 2.0.2 -> 2.0.3 horde-wicked 2.0.0RC1 -> 2.0.0RC2 horde-whups 3.0.0RC1 -> 3.0.0RC2 horde-ansel 3.0.0RC1 -> 3.0.0 final
37 lines
687 B
Makefile
37 lines
687 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= Horde_Db
|
|
PORTVERSION= 2.0.4
|
|
CATEGORIES= databases www pear
|
|
PKGNAMEPREFIX= pear-
|
|
|
|
MAINTAINER= horde@FreeBSD.org
|
|
COMMENT= Horde Database Libraries
|
|
|
|
OPTIONS_DEFAULT= MYSQL
|
|
OPTIONS_DEFINE= MYSQL MYSQLI PDO
|
|
MYSQL_DESC= Depend on mysql PHP extension
|
|
MYSQLI_DESC= Depend on mysqli PHP extension
|
|
PDO_DESC= Depend on PDO PHP extension
|
|
|
|
USE_HORDE_RUN= Horde_Date \
|
|
Horde_Exception \
|
|
Horde_Support
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PORT_OPTIONS:MMYSQL}
|
|
USE_PHP+= mysql
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MMYSQLI}
|
|
USE_PHP+= mysqli
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPDO}
|
|
USE_PHP+= pdo
|
|
.endif
|
|
|
|
.include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk"
|
|
.include <bsd.port.post.mk>
|