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 /security/gnome-gpg | |
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 'security/gnome-gpg')
-rw-r--r-- | security/gnome-gpg/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/security/gnome-gpg/Makefile b/security/gnome-gpg/Makefile index 94dbe31ef2ca..ab74c93ebfbc 100644 --- a/security/gnome-gpg/Makefile +++ b/security/gnome-gpg/Makefile @@ -7,7 +7,7 @@ PORTNAME= gnome-gpg PORTVERSION= 0.5.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} @@ -15,9 +15,9 @@ MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} MAINTAINER= gnome@FreeBSD.org COMMENT= Simple commandline wrapper around gpg for gnome-keyring -BUILD_DEPENDS= gpg:${PORTSDIR}/security/gnupg1 +BUILD_DEPENDS= gpgv:${PORTSDIR}/security/gnupg1 LIB_DEPENDS= gnome-keyring.0:${PORTSDIR}/security/gnome-keyring -RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg1 +RUN_DEPENDS= gpgv:${PORTSDIR}/security/gnupg1 USE_BZIP2= yes GNU_CONFIGURE= yes |