diff options
author | dinoex <dinoex@FreeBSD.org> | 2006-01-19 20:06:14 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2006-01-19 20:06:14 +0800 |
commit | 6e7ac2e081c723705c073dc180c0de11185c7c68 (patch) | |
tree | 76cf5568816f24f0b77ea4582877fdbb260f204d /x11-toolkits | |
parent | 45f874a11c424e64a63cfbbbfcc34de68d6f3dfd (diff) | |
download | freebsd-ports-gnome-6e7ac2e081c723705c073dc180c0de11185c7c68.tar.gz freebsd-ports-gnome-6e7ac2e081c723705c073dc180c0de11185c7c68.tar.zst freebsd-ports-gnome-6e7ac2e081c723705c073dc180c0de11185c7c68.zip |
- new option GNUSTEP_PREFIX
allow user defined location of all files
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/gnustep-back/Makefile | 3 | ||||
-rw-r--r-- | x11-toolkits/gnustep-gui/Makefile | 3 | ||||
-rw-r--r-- | x11-toolkits/gtoolkit/Makefile | 5 |
3 files changed, 7 insertions, 4 deletions
diff --git a/x11-toolkits/gnustep-back/Makefile b/x11-toolkits/gnustep-back/Makefile index eefe9becbdb6..48f4a2873a8c 100644 --- a/x11-toolkits/gnustep-back/Makefile +++ b/x11-toolkits/gnustep-back/Makefile @@ -20,7 +20,8 @@ LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff LIB_DEPENDS+= Xft.2:${PORTSDIR}/x11-fonts/libXft USE_XLIB= yes -PREFIX= ${LOCALBASE}/GNUstep +GNUSTEP_PREFIX?= ${LOCALBASE}/GNUstep +PREFIX= ${GNUSTEP_PREFIX} NO_MTREE= yes GNU_CONFIGURE= yes CONFIGURE_TARGET= diff --git a/x11-toolkits/gnustep-gui/Makefile b/x11-toolkits/gnustep-gui/Makefile index d7fd650347cd..ca8081b8488c 100644 --- a/x11-toolkits/gnustep-gui/Makefile +++ b/x11-toolkits/gnustep-gui/Makefile @@ -21,7 +21,8 @@ LIB_DEPENDS+= audiofile.0:${PORTSDIR}/audio/libaudiofile LIB_DEPENDS+= ungif.5:${PORTSDIR}/graphics/libungif NOT_FOR_ARCHS= ia64 -PREFIX= ${LOCALBASE}/GNUstep +GNUSTEP_PREFIX?= ${LOCALBASE}/GNUstep +PREFIX= ${GNUSTEP_PREFIX} NO_MTREE= yes GNU_CONFIGURE= yes CONFIGURE_TARGET= diff --git a/x11-toolkits/gtoolkit/Makefile b/x11-toolkits/gtoolkit/Makefile index aa3d2ff78e19..347531444cc2 100644 --- a/x11-toolkits/gtoolkit/Makefile +++ b/x11-toolkits/gtoolkit/Makefile @@ -14,7 +14,8 @@ MASTER_SITES= ftp://ftp.inf.uos.de/pub/elmar/gtk/objc-gtoolkit/ MAINTAINER= dinoex@FreeBSD.org COMMENT= Obj-C wrapper for gtk, a x11 graphics library -PREFIX= ${LOCALBASE}/GNUstep +GNUSTEP_PREFIX?= ${LOCALBASE}/GNUstep +PREFIX= ${GNUSTEP_PREFIX} NO_MTREE= yes USE_GMAKE= yes USE_GNOME= gtk12 @@ -28,7 +29,7 @@ LDCONFIG_DIRS= ${LOCALLIBDIR} INSTALLS_SHLIB= yes USE_REINPLACE= yes -MAKE_ARGS+= GNUSTEP_SYSTEM_ROOT=${PREFIX}/System +MAKE_ARGS+= GNUSTEP_PREFIX=${PREFIX}/System CONFIGURE_ARGS+= --with-gnustep WRKSRC= ${WRKDIR}/${DISTNAME}/GToolKit CONFIGURE_WRKSRC= ${WRKDIR}/${DISTNAME} |