diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2024-01-09 11:11:36 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2024-01-09 11:11:45 +0000 |
commit | 220062a3a1c35cc4deb0b363bdc27d09b492bf2e (patch) | |
tree | 94886182af433c113ad6192a5b60b791dabc6578 | |
parent | 20498f8c5b9fa4f5a64966de0df96dd16bce3dbc (diff) | |
download | ports-220062a3a1c35cc4deb0b363bdc27d09b492bf2e.tar.gz ports-220062a3a1c35cc4deb0b363bdc27d09b492bf2e.zip |
MANPREFIX: eleminate its usage and move man to share/man
68 files changed, 189 insertions, 171 deletions
diff --git a/misc/rpl/Makefile b/misc/rpl/Makefile index 5e8ebc7dae3d..a5ba887d822c 100644 --- a/misc/rpl/Makefile +++ b/misc/rpl/Makefile @@ -16,6 +16,6 @@ PLIST_FILES= bin/rpl share/man/man1/rpl.1.gz do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/rpl ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/man/rpl.1 ${STAGEDIR}${MANPREFIX}/share/man/man1 + ${INSTALL_MAN} ${WRKSRC}/man/rpl.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include <bsd.port.mk> diff --git a/print/catdvi/Makefile b/print/catdvi/Makefile index 42dd26c03a71..a690e01ee803 100644 --- a/print/catdvi/Makefile +++ b/print/catdvi/Makefile @@ -24,6 +24,6 @@ LDFLAGS+= -L${LOCALBASE}/lib do-install: ${INSTALL_PROGRAM} ${WRKSRC}/catdvi ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/catdvi.1 ${STAGEDIR}${MANPREFIX}/share/man/man1 + ${INSTALL_MAN} ${WRKSRC}/catdvi.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include <bsd.port.mk> diff --git a/security/fakebo/Makefile b/security/fakebo/Makefile index 4a2dd690e1fd..932b1e46adc4 100644 --- a/security/fakebo/Makefile +++ b/security/fakebo/Makefile @@ -1,6 +1,6 @@ PORTNAME= fakebo PORTVERSION= 0.4.2.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION:R} @@ -23,7 +23,7 @@ post-extract: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/fakebo ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/fakebo.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/fakebo.1 ${STAGEDIR}${PREFIX}/share/man/man1 ${INSTALL_DATA} ${WRKSRC}/fakebo.conf.dist ${STAGEDIR}${PREFIX}/etc/fakebo.conf.sample do-install-DOCS-on: diff --git a/security/fakebo/pkg-plist b/security/fakebo/pkg-plist index 2d740ad1d6c4..78ce238bfe1a 100644 --- a/security/fakebo/pkg-plist +++ b/security/fakebo/pkg-plist @@ -1,5 +1,5 @@ bin/fakebo @sample etc/fakebo.conf.sample -man/man1/fakebo.1.gz +share/man/man1/fakebo.1.gz %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/custom.replies diff --git a/security/libsectok/Makefile b/security/libsectok/Makefile index 23114392f365..9079991c5a2c 100644 --- a/security/libsectok/Makefile +++ b/security/libsectok/Makefile @@ -1,6 +1,6 @@ PORTNAME= libsectok PORTVERSION= 20030619 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security MASTER_SITES= http://www.citi.umich.edu/projects/smartcard/ @@ -11,7 +11,7 @@ WWW= http://www.citi.umich.edu/projects/smartcard/sectok.html USE_LDCONFIG= yes PLIST_FILES= include/sectok.h lib/libsectok.a lib/libsectok.so \ - lib/libsectok.so.3 man/man3/sectok.3.gz + lib/libsectok.so.3 share/man/man3/sectok.3.gz post-patch: @${REINPLACE_CMD} -e \ @@ -33,6 +33,6 @@ do-install: ${STAGEDIR}${PREFIX}/lib) ${LN} -s libsectok.so.3 ${STAGEDIR}${PREFIX}/lib/libsectok.so (cd ${WRKSRC} && ${INSTALL_MAN} sectok.3 \ - ${STAGEDIR}${MANPREFIX}/man/man3) + ${STAGEDIR}${PREFIX}/share/man/man3) .include <bsd.port.mk> diff --git a/security/sectok/Makefile b/security/sectok/Makefile index 8a7a680d4639..458c2839342c 100644 --- a/security/sectok/Makefile +++ b/security/sectok/Makefile @@ -1,6 +1,6 @@ PORTNAME= sectok PORTVERSION= 20030825 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security MASTER_SITES= http://www.citi.umich.edu/projects/smartcard/ EXTRACT_SUFX= .tgz @@ -18,7 +18,7 @@ MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib -PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz +PLIST_FILES= bin/${PORTNAME} share/man/man1/${PORTNAME}.1.gz post-patch: @${REINPLACE_CMD} \ @@ -31,6 +31,6 @@ do-install: (cd ${WRKSRC} && ${INSTALL_PROGRAM} ${PORTNAME} \ ${STAGEDIR}${PREFIX}/bin) (cd ${WRKSRC} && ${INSTALL_MAN} ${PORTNAME}.1 \ - ${STAGEDIR}${MANPREFIX}/man/man1) + ${STAGEDIR}${PREFIX}/share/man/man1) .include <bsd.port.mk> diff --git a/security/secure_delete/Makefile b/security/secure_delete/Makefile index eb4ef1259ced..d5e56ed2a309 100644 --- a/security/secure_delete/Makefile +++ b/security/secure_delete/Makefile @@ -1,6 +1,6 @@ PORTNAME= secure_delete PORTVERSION= 3.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= PACKETSTORM/groups/thc \ http://freeworld.thc.org/releases/ @@ -19,8 +19,9 @@ SUB_FILES= pkg-message PORTDOCS= CHANGES FILES README secure_delete.doc usenix6-gutmann.doc PLIST_FILES= bin/sdel bin/sfill bin/smem bin/srm bin/sswap \ - bin/the_cleaner.sh man/man1/sfill.1.gz man/man1/smem.1.gz \ - man/man1/srm.1.gz man/man1/sswap.1.gz + bin/the_cleaner.sh share/man/man1/sfill.1.gz \ + share/man/man1/smem.1.gz \ + share/man/man1/srm.1.gz share/man/man1/sswap.1.gz OPTIONS_DEFINE= DOCS @@ -33,7 +34,7 @@ post-patch: do-install: .for i in srm sfill sswap smem ${INSTALL_PROGRAM} ${WRKSRC}/${i} ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/${i}.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/${i}.1 ${STAGEDIR}${PREFIX}/share/man/man1 .endfor ${INSTALL_SCRIPT} ${WRKSRC}/the_cleaner.sh ${STAGEDIR}${PREFIX}/bin ${LN} -sf srm ${STAGEDIR}${PREFIX}/bin/sdel diff --git a/security/snort-rep/Makefile b/security/snort-rep/Makefile index 3d548eaede24..2c532978180a 100644 --- a/security/snort-rep/Makefile +++ b/security/snort-rep/Makefile @@ -18,7 +18,7 @@ do-build: do-install: ${INSTALL_SCRIPT} ${WRKSRC}/snort-rep ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/snort-rep.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/snort-rep.1 ${STAGEDIR}${PREFIX}/share/man/man1 @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_SCRIPT} ${WRKSRC}/snort-rep-mail ${STAGEDIR}${EXAMPLESDIR} diff --git a/security/snort-rep/pkg-plist b/security/snort-rep/pkg-plist index afbb9e503d30..f4727fac31c2 100644 --- a/security/snort-rep/pkg-plist +++ b/security/snort-rep/pkg-plist @@ -1,3 +1,3 @@ bin/snort-rep -man/man1/snort-rep.1.gz +share/man/man1/snort-rep.1.gz %%PORTEXAMPLES%%%%EXAMPLESDIR%%/snort-rep-mail diff --git a/security/ssh-multiadd/Makefile b/security/ssh-multiadd/Makefile index 4768385de2e5..ea291f6aa70e 100644 --- a/security/ssh-multiadd/Makefile +++ b/security/ssh-multiadd/Makefile @@ -1,5 +1,6 @@ PORTNAME= ssh-multiadd PORTVERSION= 1.3.2 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= SUNSITE/system/network/telnet @@ -9,7 +10,7 @@ COMMENT= Tool to add multiple ssh keys to the authentication agent USES= python:run NO_BUILD= yes -PLIST_FILES= bin/ssh-multiadd man/man1/ssh-multiadd.1.gz +PLIST_FILES= bin/ssh-multiadd share/man/man1/ssh-multiadd.1.gz post-patch: @${REINPLACE_CMD} -e \ @@ -18,6 +19,6 @@ post-patch: do-install: ${INSTALL_SCRIPT} ${WRKSRC}/ssh-multiadd ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/ssh-multiadd.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/ssh-multiadd.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include <bsd.port.mk> diff --git a/security/vpnc/Makefile b/security/vpnc/Makefile index 225398d901a2..d90a68f34609 100644 --- a/security/vpnc/Makefile +++ b/security/vpnc/Makefile @@ -1,6 +1,6 @@ PORTNAME= vpnc PORTVERSION= 0.5.3 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= security net-vpn MASTER_SITES= http://www.unix-ag.uni-kl.de/~massar/vpnc/ \ LOCAL/ehaupt @@ -61,7 +61,7 @@ do-install: ${STAGEDIR}${PREFIX}/sbin/vpnc-disconnect ${INSTALL_DATA} ${WRKSRC}/vpnc.conf \ ${STAGEDIR}${PREFIX}/etc/vpnc.conf.sample - ${INSTALL_MAN} ${WRKSRC}/vpnc.8 ${STAGEDIR}${MANPREFIX}/man/man8 + ${INSTALL_MAN} ${WRKSRC}/vpnc.8 ${STAGEDIR}${PREFIX}/share/man/man8 do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} @@ -69,6 +69,6 @@ do-install-DOCS-on: do-install-DECRYPT-on: ${INSTALL_PROGRAM} ${WRKSRC}/cisco-decrypt ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/cisco-decrypt.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/cisco-decrypt.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include <bsd.port.mk> diff --git a/security/vpnc/pkg-plist b/security/vpnc/pkg-plist index 573ca51a36b1..dc5388fba30c 100644 --- a/security/vpnc/pkg-plist +++ b/security/vpnc/pkg-plist @@ -1,6 +1,6 @@ sbin/vpnc sbin/vpnc-disconnect -man/man8/vpnc.8.gz +share/man/man8/vpnc.8.gz %%DECRYPT%%bin/cisco-decrypt -%%DECRYPT%%man/man1/cisco-decrypt.1.gz +%%DECRYPT%%share/man/man1/cisco-decrypt.1.gz @sample(,,700) etc/vpnc.conf.sample diff --git a/security/wipe/Makefile b/security/wipe/Makefile index e55188625b40..533b05a8ad96 100644 --- a/security/wipe/Makefile +++ b/security/wipe/Makefile @@ -1,6 +1,6 @@ PORTNAME= wipe PORTVERSION= 2.3.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= SF @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= tar:bzip2 GNU_CONFIGURE= yes -PLIST_FILES= bin/wipe man/man1/wipe.1.gz +PLIST_FILES= bin/wipe share/man/man1/wipe.1.gz PORTDOCS= CHANGES README TESTING TODO OPTIONS_DEFINE= DOCS @@ -25,7 +25,7 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/share/man/man1 do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} diff --git a/sysutils/apcpwr/Makefile b/sysutils/apcpwr/Makefile index 3a3d3640ca18..25f3c5a5e93e 100644 --- a/sysutils/apcpwr/Makefile +++ b/sysutils/apcpwr/Makefile @@ -1,6 +1,6 @@ PORTNAME= apcpwr PORTVERSION= 1.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils net MASTER_SITES= LOCAL/jwd @@ -14,11 +14,11 @@ SHEBANG_FILES= apcpwr.pl SUB_FILES= pkg-message -PLIST_FILES= bin/apcpwr etc/apcpwr.conf.dist man/man8/apcpwr.8.gz +PLIST_FILES= bin/apcpwr etc/apcpwr.conf.dist share/man/man8/apcpwr.8.gz do-install: ${INSTALL} -m 4555 ${WRKSRC}/apcpwr ${STAGEDIR}${PREFIX}/bin ${INSTALL} -m 600 ${WRKSRC}/apcpwr.conf.dist ${STAGEDIR}${PREFIX}/etc - ${INSTALL_MAN} ${WRKSRC}/apcpwr.8 ${STAGEDIR}${MANPREFIX}/man/man8 + ${INSTALL_MAN} ${WRKSRC}/apcpwr.8 ${STAGEDIR}${PREFIX}/share/man/man8 .include <bsd.port.mk> diff --git a/sysutils/asfsm/Makefile b/sysutils/asfsm/Makefile index cc8632f0a755..c8961a575940 100644 --- a/sysutils/asfsm/Makefile +++ b/sysutils/asfsm/Makefile @@ -15,10 +15,10 @@ GNU_CONFIGURE= yes SUB_FILES= pkg-message -PLIST_FILES= bin/asfsm man/man1/asfsm.1.gz +PLIST_FILES= bin/asfsm share/man/man1/asfsm.1.gz post-build: - @${LN} -sf asfsm.man ${WRKSRC}/asfsm.1 + @${LN} -sf asfsm.man share/${WRKSRC}/asfsm.1 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/asfsm ${STAGEDIR}${PREFIX}/bin diff --git a/sysutils/asmem/Makefile b/sysutils/asmem/Makefile index 618c35027745..0adfc9874fd9 100644 --- a/sysutils/asmem/Makefile +++ b/sysutils/asmem/Makefile @@ -1,6 +1,6 @@ PORTNAME= asmem PORTVERSION= 1.12 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils afterstep MASTER_SITES= https://tigr.net/afterstep/download/asmem/ @@ -24,6 +24,6 @@ post-build: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/asmem ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/asmem.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/asmem.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include <bsd.port.mk> diff --git a/sysutils/asmem/pkg-plist b/sysutils/asmem/pkg-plist index 9ad89413db8c..10f7b9e63b96 100644 --- a/sysutils/asmem/pkg-plist +++ b/sysutils/asmem/pkg-plist @@ -1,6 +1,2 @@ -@group kmem -@mode 2555 -bin/asmem -@mode -@group -man/man1/asmem.1.gz +@(,kmem,2555) bin/asmem +share/man/man1/asmem.1.gz diff --git a/sysutils/bchunk/Makefile b/sysutils/bchunk/Makefile index 2eb63f7a8ce3..2fda7e038b5c 100644 --- a/sysutils/bchunk/Makefile +++ b/sysutils/bchunk/Makefile @@ -1,5 +1,6 @@ PORTNAME= bchunk DISTVERSION= 1.2.2 +PORTREVIDSION= 1 CATEGORIES= sysutils MASTER_SITES= http://he.fi/bchunk/ @@ -13,13 +14,13 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= cpe CPE_VENDOR= bchunk_project -PLIST_FILES= bin/bchunk man/man1/bchunk.1.gz +PLIST_FILES= bin/bchunk share/man/man1/bchunk.1.gz do-build: @cd ${WRKSRC} && ${CC} ${CFLAGS} bchunk.c -o bchunk do-install: ${INSTALL_PROGRAM} ${WRKSRC}/bchunk ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/bchunk.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/bchunk.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include <bsd.port.mk> diff --git a/sysutils/chgrep/Makefile b/sysutils/chgrep/Makefile index 1d0bfb38daf7..376e76eab967 100644 --- a/sysutils/chgrep/Makefile +++ b/sysutils/chgrep/Makefile @@ -1,5 +1,6 @@ PORTNAME= chgrep PORTVERSION= 1.2.4 +PORTREVIDSION= 1 CATEGORIES= sysutils MASTER_SITES= http://www.bmk-it.com/projects/chgrep/files/ @@ -10,12 +11,12 @@ WWW= http://www.bmk-it.com/projects/chgrep/ GNU_CONFIGURE= yes USES= gmake tar:tgz -PLIST_FILES= bin/chgrep man/man1/${PORTNAME}.1.gz +PLIST_FILES= bin/chgrep share/man/man1/${PORTNAME}.1.gz do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/chgrep \ ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/man/chgrep.1 \ - ${STAGEDIR}${MANPREFIX}/man/man1 + ${STAGEDIR}${PREFIX}/share/man/man1 .include <bsd.port.mk> diff --git a/sysutils/du2ps/Makefile b/sysutils/du2ps/Makefile index 10914ebf76dc..9a0ce198083f 100644 --- a/sysutils/du2ps/Makefile +++ b/sysutils/du2ps/Makefile @@ -1,5 +1,6 @@ PORTNAME= du2ps PORTVERSION= 3.1 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://line.to/mac/soft/du2ps/ @@ -16,7 +17,7 @@ USES= tar:tgz ALL_TARGET= # empty MAKE_ARGS= CFLAGS="${CFLAGS}" -PLIST_FILES= bin/du2ps man/ja/man1/du2ps.1.gz man/man1/du2ps.1.gz +PLIST_FILES= bin/du2ps share/man/ja/man1/du2ps.1.gz share/man/man1/du2ps.1.gz PORTDOCS= README.ver1 README.ver2 README.xdu du2ps.pdf du2psj.pdf OPTIONS_DEFINE= DOCS @@ -26,9 +27,10 @@ post-build: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/du2ps ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/du2ps.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/du2ps.1 ${STAGEDIR}${PREFIX}/share/man/man1 + ${MKDIR} ${STAGEDIR}${PREFIX}/share/man/ja/man1/ ${INSTALL_MAN} ${WRKSRC}/du2ps.1.ja \ - ${STAGEDIR}${MANPREFIX}/man/ja/man1/du2ps.1 + ${STAGEDIR}${PREFIX}/share/man/ja/man1/du2ps.1 do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} diff --git a/sysutils/dwatch/Makefile b/sysutils/dwatch/Makefile index 488510babeef..49d200317ef7 100644 --- a/sysutils/dwatch/Makefile +++ b/sysutils/dwatch/Makefile @@ -1,6 +1,6 @@ PORTNAME= dwatch PORTVERSION= 0.1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= http://siag.nu/pub/dwatch/ @@ -11,7 +11,7 @@ WWW= https://siag.nu/dwatch/ LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -PLIST_FILES= bin/dwatch etc/dwatch.conf-dist man/man1/${PORTNAME}.1.gz +PLIST_FILES= bin/dwatch etc/dwatch.conf-dist share/man/man1/${PORTNAME}.1.gz CFLAGS+= -DETCDIR="\"${PREFIX}/etc\"" \ -DPS="\"/bin/ps -ax\"" @@ -21,7 +21,7 @@ do-build: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/dwatch ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/dwatch.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/dwatch.1 ${STAGEDIR}${PREFIX}/share/man/man1 ${INSTALL_DATA} ${WRKSRC}/dwatch.conf ${STAGEDIR}${PREFIX}/etc/dwatch.conf-dist .include <bsd.port.mk> diff --git a/sysutils/fsbackup/Makefile b/sysutils/fsbackup/Makefile index 124b9fc17a60..dcb5e80521e8 100644 --- a/sysutils/fsbackup/Makefile +++ b/sysutils/fsbackup/Makefile @@ -1,6 +1,6 @@ PORTNAME= fsbackup PORTVERSION= 1.2.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils MASTER_SITES= http://www.opennet.ru/dev/fsbackup/src/ DISTNAME= fsbackup-1.2pl1 @@ -19,7 +19,7 @@ USES= perl5 shebangfix SHEBANG_FILES= *.pl contrib/*.pl do-install: - cd ${WRKSRC}; ./install.pl --prefix=${PREFIX}/fsbackup --prefix-man=${MANPREFIX}/man/man1 --dest=${STAGEDIR} + cd ${WRKSRC}; ./install.pl --prefix=${PREFIX}/fsbackup --prefix-man=${PREFIX}/share/man/man1 --dest=${STAGEDIR} ${RM} ${STAGEDIR}${PREFIX}/fsbackup/fsbackup.1 .include <bsd.port.mk> diff --git a/sysutils/fsbackup/pkg-plist b/sysutils/fsbackup/pkg-plist index 8c5460cfa14d..2ad15eb7d4e5 100644 --- a/sysutils/fsbackup/pkg-plist +++ b/sysutils/fsbackup/pkg-plist @@ -10,6 +10,6 @@ fsbackup/scripts/pgsql_backup.sh fsbackup/scripts/sysbackup.sh fsbackup/scripts/sysrestore.sh fsbackup/scripts/sqlite_backup.sh -man/man1/fsbackup.1.gz +share/man/man1/fsbackup.1.gz @dir fsbackup/cache @dir fsbackup/sys_backup diff --git a/sysutils/hextools/Makefile b/sysutils/hextools/Makefile index e0c32ec8c5f6..e26fc8f4c734 100644 --- a/sysutils/hextools/Makefile +++ b/sysutils/hextools/Makefile @@ -1,5 +1,6 @@ PORTNAME= hextools PORTVERSION= 1.2 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://avl.enemy.org/utils/hextools/ @@ -16,7 +17,7 @@ CONFLICTS_INSTALL= z80pack # bin/bin2hex NO_WRKSUBDIR= yes -PLIST_FILES= bin/hex2bin bin/bin2hex man/man1/bin2hex.1.gz man/man1/hex2bin.1.gz +PLIST_FILES= bin/hex2bin bin/bin2hex share/man/man1/bin2hex.1.gz share/man/man1/hex2bin.1.gz ALL_TARGET= build post-extract: @@ -25,7 +26,7 @@ post-extract: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/hex2bin ${STAGEDIR}${PREFIX}/bin/hex2bin ${INSTALL_PROGRAM} ${WRKSRC}/hexdump ${STAGEDIR}${PREFIX}/bin/bin2hex - ${INSTALL_MAN} ${WRKSRC}/hex2bin.1 ${STAGEDIR}${MANPREFIX}/man/man1/hex2bin.1 - ${INSTALL_MAN} ${WRKSRC}/hexdump.1 ${STAGEDIR}${MANPREFIX}/man/man1/bin2hex.1 + ${INSTALL_MAN} ${WRKSRC}/hex2bin.1 ${STAGEDIR}${PREFIX}/share/man/man1/hex2bin.1 + ${INSTALL_MAN} ${WRKSRC}/hexdump.1 ${STAGEDIR}${PREFIX}/share/man/man1/bin2hex.1 .include <bsd.port.mk> diff --git a/sysutils/host-setup/Makefile b/sysutils/host-setup/Makefile index b69bbf94bb1a..6dc714f40be5 100644 --- a/sysutils/host-setup/Makefile +++ b/sysutils/host-setup/Makefile @@ -1,5 +1,6 @@ PORTNAME= host-setup PORTVERSION= 4.0.2 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://druidbsd.sourceforge.net/download/ @@ -10,10 +11,10 @@ WWW= https://druidbsd.sourceforge.net/ NO_ARCH= yes NO_BUILD= yes -PLIST_FILES= sbin/${PORTNAME} man/man1/${PORTNAME}.1.gz +PLIST_FILES= sbin/${PORTNAME} share/man/man1/${PORTNAME}.1.gz do-install: ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include <bsd.port.mk> diff --git a/sysutils/isc-cron/Makefile b/sysutils/isc-cron/Makefile index b64e4c290638..bfa1af036304 100644 --- a/sysutils/isc-cron/Makefile +++ b/sysutils/isc-cron/Makefile @@ -1,6 +1,6 @@ PORTNAME= isc-cron PORTVERSION= 4.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils MASTER_SITES= ISC/cron DISTNAME= cron_${PORTVERSION}.shar @@ -17,9 +17,9 @@ NO_WRKSUBDIR= yes SUB_FILES= pkg-message PLIST_FILES= sbin/cron \ "@(root,wheel,4755) bin/crontab" \ - man/man1/crontab.1.gz \ - man/man5/crontab.5.gz \ - man/man8/cron.8.gz + share/man/man1/crontab.1.gz \ + share/man/man5/crontab.5.gz \ + share/man/man8/cron.8.gz do-extract: @${MKDIR} ${WRKSRC} @@ -28,8 +28,8 @@ do-extract: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/cron ${STAGEDIR}${PREFIX}/sbin ${INSTALL_PROGRAM} ${WRKSRC}/crontab ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/crontab.1 ${STAGEDIR}${MANPREFIX}/man/man1 - ${INSTALL_MAN} ${WRKSRC}/crontab.5 ${STAGEDIR}${MANPREFIX}/man/man5 - ${INSTALL_MAN} ${WRKSRC}/cron.8 ${STAGEDIR}${MANPREFIX}/man/man8 + ${INSTALL_MAN} ${WRKSRC}/crontab.1 ${STAGEDIR}${PREFIX}/share/man/man1 + ${INSTALL_MAN} ${WRKSRC}/crontab.5 ${STAGEDIR}${PREFIX}/share/man/man5 + ${INSTALL_MAN} ${WRKSRC}/cron.8 ${STAGEDIR}${PREFIX}/share/man/man8 .include <bsd.port.mk> diff --git a/sysutils/isomaster/Makefile b/sysutils/isomaster/Makefile index 38ab8c38e89e..651fdf611365 100644 --- a/sysutils/isomaster/Makefile +++ b/sysutils/isomaster/Makefile @@ -1,6 +1,6 @@ PORTNAME= isomaster PORTVERSION= 1.3.16 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= http://littlesvr.ca/isomaster/releases/ @@ -32,7 +32,7 @@ do-install: (cd ${WRKSRC} && ${INSTALL_PROGRAM} isomaster \ ${STAGEDIR}${PREFIX}/bin) (cd ${WRKSRC} && ${INSTALL_MAN} isomaster.1 \ - ${STAGEDIR}${MANPREFIX}/man/man1) + ${STAGEDIR}${PREFIX}/share/man/man1) @${MKDIR} ${STAGEDIR}${DATADIR}/icons .for i in add2-kearone.png delete-kearone.png extract2-kearone.png \ folder-new-kearone.png go-back-kearone.png isomaster.png diff --git a/sysutils/isomaster/pkg-plist b/sysutils/isomaster/pkg-plist index 21f085281feb..711f28c752da 100644 --- a/sysutils/isomaster/pkg-plist +++ b/sysutils/isomaster/pkg-plist @@ -1,5 +1,5 @@ bin/isomaster -man/man1/isomaster.1.gz +share/man/man1/isomaster.1.gz share/applications/isomaster.desktop %%DATADIR%%/icons/add2-kearone.png %%DATADIR%%/icons/delete-kearone.png diff --git a/sysutils/linrename/Makefile b/sysutils/linrename/Makefile index 58ca920be893..931e4cc6c858 100644 --- a/sysutils/linrename/Makefile +++ b/sysutils/linrename/Makefile @@ -1,5 +1,6 @@ PORTNAME= linrename PORTVERSION= 2.25.2 +PORTREVISION= 1 CATEGORIES= sysutils #MASTER_SITES= KERNEL_ORG/linux/utils/util-linux/v${PORTVERSION} MASTER_SITES= http://ftp.ntu.edu.tw/ftp/linux/%SUBDIR%/ \ @@ -24,7 +25,7 @@ CPPFLAGS+= -I../include \ -Dprogram_invocation_short_name=\"${PROGNAME}\" \ -DPACKAGE_STRING=\"util-linux\ ${PORTVERSION}\" -PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz +PLIST_FILES= bin/${PORTNAME} share/man/man1/${PORTNAME}.1.gz post-patch: ${LN} -sf rename.1 ${BUILD_WRKSRC}/${PORTNAME}.1 @@ -37,6 +38,6 @@ do-build: do-install: cd ${INSTALL_WRKSRC} \ && ${INSTALL_PROGRAM} ${PORTNAME} ${STAGEDIR}${PREFIX}/bin \ - && ${INSTALL_MAN} ${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 + && ${INSTALL_MAN} ${PORTNAME}.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include <bsd.port.mk> diff --git a/sysutils/massadmin/Makefile b/sysutils/massadmin/Makefile index bcd5f74a0616..35e57269f553 100644 --- a/sysutils/massadmin/Makefile +++ b/sysutils/massadmin/Makefile @@ -1,6 +1,6 @@ PORTNAME= massadmin PORTVERSION= 2.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} @@ -20,11 +20,11 @@ NO_BUILD= yes NO_ARCH= yes SHEBANG_FILES= ${WRKSRC}/${PORTNAME} -PLIST_FILES= bin/massadmin man/man1/massadmin.1.gz +PLIST_FILES= bin/massadmin share/man/man1/massadmin.1.gz do-install: ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/doc/${PORTNAME}.1 \ - ${STAGEDIR}${MANPREFIX}/man/man1 + ${STAGEDIR}${PREFIX}/share/man/man1 .include <bsd.port.mk> diff --git a/sysutils/mcelog/Makefile b/sysutils/mcelog/Makefile index 6d35f04da8ad..75c42b06ce90 100644 --- a/sysutils/mcelog/Makefile +++ b/sysutils/mcelog/Makefile @@ -1,5 +1,6 @@ PORTNAME= mcelog PORTVERSION= 178 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= sysutils @@ -25,7 +26,7 @@ MAKE_ENV+= FREEBSD=1 MAKE_ARGS+= CFLAGS="${CFLAGS}" prefix="${PREFIX}" LDFLAGS+= -lkvm -PLIST_FILES= bin/mcelog man/man8/mcelog.8.gz +PLIST_FILES= bin/mcelog share/man/man8/mcelog.8.gz post-patch: @${ECHO} "${DISTVERSIONPREFIX}${PORTVERSION}" >${WRKSRC}/.os_version @@ -35,6 +36,6 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/mcelog ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/mcelog.8 ${STAGEDIR}${MANPREFIX}/man/man8 + ${INSTALL_MAN} ${WRKSRC}/mcelog.8 ${STAGEDIR}${PREFIX}/share/man/man8 .include <bsd.port.mk> diff --git a/sysutils/open/Makefile b/sysutils/open/Makefile index 0d05c8d90514..b7cd39488d1b 100644 --- a/sysutils/open/Makefile +++ b/sysutils/open/Makefile @@ -1,5 +1,6 @@ PORTNAME= open PORTVERSION= 1.4 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= ftp://ftp.hs-niederrhein.de/pub/linux/src/ \ ftp://ftp.uni-bremen.de/pub/mirrors/sunsite/utils/console/ \ @@ -9,7 +10,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Open opens a new vt and runs a command on it ALL_TARGET= open -PLIST_FILES= bin/open man/man1/open.1.gz +PLIST_FILES= bin/open share/man/man1/open.1.gz OPTIONS_DEFINE= SETUID SETUID_DESC= Install setuid open binary PKGMESSAGE= ${WRKDIR}/pkg-message @@ -18,7 +19,7 @@ PKGMESSAGE= ${WRKDIR}/pkg-message do-install: ${INSTALL_PROGRAM} ${WRKSRC}/open ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/open.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/open.1 ${STAGEDIR}${PREFIX}/share/man/man1 .if ${PORT_OPTIONS:MSETUID} ${CHMOD} u+s ${STAGEDIR}${PREFIX}/bin/open .else diff --git a/sysutils/pcpustat/Makefile b/sysutils/pcpustat/Makefile index f1193a324c53..178d4905f74f 100644 --- a/sysutils/pcpustat/Makefile +++ b/sysutils/pcpustat/Makefile @@ -1,5 +1,6 @@ PORTNAME= pcpustat PORTVERSION= 1.6 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= https://bitbucket.org/sterlingcamden/pcpustat/get/ DISTNAME= ${PORTVERSION} @@ -16,10 +17,10 @@ USES= tar:bzip2 WRKSRC= ${WRKDIR}/sterlingcamden-pcpustat-2b8712536989 PLIST_FILES= bin/pcpustat \ - man/man1/pcpustat.1.gz + share/man/man1/pcpustat.1.gz do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ - ${INSTALL_MAN} ${WRKSRC}/man/man1/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1/ + ${INSTALL_MAN} ${WRKSRC}/man/man1/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/share/man/man1/ .include <bsd.port.mk> diff --git a/sysutils/pdumpfs/Makefile b/sysutils/pdumpfs/Makefile index f239ff78af7d..dbf5b1cae306 100644 --- a/sysutils/pdumpfs/Makefile +++ b/sysutils/pdumpfs/Makefile @@ -1,6 +1,6 @@ PORTNAME= pdumpfs PORTVERSION= 1.3 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= sysutils MASTER_SITES= http://0xcc.net/pdumpfs/ @@ -17,8 +17,8 @@ NO_ARCH= yes SHEBANG_FILES= ${WRKSRC}/pdumpfs.in ALL_TARGET= pdumpfs -PLIST_FILES= man/ja/man8/pdumpfs.8.gz \ - man/man8/pdumpfs.8.gz \ +PLIST_FILES= share/man/ja/man8/pdumpfs.8.gz \ + share/man/man8/pdumpfs.8.gz \ sbin/pdumpfs PORTDOCS= * @@ -26,9 +26,10 @@ OPTIONS_DEFINE= DOCS do-install: ${INSTALL_SCRIPT} ${WRKSRC}/pdumpfs ${STAGEDIR}${PREFIX}/sbin - ${INSTALL_MAN} ${WRKSRC}/man/man8/pdumpfs.8 ${STAGEDIR}${MANPREFIX}/man/man8 + ${INSTALL_MAN} ${WRKSRC}/man/man8/pdumpfs.8 ${STAGEDIR}${PREFIX}/share/man/man8 ${RUBY} -ni -r nkf -e 'puts NKF.nkf("-e",$$_)' ${WRKSRC}/man/ja/man8/pdumpfs.8 - ${INSTALL_MAN} ${WRKSRC}/man/ja/man8/pdumpfs.8 ${STAGEDIR}${MANPREFIX}/man/ja/man8 + ${MKDIR} ${STAGEDIR}${PREFIX}/share/man/ja/man8 + ${INSTALL_MAN} ${WRKSRC}/man/ja/man8/pdumpfs.8 ${STAGEDIR}${PREFIX}/share/man/ja/man8 do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} diff --git a/sysutils/qlogtools/Makefile b/sysutils/qlogtools/Makefile index 5cf526de431f..d9eddf79c7fe 100644 --- a/sysutils/qlogtools/Makefile +++ b/sysutils/qlogtools/Makefile @@ -1,6 +1,6 @@ PORTNAME= qlogtools PORTVERSION= 3.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils MASTER_SITES= http://untroubled.org/${PORTNAME}/ @@ -17,7 +17,7 @@ OPTIONS_DEFINE= DOCS do-configure: ${ECHO_CMD} "${STAGEDIR}${PREFIX}/bin" > ${WRKSRC}/conf-bin - ${ECHO_CMD} "${STAGEDIR}${MANPREFIX}/man" > ${WRKSRC}/conf-man + ${ECHO_CMD} "${STAGEDIR}${PREFIX}/share/man" > ${WRKSRC}/conf-man ${ECHO_CMD} "${CC} ${STRIP} ${CFLAGS}" > ${WRKSRC}/conf-cc ${ECHO_CMD} "${CC} ${LDFLAGS}" > ${WRKSRC}/conf-ld diff --git a/sysutils/qlogtools/pkg-plist b/sysutils/qlogtools/pkg-plist index 4608a778574e..623da272dace 100644 --- a/sysutils/qlogtools/pkg-plist +++ b/sysutils/qlogtools/pkg-plist @@ -5,10 +5,10 @@ bin/spipe bin/tai2tai64n bin/tai64n2tai bin/teepipe -man/man1/multipipe.1.gz -man/man1/multitail.1.gz -man/man1/qfilelog.1.gz -man/man1/spipe.1.gz -man/man1/tai2tai64n.1.gz -man/man1/tai64n2tai.1.gz -man/man1/teepipe.1.gz +share/man/man1/multipipe.1.gz +share/man/man1/multitail.1.gz +share/man/man1/qfilelog.1.gz +share/man/man1/spipe.1.gz +share/man/man1/tai2tai64n.1.gz +share/man/man1/tai64n2tai.1.gz +share/man/man1/teepipe.1.gz diff --git a/sysutils/screenie/Makefile b/sysutils/screenie/Makefile index 3fda223a59ee..1e9c63020e86 100644 --- a/sysutils/screenie/Makefile +++ b/sysutils/screenie/Makefile @@ -14,12 +14,12 @@ RUN_DEPENDS= screen:sysutils/screen NO_ARCH= yes NO_BUILD= yes -PLIST_FILES= sbin/screenie man/man1/screenie.1.gz +PLIST_FILES= sbin/screenie share/man/man1/screenie.1.gz WRKSRC= ${WRKDIR}/${PORTNAME} do-install: ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include <bsd.port.mk> diff --git a/sysutils/stowES/Makefile b/sysutils/stowES/Makefile index a2dc8e768bcd..eae53bb864eb 100644 --- a/sysutils/stowES/Makefile +++ b/sysutils/stowES/Makefile @@ -1,5 +1,6 @@ PORTNAME= stowES PORTVERSION= 0.5.7 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://os.inf.tu-dresden.de/~adam/stowES/download/ @@ -18,7 +19,7 @@ NO_ARCH= yes PORTDOCS= AUTHORS ChangeLog NEWS README TODO \ ${PORTNAME}.html ${PORTNAME}.pod ${PORTNAME}.txt -PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz +PLIST_FILES= bin/${PORTNAME} share/man/man1/${PORTNAME}.1.gz OPTIONS_DEFINE= DOCS @@ -27,7 +28,7 @@ post-patch: do-install: ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/share/man/man1 do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} diff --git a/sysutils/swapmon/Makefile b/sysutils/swapmon/Makefile index 48c3803b2c64..a4086129c152 100644 --- a/sysutils/swapmon/Makefile +++ b/sysutils/swapmon/Makefile @@ -1,5 +1,6 @@ PORTNAME= swapmon PORTVERSION= 1.5 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= # none DISTFILES= # none @@ -15,7 +16,7 @@ NO_ARCH= yes USE_RC_SUBR= ${PORTNAME} -PLIST_FILES= sbin/swapmon man/man1/swapmon.1.gz +PLIST_FILES= sbin/swapmon share/man/man1/swapmon.1.gz post-extract: @${SED} -e 's|%%PREFIX%%|${PREFIX}|g' ${FILESDIR}/${PORTNAME}.sh.in \ @@ -25,6 +26,6 @@ do-install: ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh \ ${STAGEDIR}${PREFIX}/sbin/${PORTNAME} ${INSTALL_MAN} ${FILESDIR}/${PORTNAME}.1 \ - ${STAGEDIR}${MANPREFIX}/man/man1 + ${STAGEDIR}${PREFIX}/share/man/man1 .include <bsd.port.mk> diff --git a/sysutils/ttyload/Makefile b/sysutils/ttyload/Makefile index 04005ca2ec1b..c1ce9a6ab2e0 100644 --- a/sysutils/ttyload/Makefile +++ b/sysutils/ttyload/Makefile @@ -1,6 +1,6 @@ PORTNAME= ttyload PORTVERSION= 0.5.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= http://www.daveltd.com/src/util/ttyload/ @@ -14,14 +14,14 @@ LICENSE_FILE= ${WRKSRC}/LICENSE ALL_TARGET= default USES= tar:bzip2 -PLIST_FILES= bin/ttyload man/man1/ttyload.1.gz +PLIST_FILES= bin/ttyload share/man/man1/ttyload.1.gz PORTDOCS= README OPTIONS_DEFINE= DOCS do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/ttyload.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/ttyload.1 ${STAGEDIR}${PREFIX}/share/man/man1 do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} diff --git a/sysutils/turbostat/Makefile b/sysutils/turbostat/Makefile index 3815b4d3b8bd..89857796c7e2 100644 --- a/sysutils/turbostat/Makefile +++ b/sysutils/turbostat/Makefile @@ -1,6 +1,6 @@ PORTNAME= turbostat PORTVERSION= 4.17 # Turbostat itself has a version, but we don't bother -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils MASTER_SITES= https://raw.githubusercontent.com/torvalds/linux/v${PORTVERSION}/tools/power/x86/turbostat/ \ https://raw.githubusercontent.com/torvalds/linux/v${PORTVERSION}/arch/x86/include/asm/ @@ -16,7 +16,7 @@ LICENSE= GPLv2 ONLY_FOR_ARCHS= amd64 NO_WRKSUBDIR=yes -PLIST_FILES= sbin/turbostat man/man8/turbostat.8.gz +PLIST_FILES= sbin/turbostat share/man/man8/turbostat.8.gz post-extract: @@ -32,6 +32,6 @@ do-build: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${MANPREFIX}/man/man8 + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${PREFIX}/share/man/man8 .include <bsd.port.mk> diff --git a/sysutils/tzdialog/Makefile b/sysutils/tzdialog/Makefile index c91abdcd6a74..31249ca52155 100644 --- a/sysutils/tzdialog/Makefile +++ b/sysutils/tzdialog/Makefile @@ -1,5 +1,6 @@ PORTNAME= tzdialog PORTVERSION= 1.2 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://druidbsd.sourceforge.net/download/ @@ -9,10 +10,10 @@ WWW= https://druidbsd.sourceforge.net/ NO_BUILD= yes -PLIST_FILES= sbin/tzdialog man/man8/tzdialog.8.gz +PLIST_FILES= sbin/tzdialog share/man/man8/tzdialog.8.gz do-install: ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${MANPREFIX}/man/man8 + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${PREFIX}/share/man/man8 .include <bsd.port.mk> diff --git a/sysutils/ucspi-proxy/Makefile b/sysutils/ucspi-proxy/Makefile index edb44adbe203..b5493cf4285b 100644 --- a/sysutils/ucspi-proxy/Makefile +++ b/sysutils/ucspi-proxy/Makefile @@ -1,5 +1,6 @@ PORTNAME= ucspi-proxy PORTVERSION= 1.1 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://untroubled.org/ucspi-proxy/ @@ -17,12 +18,12 @@ BGLIBS_INCLUDE= ${LOCALBASE}/include/bglibs PLIST_FILES= bin/ucspi-proxy bin/ucspi-proxy-log bin/ucspi-proxy-pop3 \ bin/ucspi-proxy-imap bin/ucspi-proxy-http-xlate \ - man/man1/ucspi-proxy-http-xlate.1.gz \ - man/man1/ucspi-proxy.1.gz + share/man/man1/ucspi-proxy-http-xlate.1.gz \ + share/man/man1/ucspi-proxy.1.gz do-configure: ${ECHO_CMD} "${STAGEDIR}${PREFIX}/bin" > ${WRKSRC}/conf-bin - ${ECHO_CMD} "${STAGEDIR}${MANPREFIX}/man" > ${WRKSRC}/conf-man + ${ECHO_CMD} "${STAGEDIR}${PREFIX}/share/man" > ${WRKSRC}/conf-man ${ECHO_CMD} "${CC} ${CFLAGS}" > ${WRKSRC}/conf-cc ${ECHO_CMD} "${CC} ${STRIP} ${LDFLAGS}" > ${WRKSRC}/conf-ld ${ECHO_CMD} "${BGLIBS_INCLUDE}" > ${WRKSRC}/conf-bgincs diff --git a/sysutils/ucspi-unix/Makefile b/sysutils/ucspi-unix/Makefile index c54db0c327f7..2ecacdcb728a 100644 --- a/sysutils/ucspi-unix/Makefile +++ b/sysutils/ucspi-unix/Makefile @@ -1,5 +1,6 @@ PORTNAME= ucspi-unix PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://untroubled.org/${PORTNAME}/archive/ @@ -16,7 +17,7 @@ BGLIBS_INC= ${LOCALBASE}/include/bglibs BGLIBS_LIB= ${LOCALBASE}/lib/bglibs PLIST_FILES= bin/unixcat bin/unixclient bin/unixserver \ - man/man1/unixclient.1.gz man/man1/unixserver.1.gz + share/man/man1/unixclient.1.gz share/man/man1/unixserver.1.gz PORTDOCS= NEWS PROTOCOL README TODO OPTIONS_DEFINE= DOCS @@ -26,7 +27,7 @@ MAKE_JOBS_UNSAFE=yes post-patch: .SILENT ${ECHO_CMD} "${STAGEDIR}${PREFIX}" > ${WRKSRC}/conf-home ${ECHO_CMD} "${STAGEDIR}${PREFIX}/bin" > ${WRKSRC}/conf-bin - ${ECHO_CMD} "${STAGEDIR}${MANPREFIX}/man" > ${WRKSRC}/conf-man + ${ECHO_CMD} "${STAGEDIR}${PREFIX}/share/man" > ${WRKSRC}/conf-man ${ECHO_CMD} "${CC} ${CFLAGS}" > ${WRKSRC}/conf-cc ${ECHO_CMD} "${CC} ${LDFLAGS} ${STRIP}" > ${WRKSRC}/conf-ld ${ECHO_CMD} "${BGLIBS_INC}" > ${WRKSRC}/conf-bgincs @@ -36,8 +37,8 @@ do-install: ${INSTALL_SCRIPT} ${WRKSRC}/unixcat ${STAGEDIR}${PREFIX}/bin/ ${INSTALL_PROGRAM} ${WRKSRC}/unixclient ${STAGEDIR}${PREFIX}/bin/ ${INSTALL_PROGRAM} ${WRKSRC}/unixserver ${STAGEDIR}${PREFIX}/bin/ - ${INSTALL_MAN} ${WRKSRC}/unixclient.1 ${STAGEDIR}${MANPREFIX}/man/man1/ - ${INSTALL_MAN} ${WRKSRC}/unixserver.1 ${STAGEDIR}${MANPREFIX}/man/man1/ + ${INSTALL_MAN} ${WRKSRC}/unixclient.1 ${STAGEDIR}${PREFIX}/share/man/man1/ + ${INSTALL_MAN} ${WRKSRC}/unixserver.1 ${STAGEDIR}${PREFIX}/share/man/man1/ do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} diff --git a/sysutils/unstow/Makefile b/sysutils/unstow/Makefile index efa439ffb140..4812fdcfb4b6 100644 --- a/sysutils/unstow/Makefile +++ b/sysutils/unstow/Makefile @@ -1,5 +1,6 @@ PORTNAME= unstow PORTVERSION= 0.1.1 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://download.github.com/ \ ftp://ftp.iDaemons.org/pub/distfiles/ @@ -11,14 +12,14 @@ WWW= https://github.com/knu/stow-utils NO_BUILD= yes -PLIST_FILES= bin/unstow man/man1/unstow.1.gz +PLIST_FILES= bin/unstow share/man/man1/unstow.1.gz PORTDOCS= README.md OPTIONS_DEFINE= DOCS do-install: ${INSTALL_SCRIPT} ${WRKSRC}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/man/unstow.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/man/unstow.1 ${STAGEDIR}${PREFIX}/share/man/man1 ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} diff --git a/sysutils/uschedule/Makefile b/sysutils/uschedule/Makefile index fc90fc656a82..db0b1c6eeb6b 100644 --- a/sysutils/uschedule/Makefile +++ b/sysutils/uschedule/Makefile @@ -1,6 +1,6 @@ PORTNAME= uschedule PORTVERSION= 0.7.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= http://www.ohse.de/uwe/uschedule/ @@ -24,8 +24,8 @@ PORTDOCS= ChangeLog NEWS SECURITY-BUG bin= uschedule uschedulecmd uscheduleconf uschedulecp \ uscheduleedit uschedulelist uschedulerm uscheduleruntimelimit sbin= uscheduled -PLIST_FILES= ${bin:S,^,bin/,} ${bin:S,^,man/man1/,:S,$,.1.gz,} \ - man/man7/uschedule_intro.7.gz man/man8/uscheduled.8.gz \ +PLIST_FILES= ${bin:S,^,bin/,} ${bin:S,^,share/man/man1/,:S,$,.1.gz,} \ + share/man/man7/uschedule_intro.7.gz share/man/man8/uscheduled.8.gz \ sbin/uscheduled OPTIONS_DEFINE= DOCS @@ -45,11 +45,11 @@ do-install: ${STAGEDIR}${PREFIX}/bin) ${INSTALL_PROGRAM} ${WRKSRC}/command/${sbin} ${STAGEDIR}${PREFIX}/sbin (cd ${WRKSRC}/doc && ${INSTALL_MAN} ${bin:S,$,.1,} \ - ${STAGEDIR}${MANPREFIX}/man/man1) + ${STAGEDIR}${PREFIX}/share/man/man1) ${INSTALL_MAN} ${WRKSRC}/doc/uschedule_intro.7 \ - ${STAGEDIR}${MANPREFIX}/man/man7 + ${STAGEDIR}${PREFIX}/share/man/man7 ${INSTALL_MAN} ${WRKSRC}/doc/uscheduled.8 \ - ${STAGEDIR}${MANPREFIX}/man/man8 + ${STAGEDIR}${PREFIX}/share/man/man8 do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} diff --git a/sysutils/vobcopy/Makefile b/sysutils/vobcopy/Makefile index f4c2020ebfa0..a09cffd78756 100644 --- a/sysutils/vobcopy/Makefile +++ b/sysutils/vobcopy/Makefile @@ -1,6 +1,6 @@ PORTNAME= vobcopy PORTVERSION= 1.2.0 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= sysutils MASTER_SITES= http://vobcopy.org/download/ \ LOCAL/ehaupt @@ -17,7 +17,7 @@ CONFIGURE_ARGS= --with-lfs --with-dvdread-libs=${LOCALBASE} ALL_TARGET= ${PORTNAME} -PLIST_FILES= bin/vobcopy man/man1/vobcopy.1.gz +PLIST_FILES= bin/vobcopy share/man/man1/vobcopy.1.gz PORTDOCS= COPYING Changelog README TODO \ alternative_programs.txt OPTIONS_DEFINE= DOCS @@ -51,7 +51,7 @@ post-configure: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/vobcopy ${STAGEDIR}${PREFIX}/bin/vobcopy ${INSTALL_MAN} ${WRKSRC}/vobcopy.1${MAN1_SUFX} \ - ${STAGEDIR}${MANPREFIX}/man/man1/vobcopy.1 + ${STAGEDIR}${PREFIX}/share/man/man1/vobcopy.1 do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} diff --git a/sysutils/wmtop/Makefile b/sysutils/wmtop/Makefile index d96b42a8bdd0..6a1d191042d1 100644 --- a/sysutils/wmtop/Makefile +++ b/sysutils/wmtop/Makefile @@ -1,6 +1,6 @@ PORTNAME= wmtop PORTVERSION= 0.84 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils windowmaker MASTER_SITES= https://www.dockapps.net/download/ @@ -18,7 +18,7 @@ CFLAGS+= -fcommon # clang11/gcc10 PORTDOCS= BUGS CHANGES README TODO PLIST_FILES= bin/wmtop \ - man/man1/wmtop.1.gz + share/man/man1/wmtop.1.gz OPTIONS_DEFINE= DOCS @@ -28,7 +28,7 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/wmtop ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/wmtop.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/wmtop.1 ${STAGEDIR}${PREFIX}/share/man/man1 @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} diff --git a/sysutils/xpipe/Makefile b/sysutils/xpipe/Makefile index 06dec8183b99..c4934584b997 100644 --- a/sysutils/xpipe/Makefile +++ b/sysutils/xpipe/Makefile @@ -17,6 +17,6 @@ PLIST_FILES= bin/${PORTNAME} \ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/doc/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/share/man/man1 + ${INSTALL_MAN} ${WRKSRC}/doc/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include <bsd.port.mk> diff --git a/sysutils/zsd/Makefile b/sysutils/zsd/Makefile index eafd971d061b..ebd64489d61e 100644 --- a/sysutils/zsd/Makefile +++ b/sysutils/zsd/Makefile @@ -1,5 +1,6 @@ PORTNAME= zsd PORTVERSION= 0.0.2014.12.07 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://www.fabiankeil.de/sourcecode/zfs-snapshot-destroyer/ DISTNAME= ${PORTNAME}-2014-12-07-c2d3662 @@ -18,10 +19,10 @@ NO_BUILD= yes NO_ARCH= yes PLIST_FILES= sbin/zsd \ - man/man8/zsd.8.gz + share/man/man8/zsd.8.gz do-install: ${INSTALL_SCRIPT} ${WRKSRC}/zsd ${STAGEDIR}${PREFIX}/sbin - ${INSTALL_MAN} ${WRKSRC}/zsd.8 ${STAGEDIR}${MANPREFIX}/man/man8 + ${INSTALL_MAN} ${WRKSRC}/zsd.8 ${STAGEDIR}${PREFIX}/share/man/man8 .include <bsd.port.mk> diff --git a/textproc/antiword/Makefile b/textproc/antiword/Makefile index 0e00a62a9244..dac27c1ea9cc 100644 --- a/textproc/antiword/Makefile +++ b/textproc/antiword/Makefile @@ -1,6 +1,6 @@ PORTNAME= antiword PORTVERSION= 0.37 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= textproc MASTER_SITES= https://web.archive.org/web/20221207132720/http://www.winfield.demon.nl/linux/ @@ -35,7 +35,7 @@ post-patch: @${REINPLACE_CMD} -E 's,/usr/share,${PREFIX}/share,g' ${WRKSRC}/antiword.h post-install: - ${INSTALL_MAN} ${WRKSRC}/Docs/antiword.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/Docs/antiword.1 ${STAGEDIR}${PREFIX}/share/man/man1 post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} diff --git a/textproc/antiword/pkg-plist b/textproc/antiword/pkg-plist index 8a894b82a7c1..929911cb07e3 100644 --- a/textproc/antiword/pkg-plist +++ b/textproc/antiword/pkg-plist @@ -1,6 +1,6 @@ bin/antiword bin/kantiword -man/man1/antiword.1.gz +share/man/man1/antiword.1.gz %%DATADIR%%/8859-1.txt %%DATADIR%%/8859-10.txt %%DATADIR%%/8859-11.txt diff --git a/textproc/bsddiff/Makefile b/textproc/bsddiff/Makefile index 8a9d2395f14f..5b561a049baf 100644 --- a/textproc/bsddiff/Makefile +++ b/textproc/bsddiff/Makefile @@ -1,6 +1,6 @@ PORTNAME= diff PORTVERSION= 20120705 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= LOCAL/gabor PKGNAMEPREFIX= bsd- @@ -13,8 +13,8 @@ USES= uidfix WRKSRC= ${WRKDIR}/${PORTNAME} MAKE_ENV+= BINDIR="${PREFIX}/bin" \ - MANDIR="${MANPREFIX}/man/man" \ - CATDIR="${MANPREFIX}/man/man" + MANDIR="${PREFIX}/share/man/man" \ + CATDIR="${PREFIX}/share/man/man" post-install: ${LN} -sf ${PREFIX}/bin/bsddiff ${STAGEDIR}${PREFIX}/bin/diff diff --git a/textproc/bsddiff/pkg-plist b/textproc/bsddiff/pkg-plist index fcc3eea5256a..a57b8b4585b3 100644 --- a/textproc/bsddiff/pkg-plist +++ b/textproc/bsddiff/pkg-plist @@ -1,3 +1,3 @@ bin/diff bin/bsddiff -man/man1/bsddiff.1.gz +share/man/man1/bsddiff.1.gz diff --git a/textproc/coccigrep/Makefile b/textproc/coccigrep/Makefile index 55cb7728951c..a6f55a214cd7 100644 --- a/textproc/coccigrep/Makefile +++ b/textproc/coccigrep/Makefile @@ -17,7 +17,7 @@ USE_PYTHON= distutils autoplist concurrent optsuffix USE_GITHUB= yes GH_ACCOUNT= regit -PLIST_FILES= man/man1/coccigrep.1.gz \ +PLIST_FILES= share/man/man1/coccigrep.1.gz \ ${DATADIR_REL}/cocci-grep.el \ ${DATADIR_REL}/cocci-grep.vim PORTDOCS= ChangeLog README.rst @@ -25,7 +25,7 @@ PORTDOCS= ChangeLog README.rst OPTIONS_DEFINE= DOCS post-install: - ${INSTALL_MAN} ${WRKSRC}/coccigrep.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/coccigrep.1 ${STAGEDIR}${PREFIX}/man/man1 @${MKDIR} ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${WRKSRC}/editors/cocci-grep.el ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${WRKSRC}/editors/cocci-grep.vim ${STAGEDIR}${DATADIR} diff --git a/textproc/lacheck/Makefile b/textproc/lacheck/Makefile index e8a6cb0b67da..01d85ee7275d 100644 --- a/textproc/lacheck/Makefile +++ b/textproc/lacheck/Makefile @@ -8,7 +8,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Tool for finding common mistakes in LaTeX documents PLIST_FILES= bin/lacheck \ - man/man1/lacheck.1.gz + share/man/man1/lacheck.1.gz ALL_TARGET= lacheck lacheck.1 post-patch: @@ -18,6 +18,6 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/lacheck ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/lacheck.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/lacheck.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include <bsd.port.mk> diff --git a/textproc/makefaq/Makefile b/textproc/makefaq/Makefile index fb6c4822e873..1ae08d80b573 100644 --- a/textproc/makefaq/Makefile +++ b/textproc/makefaq/Makefile @@ -1,6 +1,6 @@ PORTNAME= makefaq PORTVERSION= 2.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc python MASTER_SITES= SF @@ -15,14 +15,14 @@ NO_BUILD= yes NO_ARCH= yes SHEBANG_FILES= makefaq.py -PLIST_FILES= bin/makefaq.py man/man1/makefaq.1.gz +PLIST_FILES= bin/makefaq.py share/man/man1/makefaq.1.gz PORTDOCS= BUGS CREDITS ChangeLog README TODO UPGRADING faq.html OPTIONS_DEFINE= DOCS do-install: ${INSTALL_SCRIPT} ${WRKSRC}/makefaq.py ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/makefaq.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/makefaq.1 ${STAGEDIR}${PREFIX}/share/man/man1 do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} diff --git a/textproc/rand/Makefile b/textproc/rand/Makefile index 5e9acdd64726..871167e81283 100644 --- a/textproc/rand/Makefile +++ b/textproc/rand/Makefile @@ -1,6 +1,6 @@ PORTNAME= rand PORTVERSION= 1.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc MASTER_SITES= http://bzflag.bz/~erik/files/ \ http://elfga.com/~erik/files/ @@ -14,13 +14,13 @@ LICENSE= GPLv2 USES= gmake GNU_CONFIGURE= yes -PLIST_FILES= bin/rand man/man1/rand.1.gz +PLIST_FILES= bin/rand share/man/man1/rand.1.gz post-patch: @${REINPLACE_CMD} -e 's|}-R|}-L|g' ${WRKSRC}/configure do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/rand ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/docs/rand.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/docs/rand.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include <bsd.port.mk> diff --git a/textproc/s5/Makefile b/textproc/s5/Makefile index bf98d8b11a38..9cc68df96668 100644 --- a/textproc/s5/Makefile +++ b/textproc/s5/Makefile @@ -1,6 +1,6 @@ PORTNAME= s5 PORTVERSION= 1.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= http://meyerweb.com/eric/tools/s5/v/${PORTVERSION}/ DISTNAME= ${PORTNAME}-${PORTVERSION:S/.//g} @@ -33,6 +33,6 @@ do-install: @(cd ${WRKSRC} && \ ${COPYTREE_SHARE} "*.html ${S5_SUBDIRS}" ${STAGEDIR}${S5_DIR}) ${INSTALL_SCRIPT} ${WRKDIR}/s5 ${STAGEDIR}${PREFIX}/bin/s5 - ${INSTALL_MAN} ${WRKDIR}/s5.1 ${STAGEDIR}${MANPREFIX}/man/man1/s5.1 + ${INSTALL_MAN} ${WRKDIR}/s5.1 ${STAGEDIR}${PREFIX}/share/man/man1/s5.1 .include <bsd.port.mk> diff --git a/textproc/s5/pkg-plist b/textproc/s5/pkg-plist index 55f6110d844b..79d39313d6d6 100644 --- a/textproc/s5/pkg-plist +++ b/textproc/s5/pkg-plist @@ -58,4 +58,4 @@ bin/s5 %%DATADIR%%/s5-blank/ui/default/s5-core.css %%DATADIR%%/s5-blank/ui/default/slides.css %%DATADIR%%/s5-blank/ui/default/slides.js -man/man1/s5.1.gz +share/man/man1/s5.1.gz diff --git a/textproc/sphinxsearch/Makefile b/textproc/sphinxsearch/Makefile index 60fbebefb778..0e17d2526f96 100644 --- a/textproc/sphinxsearch/Makefile +++ b/textproc/sphinxsearch/Makefile @@ -4,7 +4,7 @@ PORTNAME= sphinxsearch PORTVERSION= 2.2.11 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= textproc databases MASTER_SITES= http://sphinxsearch.com/files/ \ http://snowball.tartarus.org/dist/:libstemmer @@ -154,10 +154,10 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/searchd ${STAGEDIR}${PREFIX}/sbin/searchd ${INSTALL_DATA} ${WRKSRC}/sphinx.conf.dist ${STAGEDIR}${CFGFILE}.sample .for man in ${MAN1SRC} - ${INSTALL_MAN} ${DOCSRC}/${man} ${STAGEDIR}${MANPREFIX}/man/man1/${man} + ${INSTALL_MAN} ${DOCSRC}/${man} ${STAGEDIR}${PREFIX}/share/man/man1/${man} .endfor .for man in ${MAN8SRC} - ${INSTALL_MAN} ${DOCSRC}/${man} ${STAGEDIR}${MANPREFIX}/man/man8/${man} + ${INSTALL_MAN} ${DOCSRC}/${man} ${STAGEDIR}${PREFIX}/share/man/man8/${man} .endfor do-install-DOCS-on: diff --git a/textproc/sphinxsearch/pkg-plist b/textproc/sphinxsearch/pkg-plist index 45fc5a0467ca..aa5effb020ae 100644 --- a/textproc/sphinxsearch/pkg-plist +++ b/textproc/sphinxsearch/pkg-plist @@ -3,10 +3,10 @@ bin/indextool bin/spelldump bin/wordbreaker @sample etc/sphinx.conf.sample -man/man1/indexer.1.gz -man/man1/indextool.1.gz -man/man1/spelldump.1.gz -man/man8/searchd.8.gz +share/man/man1/indexer.1.gz +share/man/man1/indextool.1.gz +share/man/man1/spelldump.1.gz +share/man/man8/searchd.8.gz sbin/searchd %%PORTDOCS%%%%DOCSDIR%%/sphinx-min.conf.dist %%PORTDOCS%%%%DOCSDIR%%/sphinx.css diff --git a/textproc/svn2cl/Makefile b/textproc/svn2cl/Makefile index dd3da4b2718a..beb3afc3f76b 100644 --- a/textproc/svn2cl/Makefile +++ b/textproc/svn2cl/Makefile @@ -1,5 +1,6 @@ PORTNAME= svn2cl PORTVERSION= 0.14 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= http://arthurdejong.org/svn2cl/ @@ -21,7 +22,7 @@ post-patch: do-install: ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.sh ${STAGEDIR}${PREFIX}/bin/${PORTNAME} - ${INSTALL_MAN} ${WRKSRC}/svn2cl.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/svn2cl.1 ${STAGEDIR}${PREFIX}/share/man/man1 @${MKDIR} ${STAGEDIR}${DATADIR} .for i in ${DATAFILES} ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DATADIR} diff --git a/textproc/svn2cl/pkg-plist b/textproc/svn2cl/pkg-plist index c65a83c220a1..31aa863dd22d 100644 --- a/textproc/svn2cl/pkg-plist +++ b/textproc/svn2cl/pkg-plist @@ -1,5 +1,5 @@ bin/svn2cl -man/man1/svn2cl.1.gz +share/man/man1/svn2cl.1.gz %%DATADIR%%/authors.xml %%DATADIR%%/svn2cl.xsl %%DATADIR%%/svn2html.css diff --git a/textproc/unroff/Makefile b/textproc/unroff/Makefile index 4c5639d19593..35e33ce250fd 100644 --- a/textproc/unroff/Makefile +++ b/textproc/unroff/Makefile @@ -32,7 +32,7 @@ OPTIONS_DEFINE= DOCS do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/unroff ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/doc/*.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/doc/*.1 ${STAGEDIR}${PREFIX}/share/man/man1 @${MKDIR} ${STAGEDIR}${DATADIR}/misc .for i in doc/tmac.hyper misc/sample.unroff ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DATADIR}/misc diff --git a/textproc/unroff/pkg-plist b/textproc/unroff/pkg-plist index afdef34f03d5..29570e05486e 100644 --- a/textproc/unroff/pkg-plist +++ b/textproc/unroff/pkg-plist @@ -1,9 +1,9 @@ bin/unroff -man/man1/unroff-html-man.1.gz -man/man1/unroff-html-me.1.gz -man/man1/unroff-html-ms.1.gz -man/man1/unroff-html.1.gz -man/man1/unroff.1.gz +share/man/man1/unroff-html-man.1.gz +share/man/man1/unroff-html-me.1.gz +share/man/man1/unroff-html-ms.1.gz +share/man/man1/unroff-html.1.gz +share/man/man1/unroff.1.gz %%PORTDOCS%%%%DOCSDIR%%/manual.ms %%DATADIR%%/misc/sample.unroff %%DATADIR%%/misc/tmac.hyper diff --git a/textproc/y2l/Makefile b/textproc/y2l/Makefile index aa4dc1762526..b0eccad60516 100644 --- a/textproc/y2l/Makefile +++ b/textproc/y2l/Makefile @@ -1,5 +1,6 @@ PORTNAME= y2l PORTVERSION= 1.2 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= SF @@ -9,10 +10,10 @@ WWW= http://www.alchar.org/~aedil/Projects/y2l.html NO_BUILD= yes -PLIST_FILES= bin/y2l man/man1/y2l.1.gz +PLIST_FILES= bin/y2l share/man/man1/y2l.1.gz do-install: ${INSTALL_SCRIPT} ${WRKSRC}/y2l ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/y2l.man ${STAGEDIR}${MANPREFIX}/man/man1/y2l.1 + ${INSTALL_MAN} ${WRKSRC}/y2l.man ${STAGEDIR}${PREFIX}/share/man/man1/y2l.1 .include <bsd.port.mk> diff --git a/vietnamese/vnconvert/Makefile b/vietnamese/vnconvert/Makefile index 7ab6714ce6cf..33cc142a561b 100644 --- a/vietnamese/vnconvert/Makefile +++ b/vietnamese/vnconvert/Makefile @@ -1,6 +1,6 @@ PORTNAME= vnconvert PORTVERSION= 1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= vietnamese MASTER_SITES= LOCAL/obrien DISTNAME= convert @@ -13,10 +13,10 @@ NO_WRKSUBDIR= yes MAKEFILE= makefile ALL_TARGET= -PLIST_FILES= bin/vnconvert man/man1/vnconvert.1.gz +PLIST_FILES= bin/vnconvert share/man/man1/vnconvert.1.gz do-install: ${INSTALL_PROGRAM} ${WRKSRC}/vnconvert ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${FILESDIR}/vnconvert.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${FILESDIR}/vnconvert.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include <bsd.port.mk> |