git: 5776aaba37ad - main - devel/upp: Sanitize MANPREFIX
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 21 Jan 2024 15:27:24 UTC
The branch main has been updated by bofh:
URL: https://cgit.FreeBSD.org/ports/commit/?id=5776aaba37ad05a3813339afc281e410c7616120
commit 5776aaba37ad05a3813339afc281e410c7616120
Author: Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2024-01-21 14:37:05 +0000
Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org>
CommitDate: 2024-01-21 15:26:53 +0000
devel/upp: Sanitize MANPREFIX
Approved by: portmgr (blanket)
---
devel/upp/Makefile | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/devel/upp/Makefile b/devel/upp/Makefile
index 34d17052a5ea..7e36395f7521 100644
--- a/devel/upp/Makefile
+++ b/devel/upp/Makefile
@@ -37,13 +37,13 @@ IDE_LIB_DEPENDS= libfreetype.so:print/freetype2 \
libfontconfig.so:x11-fonts/fontconfig \
libnotify.so:devel/libnotify \
libpng.so:graphics/png
-IDE_PLIST_FILES= bin/theide ${MANPREFIX}/man/man1/theide.1.gz
+IDE_PLIST_FILES= bin/theide ${PREFIX}/share/man/man1/theide.1.gz
IDE_USES= gnome xorg
IDE_USE= XORG=x11 GNOME=cairo,gdkpixbuf2,gtk30
UDC_DESC= Install spelling dictionaries (*.udc files)
UDC_VARS= PORTDATA+=*.udc
UMK_DESC= Build/install UMK (U++ MaKe command line utility)
-UMK_PLIST_FILES= bin/umk ${MANPREFIX}/man/man1/umk.1.gz
+UMK_PLIST_FILES= bin/umk ${PREFIX}/share/man/man1/umk.1.gz
USEMALLOC_DESC= Compile without U++ heap allocator
USEMALLOC_VARS= MACRO_FLAGS+=-DflagUSEMALLOC
# SDL/OPENGL/MYSQL/PGSQL dependencies are only for run-time for use by executables built by the IDE
@@ -104,10 +104,10 @@ do-install:
do-install-IDE-on:
${INSTALL_PROGRAM} ${WRKSRC}/theide ${STAGEDIR}${PREFIX}/bin
- ${INSTALL_MAN} ${WRKSRC}/uppsrc/ide/theide.1 ${STAGEDIR}${MANPREFIX}/man/man1
+ ${INSTALL_MAN} ${WRKSRC}/uppsrc/ide/theide.1 ${STAGEDIR}${PREFIX}/share/man/man1
do-install-UMK-on:
${INSTALL_PROGRAM} ${WRKSRC}/umk ${STAGEDIR}${PREFIX}/bin
- ${INSTALL_MAN} ${WRKSRC}/uppsrc/umk/umk.1 ${STAGEDIR}${MANPREFIX}/man/man1
+ ${INSTALL_MAN} ${WRKSRC}/uppsrc/umk/umk.1 ${STAGEDIR}${PREFIX}/share/man/man1
.include <bsd.port.post.mk>