diff options
author | Jun Kuriyama <kuriyama@FreeBSD.org> | 2006-12-22 02:51:16 +0000 |
---|---|---|
committer | Jun Kuriyama <kuriyama@FreeBSD.org> | 2006-12-22 02:51:16 +0000 |
commit | 265500d7d8b65ca413aaee2904fbc7a95b74bc17 (patch) | |
tree | d52f4de392099aa5dde3456739362f46e39a898d /security/seahorse | |
parent | cdcb91922078c3340e4a51d1ef396c987d8d3e9a (diff) |
- 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
Notes
Notes:
svn path=/head/; revision=180452
Diffstat (limited to 'security/seahorse')
-rw-r--r-- | security/seahorse/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/seahorse/Makefile b/security/seahorse/Makefile index eab0499a2cbf..bf1c9556bb8e 100644 --- a/security/seahorse/Makefile +++ b/security/seahorse/Makefile @@ -8,7 +8,7 @@ PORTNAME= seahorse PORTVERSION= 0.8.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR=sources/${PORTNAME}/0.8 @@ -17,7 +17,7 @@ DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= A front end for GnuPG -BUILD_DEPENDS= gpg:${PORTSDIR}/security/gnupg1 +BUILD_DEPENDS= gpgv:${PORTSDIR}/security/gnupg1 RUN_DEPENDS= ${BUILD_DEPENDS} LIB_DEPENDS= gpgme.17:${PORTSDIR}/security/gpgme |