diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2003-04-13 08:12:48 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2003-04-13 08:12:48 +0000 |
commit | 60337424052721f4716374dbda595ce0abf20bf7 (patch) | |
tree | a76521d1802211f0914b8e5b07f0f39c203f689b /x11-toolkits | |
parent | - Use libobjc.so (diff) |
Slave port for gnustep-back
this creates the xdps backend (x-display-postscript)
set in /etc/make.conf
WANT_GNUSTEP_XDPS=yes
if you want all dependend ports linked aginst this.
Notes
Notes:
svn path=/head/; revision=78854
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/Makefile | 1 | ||||
-rw-r--r-- | x11-toolkits/gnustep-xdps/Makefile | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/x11-toolkits/Makefile b/x11-toolkits/Makefile index 70c92ddd7717..25841614b3e5 100644 --- a/x11-toolkits/Makefile +++ b/x11-toolkits/Makefile @@ -34,6 +34,7 @@ SUBDIR += gnome-themes SUBDIR += gnustep-back SUBDIR += gnustep-gui + SUBDIR += gnustep-xdps SUBDIR += gob SUBDIR += gtk-- SUBDIR += gtk--2 diff --git a/x11-toolkits/gnustep-xdps/Makefile b/x11-toolkits/gnustep-xdps/Makefile new file mode 100644 index 000000000000..5707ec381160 --- /dev/null +++ b/x11-toolkits/gnustep-xdps/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: gnustep-xdps +# Date created: 29.Mar.2003 +# Whom: dirk.meyer@dinoex.sub.org +# +# $FreeBSD$ +# + +CATEGORIES= x11-toolkits +PKGNAMESUFFIX= -xdps + +MAINTAINER= dinoex@FreeBSD.org + +WANT_GNUSTEP_XDPS= yes +MASTERDIR?= ${.CURDIR}/../gnustep-back + +.if exists(${.CURDIR}/Makefile.local) +.include "${.CURDIR}/Makefile.local" +.endif + +.include "${MASTERDIR}/Makefile" |