diff options
author | tg <tg@FreeBSD.org> | 1999-05-10 19:32:03 +0800 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 1999-05-10 19:32:03 +0800 |
commit | 0e6270df3e10b7fede20d366a9e3d6fba7f1dedb (patch) | |
tree | 8e5fd0ceeaae3ddfb9974bc9eff7a034599adc42 /x11-toolkits/gnustep-gui/Makefile | |
parent | 270d06cd430b09c738f125f1a2a14214da894618 (diff) | |
download | freebsd-ports-gnome-0e6270df3e10b7fede20d366a9e3d6fba7f1dedb.tar.gz freebsd-ports-gnome-0e6270df3e10b7fede20d366a9e3d6fba7f1dedb.tar.zst freebsd-ports-gnome-0e6270df3e10b7fede20d366a9e3d6fba7f1dedb.zip |
New port gnustep. GNUstep is a set of general-purpose Objective-C libraries
base on the OpenStep standard developed by NeXT (now Apple) Inc.
Diffstat (limited to 'x11-toolkits/gnustep-gui/Makefile')
-rw-r--r-- | x11-toolkits/gnustep-gui/Makefile | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/x11-toolkits/gnustep-gui/Makefile b/x11-toolkits/gnustep-gui/Makefile new file mode 100644 index 000000000000..cd04a664fc82 --- /dev/null +++ b/x11-toolkits/gnustep-gui/Makefile @@ -0,0 +1,53 @@ +# New ports collection makefile for: gnustep +# Version required: 0.5.5 +# Date created: 03 October 1998 +# Whom: Thomas Gellekum <tg@FreeBSD.ORG> +# +# $Id$ +# + +DISTNAME= gstep-core-0.5.5 +PKGNAME= gnustep-0.5.5 +CATEGORIES= devel +MASTER_SITES= ftp://ftp.gnustep.org/pub/gnustep/core/ \ + ftp://ftp.peanuts.org/Mirrors/GNUstep/gnustep/core/ + +MAINTAINER= ports@FreeBSD.ORG + +LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ + tiff.4:${PORTSDIR}/graphics/tiff34 + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 300000 +BROKEN= "Sorry, this port does not work on FreeBSD-2.2.x" +.elif ${OSVERSION} < 400000 +BUILD_DEPENDS= egcc:${PORTSDIR}/lang/egcs +RUN_DEPENDS= egcc:${PORTSDIR}/lang/egcs +.endif + +WRKSRC= ${WRKDIR}/gstep-0.5.5 +PREFIX= ${LOCALBASE}/GNUstep +GNU_CONFIGURE= yes +CONFIGURE_ENV= CC=egcc INSTALL_PROGRAM="install -c" INSTALL_DATA="install -c" +CONFIGURE_ARGS= --with-library-combo=gnu-gnu-gnu-xraw \ + --with-jpeg-library=${LOCALBASE}/lib \ + --with-jpeg-include=${LOCALBASE}/include \ + --with-tiff-library=${LOCALBASE}/lib \ + --with-tiff-include=${LOCALBASE}/include +USE_GMAKE= yes +MAKEFILE= +MAKE_FLAGS= OPTFLAG="${CFLAGS}" +NO_MTREE= yes + +GNUSTEPLIBDIR= ${PREFIX}/Libraries/ix86/freebsd3.1/gnu-gnu-gnu-xraw + +post-install: +.for lib in gmodel gnustep-base gnustep-gui gnustep-xraw + ${LN} -sf ${GNUSTEPLIBDIR}/lib${lib}.so ${LOCALBASE}/lib/lib${lib}.so + ${LN} -sf ${GNUSTEPLIBDIR}/lib${lib}.so.0.5.5 \ + ${LOCALBASE}/lib/lib${lib}.so.0.5.5 +.endfor + ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${LOCALBASE}/lib + +.include <bsd.port.post.mk> |