diff options
author | jperkin <jperkin@pkgsrc.org> | 2017-04-25 12:16:47 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2017-04-25 12:16:47 +0000 |
commit | a504ea2a6ee1d7984051202f2aafbd120d758e84 (patch) | |
tree | d4a9ee28b26f487773ad8ff16c74625d60a852ed /security | |
parent | a09d3b8cb1a943c34b538f8f5ec29896b432d70e (diff) | |
download | pkgsrc-a504ea2a6ee1d7984051202f2aafbd120d758e84.tar.gz |
Put back dependency on bash again, the script uses the "local" keyword.
Bump PKGREVISION.
Diffstat (limited to 'security')
-rw-r--r-- | security/keychain/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/security/keychain/Makefile b/security/keychain/Makefile index bffed5a6364..db938cfc70d 100644 --- a/security/keychain/Makefile +++ b/security/keychain/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.35 2016/09/20 12:36:09 mef Exp $ +# $NetBSD: Makefile,v 1.36 2017/04/25 12:16:47 jperkin Exp $ DISTNAME= keychain-2.8.3 +PKGREVISION= 1 CATEGORIES= security MASTER_SITES= http://www.funtoo.org/archive/keychain/ EXTRACT_SUFX= .tar.bz2 @@ -14,7 +15,11 @@ LICENSE= gnu-gpl-v2 DEPENDS+= openssh-[0-9]*:../../security/openssh .endif -NO_BUILD= yes +USE_TOOLS+= bash:run +NO_BUILD= yes + +# Uses the "local" keyword which is not supported by ksh. +REPLACE_BASH+= keychain INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 share/doc/${PKGBASE} |