diff options
author | leot <leot@pkgsrc.org> | 2018-09-23 12:39:19 +0000 |
---|---|---|
committer | leot <leot@pkgsrc.org> | 2018-09-23 12:39:19 +0000 |
commit | f88d68090d4dab76e8eb325f6be8020eff5ccfaf (patch) | |
tree | a3cc58c69a3f620963121d34079d3bc19e6d9b50 /security | |
parent | 03fffdad0356f601a9a82cfb6b7df129d7086490 (diff) | |
download | pkgsrc-f88d68090d4dab76e8eb325f6be8020eff5ccfaf.tar.gz |
password-store: Adjust BASE64 definition as part of fixsh SUBST class
Instead of using a generic `base64' initialize the BASE64 variable in order to
actually use converters/base64 (this was problematic when for example NetBSD
base64(1) was used).
Bump PKGREVISION
Diffstat (limited to 'security')
-rw-r--r-- | security/password-store/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/security/password-store/Makefile b/security/password-store/Makefile index 165dc8c8551..26d06833bf8 100644 --- a/security/password-store/Makefile +++ b/security/password-store/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.10 2018/09/19 09:45:18 leot Exp $ +# $NetBSD: Makefile,v 1.11 2018/09/23 12:39:19 leot Exp $ DISTNAME= password-store-1.7.3 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= security MASTER_SITES= http://git.zx2c4.com/password-store/snapshot/ EXTRACT_SUFX= .tar.xz @@ -32,6 +32,7 @@ SUBST_MESSAGE.fixsh= Fixing shell script SUBST_FILES.fixsh= src/password-store.sh SUBST_SED.fixsh+= -e 's,GETOPT="getopt",GETOPT="${PREFIX}/bin/getopt",' SUBST_SED.fixsh+= -e "s,SHRED=\"shred -f -z\",SHRED=\"${RM} -f -P\"," +SUBST_SED.fixsh+= -e 's,BASE64="base64",BASE64="${PREFIX}/bin/base64",' TEST_TARGET= test |