diff options
author | joerg <joerg@pkgsrc.org> | 2006-06-02 23:26:30 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-06-02 23:26:30 +0000 |
commit | f18c5dcfa367c1b596fed7fe429de9a4b5c7115e (patch) | |
tree | 30e7cf0e5c7237f826087386a7d63d7bcfa49f63 | |
parent | 011e498021988a5f490c71b3994c7d9b01a2efb2 (diff) | |
download | pkgsrc-f18c5dcfa367c1b596fed7fe429de9a4b5c7115e.tar.gz |
Fix some more references to old prefixes I missed in the first run.
-rw-r--r-- | www/horde3/options.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/www/horde3/options.mk b/www/horde3/options.mk index 785e00df23e..58bd58e78b3 100644 --- a/www/horde3/options.mk +++ b/www/horde3/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.5 2006/05/31 18:22:26 ghen Exp $ +# $NetBSD: options.mk,v 1.6 2006/06/02 23:26:30 joerg Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.horde PKG_SUPPORTED_OPTIONS= ldap pgsql mysql @@ -11,7 +11,7 @@ PKG_SUGGESTED_OPTIONS= mysql ### .if !empty(PKG_OPTIONS:Mldap) . include "../../databases/openldap-client/buildlink3.mk" -DEPENDS+= php-ldap>=4.3.3:../../databases/php-ldap +DEPENDS+= ${PHP_PKG_PREFIX}-ldap>=4.3.3:../../databases/php-ldap .endif ### @@ -19,7 +19,7 @@ DEPENDS+= php-ldap>=4.3.3:../../databases/php-ldap ### .if !empty(PKG_OPTIONS:Mpgsql) . include "../../mk/pgsql.buildlink3.mk" -DEPENDS+= php-pgsql>=4.3.3:../../databases/php-pgsql +DEPENDS+= ${PHP_PKG_PREFIX}-pgsql>=4.3.3:../../databases/php-pgsql .endif ### @@ -27,5 +27,5 @@ DEPENDS+= php-pgsql>=4.3.3:../../databases/php-pgsql ### .if !empty(PKG_OPTIONS:Mmysql) . include "../../mk/mysql.buildlink3.mk" -DEPENDS+= php-mysql>=4.3.3:../../databases/php-mysql +DEPENDS+= ${PHP_PKG_PREFIX}-mysql>=4.3.3:../../databases/php-mysql .endif |