sysutils/password-store: use new website in WWW line [1]

While here, replace hardcoded "password-store" by ${PORTNAME} in Makefile

PR:		236028
Submitted by:	Nuno Teixeira <ed.arrakis@gmail.com>
This commit is contained in:
Rene Ladan 2019-02-25 18:24:44 +00:00
parent ba9b45d60a
commit 725bc57c34
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=493886
2 changed files with 10 additions and 10 deletions

View File

@ -4,7 +4,7 @@ PORTNAME= password-store
PORTVERSION= 1.7.3
PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= https://git.zx2c4.com/password-store/snapshot/
MASTER_SITES= https://git.zx2c4.com/${PORTNAME}/snapshot/
MAINTAINER= rene@FreeBSD.org
COMMENT= Stores, retrieves, generates, and synchronizes passwords securely
@ -43,15 +43,15 @@ SUB_FILES= pass
post-patch:
@${REINPLACE_CMD} -Ee 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/src/platform/freebsd.sh
@${REINPLACE_CMD} -Ee 's|^SYSTEM_EXTENSION_DIR=""|SYSTEM_EXTENSION_DIR="${PREFIX}/libexec/password-store/extensions"|g' \
${WRKSRC}/src/password-store.sh
@${REINPLACE_CMD} -Ee 's|^SYSTEM_EXTENSION_DIR=""|SYSTEM_EXTENSION_DIR="${PREFIX}/libexec/${PORTNAME}/extensions"|g' \
${WRKSRC}/src/${PORTNAME}.sh
do-install:
${INSTALL_SCRIPT} ${WRKDIR}/pass ${STAGEDIR}${PREFIX}/bin/
${MKDIR} ${STAGEDIR}${PREFIX}/libexec/password-store/extensions
${MKDIR} ${STAGEDIR}${PREFIX}/libexec/password-store/platform
${INSTALL_SCRIPT} ${WRKSRC}/src/password-store.sh ${STAGEDIR}${PREFIX}/libexec/password-store/pass
${INSTALL_SCRIPT} ${WRKSRC}/src/platform/freebsd.sh ${STAGEDIR}${PREFIX}/libexec/password-store/platform/
${MKDIR} ${STAGEDIR}${PREFIX}/libexec/${PORTNAME}/extensions
${MKDIR} ${STAGEDIR}${PREFIX}/libexec/${PORTNAME}/platform
${INSTALL_SCRIPT} ${WRKSRC}/src/${PORTNAME}.sh ${STAGEDIR}${PREFIX}/libexec/${PORTNAME}/pass
${INSTALL_SCRIPT} ${WRKSRC}/src/platform/freebsd.sh ${STAGEDIR}${PREFIX}/libexec/${PORTNAME}/platform/
${INSTALL_MAN} ${WRKSRC}/man/pass.1 ${STAGEDIR}${MANPREFIX}/man/man1/pass.1
do-install-CONTRIB-on:
@ -62,9 +62,9 @@ do-install-CONTRIB-on:
@${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions
${INSTALL_DATA} ${STAGEDIR}${DATADIR}/pass.zsh-completion ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_pass
@${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d
${INSTALL_DATA} ${STAGEDIR}${DATADIR}/pass.bash-completion ${STAGEDIR}${PREFIX}/etc/bash_completion.d/password-store
${INSTALL_DATA} ${STAGEDIR}${DATADIR}/pass.bash-completion ${STAGEDIR}${PREFIX}/etc/bash_completion.d/${PORTNAME}
@${MKDIR} ${STAGEDIR}${PREFIX}/share/fish/completions
${INSTALL_DATA} ${STAGEDIR}${DATADIR}/pass.fish-completion ${STAGEDIR}${PREFIX}/share/fish/completions/password-store.fish
${INSTALL_DATA} ${STAGEDIR}${DATADIR}/pass.fish-completion ${STAGEDIR}${PREFIX}/share/fish/completions/${PORTNAME}.fish
do-install-EXAMPLES-on:
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}

View File

@ -15,4 +15,4 @@ You can edit the password store using ordinary Unix shell commands alongside the
pass command. There are no funky file formats or new paradigms to learn. There
is bash completion so that you can simply hit tab to fill in names.
WWW: http://zx2c4.com/projects/password-store/
WWW: https://www.password-store.org/