diff options
author | Jun Kuriyama <kuriyama@FreeBSD.org> | 2002-02-03 23:00:56 +0000 |
---|---|---|
committer | Jun Kuriyama <kuriyama@FreeBSD.org> | 2002-02-03 23:00:56 +0000 |
commit | 6707cd923c67cdf5b7a213f3b805a2732e6879bc (patch) | |
tree | cadc5089e81e5ed6d02d2766b20f6aa9f14b129d /security | |
parent | Clarify dependency and add a flag to make NTL an ISO compliant lib. (diff) |
Add (conditional) hidden dependency for iconv and gdbm.
PR: ports/34543
Reported by: Ronald Kuehn <rk@ronald.org>
Diffstat (limited to 'security')
-rw-r--r-- | security/gnupg/Makefile | 7 | ||||
-rw-r--r-- | security/gnupg1/Makefile | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/security/gnupg/Makefile b/security/gnupg/Makefile index ba55740363c0..a8565dfade58 100644 --- a/security/gnupg/Makefile +++ b/security/gnupg/Makefile @@ -24,6 +24,13 @@ MLINKS= gpg.1 gpgm.1 .include <bsd.port.pre.mk> +.if exists(${PREFIX}/lib/libiconv.so) +LIB_DEPENDS+= libiconv.2:${PORTSDIR}/converter/iconv +.endif +.if exists(${PREFIX}/lib/libgdbm.so) +LIB_DEPENDS+= libgdbm.2:${PORTSDIR}/databases/gdbm +.endif + .if ${OSVERSION} < 300000 USE_GMAKE= YES .endif diff --git a/security/gnupg1/Makefile b/security/gnupg1/Makefile index ba55740363c0..a8565dfade58 100644 --- a/security/gnupg1/Makefile +++ b/security/gnupg1/Makefile @@ -24,6 +24,13 @@ MLINKS= gpg.1 gpgm.1 .include <bsd.port.pre.mk> +.if exists(${PREFIX}/lib/libiconv.so) +LIB_DEPENDS+= libiconv.2:${PORTSDIR}/converter/iconv +.endif +.if exists(${PREFIX}/lib/libgdbm.so) +LIB_DEPENDS+= libgdbm.2:${PORTSDIR}/databases/gdbm +.endif + .if ${OSVERSION} < 300000 USE_GMAKE= YES .endif |