diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2002-07-21 01:51:41 +0000 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2002-07-21 01:51:41 +0000 |
commit | bdadac32a70dbc5991b2b8bde8ef5ae20b31d550 (patch) | |
tree | cc8f5e717eda6036ed236c263033c52d0b87df6a /security/gnupg1 | |
parent | 6bd67949e6ad8057a3ac66b0945af60d5946be90 (diff) | |
download | FreeBSD-ports-bdadac32a70dbc5991b2b8bde8ef5ae20b31d550.zip FreeBSD-ports-bdadac32a70dbc5991b2b8bde8ef5ae20b31d550.tar.gz |
(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)
Diffstat (limited to 'security/gnupg1')
-rw-r--r-- | security/gnupg1/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/security/gnupg1/Makefile b/security/gnupg1/Makefile index 5a51f94..3f147c2 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 |