diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2024-01-10 09:15:44 +0100 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2024-01-10 09:16:01 +0100 |
commit | 1b819e486953bae191a4b8f0da175b55cb6c3070 (patch) | |
tree | a9eaa8ecd25eb764dc4e27a877027d0df0a52ac1 /editors/lazarus | |
parent | eadd5953495b96817fa81d9e0465583108ab227b (diff) | |
download | freebsd-ports-1b819e486953bae191a4b8f0da175b55cb6c3070.zip |
MAN?PREFIX: eleminate its usage and move man to share/man
Diffstat (limited to 'editors/lazarus')
-rw-r--r-- | editors/lazarus/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/lazarus/Makefile b/editors/lazarus/Makefile index 78b89d082342..9541be4b1d0d 100644 --- a/editors/lazarus/Makefile +++ b/editors/lazarus/Makefile @@ -1,7 +1,7 @@ PORTNAME= lazarus DISTVERSION= 3.0.0 PKGNAMESUFFIX?= -gtk2 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= editors devel DIST_SUBDIR= freepascal @@ -100,7 +100,7 @@ pre-install: @${ECHO_CMD} ${FILE} >> ${PLIST} . endfor . for m in ${MAN1S} - @${ECHO_CMD} man/man1/${m}.gz >> ${PLIST} + @${ECHO_CMD} share/man/man1/${m}.gz >> ${PLIST} . endfor @${ECHO_CMD} "%%DATADIR%%/docs" >> ${PLIST} @@ -174,7 +174,7 @@ do-install: ${INSTALL_SCRIPT} ${WRKDIR}/lazarus-wrapper ${STAGEDIR}${PREFIX}/bin/${PORTNAME} ${INSTALL_DATA} ${WRKSRC}/Makefile* ${WRKSRC}/fpmake* ${STAGEDIR}${DATADIR} .for FILE in ${MAN1S} - ${INSTALL_MAN} ${WRKDIR}/man1/${FILE} ${STAGEDIR}${MAN1PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKDIR}/man1/${FILE} ${STAGEDIR}${PREFIX}/share/man/man1 .endfor ${LN} -sf ${DATADIR}/lazbuild ${STAGEDIR}${PREFIX}/bin/lazbuild |