diff options
author | rene <rene@FreeBSD.org> | 2016-09-18 18:35:19 +0800 |
---|---|---|
committer | rene <rene@FreeBSD.org> | 2016-09-18 18:35:19 +0800 |
commit | eaa02036948354c686504823a6fb301f5342f060 (patch) | |
tree | fb8cc8abc6db61fdc20c9984107138b8f2ee5af5 /sysutils | |
parent | 88a1775a9570871f14a587ea2874dfb219848532 (diff) | |
download | freebsd-ports-gnome-eaa02036948354c686504823a6fb301f5342f060.tar.gz freebsd-ports-gnome-eaa02036948354c686504823a6fb301f5342f060.tar.zst freebsd-ports-gnome-eaa02036948354c686504823a6fb301f5342f060.zip |
sysutils/password-store: fix man page installation when EXAMPLES is OFF
PR: 212778
Submitted by: brandon.wandersee@gmail.com
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/password-store/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysutils/password-store/Makefile b/sysutils/password-store/Makefile index 4077d23f3e29..cc2778c1a805 100644 --- a/sysutils/password-store/Makefile +++ b/sysutils/password-store/Makefile @@ -2,6 +2,7 @@ PORTNAME= password-store PORTVERSION= 1.6.5 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://git.zx2c4.com/password-store/snapshot/ @@ -20,7 +21,7 @@ RUN_DEPENDS= bash:shells/bash \ NO_ARCH= yes NO_BUILD= yes -OPTIONS_DEFINE= GIT XCLIP CONTRIB DOCS EXAMPLES +OPTIONS_DEFINE= GIT XCLIP CONTRIB EXAMPLES OPTIONS_DEFAULT= CONTRIB OPTIONS_SUB= yes @@ -41,6 +42,7 @@ post-patch: do-install: ${INSTALL_SCRIPT} ${WRKSRC}/src/password-store.sh ${STAGEDIR}${PREFIX}/libexec/pass ${LN} -s ${PREFIX}/libexec/pass ${STAGEDIR}${PREFIX}/bin/pass + ${INSTALL_MAN} ${WRKSRC}/man/pass.1 ${STAGEDIR}${MANPREFIX}/man/man1/pass.1 do-install-CONTRIB-on: @${MKDIR} ${STAGEDIR}${DATADIR} @@ -56,6 +58,5 @@ do-install-CONTRIB-on: do-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_SCRIPT} ${WRKSRC}/man/example-filter.sh ${STAGEDIR}${EXAMPLESDIR} - ${INSTALL_MAN} ${WRKSRC}/man/pass.1 ${STAGEDIR}${MANPREFIX}/man/man1/pass.1 .include <bsd.port.mk> |