diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2003-08-15 08:49:31 +0800 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2003-08-15 08:49:31 +0800 |
commit | 23487909ca7033a70fc30adfb2f3bdadddcee493 (patch) | |
tree | c7a9a132ab286601d6d7a3590fd42cad88671385 /security | |
parent | 39602a96bc814acbf78e72edd603b5471a42823c (diff) | |
download | freebsd-ports-gnome-23487909ca7033a70fc30adfb2f3bdadddcee493.tar.gz freebsd-ports-gnome-23487909ca7033a70fc30adfb2f3bdadddcee493.tar.zst freebsd-ports-gnome-23487909ca7033a70fc30adfb2f3bdadddcee493.zip |
Fix non-default dependency on openldap2[012] which is broken by splitting.
# I'm not bumped port revision of them because this should not affect
# packages built on bento...
Diffstat (limited to 'security')
-rw-r--r-- | security/cyrus-sasl/scripts/configure.sasl | 4 | ||||
-rw-r--r-- | security/dirmngr/Makefile | 2 | ||||
-rw-r--r-- | security/gnupg/Makefile | 2 | ||||
-rw-r--r-- | security/gnupg1/Makefile | 2 | ||||
-rw-r--r-- | security/heimdal/Makefile | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/security/cyrus-sasl/scripts/configure.sasl b/security/cyrus-sasl/scripts/configure.sasl index 33253768b3d2..33a794543eb5 100644 --- a/security/cyrus-sasl/scripts/configure.sasl +++ b/security/cyrus-sasl/scripts/configure.sasl @@ -155,8 +155,8 @@ while [ "$1" ]; do rm -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc exit 1 fi - echo "LIB_DEPENDS+= ldap.2:\${PORTSDIR}/net/openldap20" - echo "LIB_DEPENDS+= lber.2:\${PORTSDIR}/net/openldap20" + echo "LIB_DEPENDS+= ldap.2:\${PORTSDIR}/net/openldap20-client" + echo "LIB_DEPENDS+= lber.2:\${PORTSDIR}/net/openldap20-client" echo "CONFIGURE_ARGS+= --with-ldap=\${PREFIX}" LDAP_REQ=ldap OPENLDAP=1 diff --git a/security/dirmngr/Makefile b/security/dirmngr/Makefile index 3e17876d483b..1bc9b0163056 100644 --- a/security/dirmngr/Makefile +++ b/security/dirmngr/Makefile @@ -40,7 +40,7 @@ CONFIGURE_ARGS+=--with-included-gettext=no # OpenLDAP 2.1.* if they want. .if defined(WITH_LDAP21) -LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap21 +LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap21-client .else LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap20-client .endif diff --git a/security/gnupg/Makefile b/security/gnupg/Makefile index 822959d80695..440dd8d192e1 100644 --- a/security/gnupg/Makefile +++ b/security/gnupg/Makefile @@ -37,7 +37,7 @@ MAN7= gnupg.7 LIB_DEPENDS+= iconv.3:${PORTSDIR}/converters/libiconv .endif .if defined(WITH_LDAP) || exists(${PREFIX}/lib/libldap.so.2) -LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap20 +LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap20-client PLIST_SUB+= WITH_LDAP="" .else PLIST_SUB+= WITH_LDAP="@comment " diff --git a/security/gnupg1/Makefile b/security/gnupg1/Makefile index 822959d80695..440dd8d192e1 100644 --- a/security/gnupg1/Makefile +++ b/security/gnupg1/Makefile @@ -37,7 +37,7 @@ MAN7= gnupg.7 LIB_DEPENDS+= iconv.3:${PORTSDIR}/converters/libiconv .endif .if defined(WITH_LDAP) || exists(${PREFIX}/lib/libldap.so.2) -LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap20 +LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap20-client PLIST_SUB+= WITH_LDAP="" .else PLIST_SUB+= WITH_LDAP="@comment " diff --git a/security/heimdal/Makefile b/security/heimdal/Makefile index 4ec1420bfc00..4e634682e9a4 100644 --- a/security/heimdal/Makefile +++ b/security/heimdal/Makefile @@ -19,7 +19,7 @@ MAINTAINER= nectar@FreeBSD.ORG COMMENT= A re-implementation of Kerberos V .if defined(WITH_LDAP) -LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap20 +LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap20-client .endif .if defined(WITH_CRACKLIB) BUILD_DEPENDS+= ${LOCALBASE}/lib/libcrack.a:${PORTSDIR}/security/cracklib |