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 /mail/imp | |
parent | Add fldigi 1.11, a digital decoder for psk, cw, psk31, olivia. (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 'mail/imp')
-rw-r--r-- | mail/imp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/imp/Makefile b/mail/imp/Makefile index acd00bbdfc18..7c04ceb70bc0 100644 --- a/mail/imp/Makefile +++ b/mail/imp/Makefile @@ -7,7 +7,7 @@ PORTNAME= imp PORTVERSION= 4.1.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail www MASTER_SITES= ftp://ftp.horde.org/pub/imp/ \ ftp://ftp.planetmirror.com/pub/horde/imp/ \ @@ -90,7 +90,7 @@ USE_PHP+= openssl .endif .if !defined(NOCRYPT) -RUN_DEPENDS+= ${LOCALBASE}/bin/gpg:${PORTSDIR}/security/gnupg1 +RUN_DEPENDS+= ${LOCALBASE}/bin/gpgv:${PORTSDIR}/security/gnupg1 .endif .if !defined(WITHOUT_ASPELL) |