diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2006-12-22 10:51:16 +0800 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2006-12-22 10:51:16 +0800 |
commit | 8ca7b0188594153875bb2a9ecc42640a164f458d (patch) | |
tree | fbf580ad96d1fe2f23edbd1fec5342b314fe4867 /net | |
parent | bcb27a79a49564bc4f677adb8c8e94ec65b2d52d (diff) | |
download | freebsd-ports-gnome-8ca7b0188594153875bb2a9ecc42640a164f458d.tar.gz freebsd-ports-gnome-8ca7b0188594153875bb2a9ecc42640a164f458d.tar.zst freebsd-ports-gnome-8ca7b0188594153875bb2a9ecc42640a164f458d.zip |
- Since security/gnupg (2.x) installs symlink $PREFIX/bin/gpg,
depending on $PREFIX/bin/gpg for security/gnupg1 (1.4.x) is not
correct. To work around this, change dependency line from bin/gpg
to bin/gpgv which exists in security/gnupg1 port only.
Spotted by: ume
Diffstat (limited to 'net')
-rw-r--r-- | net/nocatauth-gateway/Makefile | 4 | ||||
-rw-r--r-- | net/nocatauth-server/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/net/nocatauth-gateway/Makefile b/net/nocatauth-gateway/Makefile index dbf0f0734c41..7c3760de85a2 100644 --- a/net/nocatauth-gateway/Makefile +++ b/net/nocatauth-gateway/Makefile @@ -7,7 +7,7 @@ PORTNAME= nocatauth-gateway PORTVERSION= 0.82 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MASTER_SITES= http://nocat.net/download/NoCatAuth/ DISTNAME= NoCatAuth-${PORTVERSION} @@ -16,7 +16,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Open 802.11 Authentication Gateway RUN_DEPENDS= \ - ${LOCALBASE}/bin/gpg:${PORTSDIR}/security/gnupg1 + ${LOCALBASE}/bin/gpgv:${PORTSDIR}/security/gnupg1 CONFLICTS= nocatauth-server-* diff --git a/net/nocatauth-server/Makefile b/net/nocatauth-server/Makefile index 3571dfbac4f6..9f0876c03071 100644 --- a/net/nocatauth-server/Makefile +++ b/net/nocatauth-server/Makefile @@ -7,7 +7,7 @@ PORTNAME= nocatauth-server PORTVERSION= 0.82 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MASTER_SITES= http://nocat.net/download/NoCatAuth/ DISTNAME= NoCatAuth-${PORTVERSION} @@ -16,7 +16,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Open 802.11 Authentication Server RUN_DEPENDS= \ - ${LOCALBASE}/bin/gpg:${PORTSDIR}/security/gnupg1 + ${LOCALBASE}/bin/gpgv:${PORTSDIR}/security/gnupg1 CONFLICTS= nocatauth-gateway-* |