diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2002-02-04 07:00:56 +0800 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2002-02-04 07:00:56 +0800 |
commit | 8a671ca2ce4a936cd467f9484d06f66abcdb6ef7 (patch) | |
tree | 8e1d37c9ce852093a31e62a83f308ac2b6d2d8a8 /security | |
parent | d5196be1990df5ba641a74ae4edc73549e053820 (diff) | |
download | freebsd-ports-gnome-8a671ca2ce4a936cd467f9484d06f66abcdb6ef7.tar.gz freebsd-ports-gnome-8a671ca2ce4a936cd467f9484d06f66abcdb6ef7.tar.zst freebsd-ports-gnome-8a671ca2ce4a936cd467f9484d06f66abcdb6ef7.zip |
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 |