diff options
author | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2024-01-21 22:43:18 +0000 |
---|---|---|
committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2024-01-21 22:51:35 +0000 |
commit | 594e0d792775b04a8aafa069de207f7495e98adb (patch) | |
tree | dfff1559bfb65059accc11eb72fec0e67e1c12f6 | |
parent | aed8d52a32d8cc086a0d643e2a8555389fd0f6f1 (diff) |
graphics/peps: Sanitize MANPREFIX
Approved by: portmgr (blanket)
-rw-r--r-- | graphics/peps/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/peps/Makefile b/graphics/peps/Makefile index 187cd99d9ae0..dc53c320ef08 100644 --- a/graphics/peps/Makefile +++ b/graphics/peps/Makefile @@ -1,6 +1,6 @@ PORTNAME= peps PORTVERSION= 2.0 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= graphics MASTER_SITES= http://peps.redprince.net/peps/ \ ftp://ftp.peps.redprince.net/unix/peps/ @@ -18,14 +18,14 @@ MAKE_ENV= GSPATH="${LOCALBASE}/bin/gs" GZPATH="/usr/bin/gzip" \ ALL_TARGET= peps PLIST_FILES= bin/peps \ etc/peps.mime \ - man/man1/peps.1.gz + share/man/man1/peps.1.gz PORTDOCS= peps.pdf OPTIONS_DEFINE= DOCS do-install: ${INSTALL_PROGRAM} ${WRKSRC}/peps ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/peps.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/peps.1 ${STAGEDIR}${PREFIX}/share/man/man1 ${INSTALL_DATA} ${WRKSRC}/peps.mime ${STAGEDIR}${PREFIX}/etc post-install-DOCS-on: |