summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJun Kuriyama <kuriyama@FreeBSD.org>2002-07-21 01:51:41 +0000
committerJun Kuriyama <kuriyama@FreeBSD.org>2002-07-21 01:51:41 +0000
commit0b11a525c573874467c29233f4503f8b99b6ed3e (patch)
tree07201c3b8bce0ecb596e6d88ac72a276b4c03541
parent* We are FreeBSD, duh. (diff)
(1) Remove implicit dependency on devel/gdbm.
(2) Allow to explicit dependency on converters/libiconv with WITH_LIBICONV knob. Submitted by: NIIMI Satoshi <sa2c@sa2c.net> (1), Dmitry Morozovsky <marck@rinet.ru> (2) PR: ports/40653 (1), ports/40814 (2)
Notes
Notes: svn path=/head/; revision=63294
-rw-r--r--security/gnupg/Makefile5
-rw-r--r--security/gnupg1/Makefile5
2 files changed, 2 insertions, 8 deletions
diff --git a/security/gnupg/Makefile b/security/gnupg/Makefile
index 5a51f94047f5..3f147c224ff0 100644
--- a/security/gnupg/Makefile
+++ b/security/gnupg/Makefile
@@ -28,10 +28,7 @@ MAN1= gpg.1 gpgv.1
.include <bsd.port.pre.mk>
-.if exists(${PREFIX}/lib/libgdbm.so)
-LIB_DEPENDS+= gdbm.2:${PORTSDIR}/databases/gdbm
-.endif
-.if exists(${PREFIX}/lib/libiconv.so)
+.if defined(WITH_LIBICONV) || exists(${PREFIX}/lib/libiconv.so)
LIB_DEPENDS+= iconv.3:${PORTSDIR}/converters/libiconv
.endif
diff --git a/security/gnupg1/Makefile b/security/gnupg1/Makefile
index 5a51f94047f5..3f147c224ff0 100644
--- a/security/gnupg1/Makefile
+++ b/security/gnupg1/Makefile
@@ -28,10 +28,7 @@ MAN1= gpg.1 gpgv.1
.include <bsd.port.pre.mk>
-.if exists(${PREFIX}/lib/libgdbm.so)
-LIB_DEPENDS+= gdbm.2:${PORTSDIR}/databases/gdbm
-.endif
-.if exists(${PREFIX}/lib/libiconv.so)
+.if defined(WITH_LIBICONV) || exists(${PREFIX}/lib/libiconv.so)
LIB_DEPENDS+= iconv.3:${PORTSDIR}/converters/libiconv
.endif