summaryrefslogtreecommitdiff
path: root/security/gnupg
diff options
context:
space:
mode:
authorJun Kuriyama <kuriyama@FreeBSD.org>2002-02-03 23:00:56 +0000
committerJun Kuriyama <kuriyama@FreeBSD.org>2002-02-03 23:00:56 +0000
commit6707cd923c67cdf5b7a213f3b805a2732e6879bc (patch)
treecadc5089e81e5ed6d02d2766b20f6aa9f14b129d /security/gnupg
parentClarify 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>
Notes
Notes: svn path=/head/; revision=54178
Diffstat (limited to 'security/gnupg')
-rw-r--r--security/gnupg/Makefile7
1 files changed, 7 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