diff options
author | theraven <theraven@FreeBSD.org> | 2015-09-19 18:33:34 +0800 |
---|---|---|
committer | theraven <theraven@FreeBSD.org> | 2015-09-19 18:33:34 +0800 |
commit | f410eb77efeec7636a0a08f7330d4821a1bcd4d0 (patch) | |
tree | da5a3eeed8b9041e9805decaee1098282defef37 /deskutils/toolboxkit | |
parent | 1659ce0cba407df928696251d75c6308bec3077b (diff) | |
download | freebsd-ports-gnome-f410eb77efeec7636a0a08f7330d4821a1bcd4d0.tar.gz freebsd-ports-gnome-f410eb77efeec7636a0a08f7330d4821a1bcd4d0.tar.zst freebsd-ports-gnome-f410eb77efeec7636a0a08f7330d4821a1bcd4d0.zip |
Make all GNUstep ports install into the System domain so that the Local domain is available for stuff built from source.
Some ports were already installing in the System domain, for these just remove the Makefile lines explicitly specifying the install domain.
The rest are installed in the Local domain, remove any overrides, update their pkg-plists and any explicit paths in the Makefiles and then bump port revision.
Approved by: bapt (mentor)
Differential Revision: https://reviews.freebsd.org/D2977
Diffstat (limited to 'deskutils/toolboxkit')
-rw-r--r-- | deskutils/toolboxkit/Makefile | 4 | ||||
-rw-r--r-- | deskutils/toolboxkit/pkg-plist | 12 |
2 files changed, 8 insertions, 8 deletions
diff --git a/deskutils/toolboxkit/Makefile b/deskutils/toolboxkit/Makefile index 04f72016247e..5cca5a4c3c8c 100644 --- a/deskutils/toolboxkit/Makefile +++ b/deskutils/toolboxkit/Makefile @@ -2,7 +2,7 @@ PORTNAME= toolbox PORTVERSION= 0.8 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= deskutils gnustep MASTER_SITES= http://ftp.azc.uam.mx/mirrors/gnu/savannah/files/toolbox/Release.pkg/0.8/ \ LOCAL/dinoex @@ -21,6 +21,6 @@ USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} WRKSRC= ${WRKDIR}/Toolbox/Toolbox post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/Local/Library/Libraries/libToolbox.so + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Libraries/libToolbox.so .include <bsd.port.mk> diff --git a/deskutils/toolboxkit/pkg-plist b/deskutils/toolboxkit/pkg-plist index be9c69ec77cf..f141f3ee1f3e 100644 --- a/deskutils/toolboxkit/pkg-plist +++ b/deskutils/toolboxkit/pkg-plist @@ -1,6 +1,6 @@ -GNUstep/Local/Library/Headers/Toolbox/BundleLoader.h -GNUstep/Local/Library/Headers/Toolbox/ToolboxBundleProtocol.h -GNUstep/Local/Library/Headers/Toolbox/Utilities.h -GNUstep/Local/Library/Libraries/libToolbox.so -GNUstep/Local/Library/Libraries/libToolbox.so.%%MAJORLIBVERSION%% -GNUstep/Local/Library/Libraries/libToolbox.so.%%LIBVERSION%% +GNUstep/System/Library/Headers/Toolbox/BundleLoader.h +GNUstep/System/Library/Headers/Toolbox/ToolboxBundleProtocol.h +GNUstep/System/Library/Headers/Toolbox/Utilities.h +GNUstep/System/Library/Libraries/libToolbox.so +GNUstep/System/Library/Libraries/libToolbox.so.%%MAJORLIBVERSION%% +GNUstep/System/Library/Libraries/libToolbox.so.%%LIBVERSION%% |