blob: f68a564807a8ab7d52951efbb900f13b9dbe3999 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# $NetBSD: Makefile,v 1.14 2009/05/21 21:43:18 zafer Exp $
#
DISTNAME= pinepgp-0.18.0
PKGREVISION= 2
CATEGORIES= security mail
MASTER_SITES= http://hany.sk/~hany/_data/pinepgp/ \
http://terminus.sk/~hany/_data/pinepgp/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://hany.sk/~hany/software/pinepgp/stable.html
COMMENT= PGP display and sending filters for pine
PKG_DESTDIR_SUPPORT= user-destdir
DEPENDS+= bash>=2:../../shells/bash2
USE_PKGLOCALEDIR= yes
GNU_CONFIGURE= yes
USE_TOOLS+= cat
CONFIGURE_ENV+= CAT=${TOOLS_CAT:Q}
PINEPGP_USEGPG?= yes
PINEPGP_USEPGP5?= yes
.if !empty(PINEPGP_USEGPG:M[yY][eE][sS])
DEPENDS+= gnupg>=1.2.3:../../security/gnupg
.endif
.if !empty(PINEPGP_USEPGP5:M[yY][eE][sS])
DEPENDS+= pgp5>=5.0:../../security/pgp5
.endif
.include "../../mk/bsd.pkg.mk"
|