diff options
author | se <se@FreeBSD.org> | 1997-11-01 22:21:18 +0800 |
---|---|---|
committer | se <se@FreeBSD.org> | 1997-11-01 22:21:18 +0800 |
commit | 063e68c356476e20bb0fd33ccecaf27daada3f6f (patch) | |
tree | 402c6d5c5d66d2be1957b2b50b5e5971e2946342 /x11/kdelibs4/Makefile | |
parent | fe60f7d70111ab0f6fff63fb2d0d139643ef40e7 (diff) | |
download | freebsd-ports-gnome-063e68c356476e20bb0fd33ccecaf27daada3f6f.tar.gz freebsd-ports-gnome-063e68c356476e20bb0fd33ccecaf27daada3f6f.tar.zst freebsd-ports-gnome-063e68c356476e20bb0fd33ccecaf27daada3f6f.zip |
Initial port of the KDE support libraries. Required by all other parts of KDE.
The use of --x-inc and --x-lib to pass in multiple directories is a hack,
and should be replaced by a more robust approach. It works, but relies on
implementation details of the configure script.
Diffstat (limited to 'x11/kdelibs4/Makefile')
-rw-r--r-- | x11/kdelibs4/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/x11/kdelibs4/Makefile b/x11/kdelibs4/Makefile new file mode 100644 index 000000000000..6f61bf0f7e80 --- /dev/null +++ b/x11/kdelibs4/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: kdelibs +# Version required: Beta1 +# Date created: 28 October 1997 +# Whom: Stefan Eßer <se@freebsd.org> +# +# $Id:$ +# + +DISTNAME= kdelibs-Beta1-2 +CATEGORIES= x11 +MASTER_SITES= ftp://ftp.net.lut.ac.uk/kde/stable/Beta1/distribution/tgz/source/ \ + ftp://ftp.uni-erlangen.de/pub/Linux/MIRROR.KDE/stable/Beta1/distribution/tgz/source/ \ + ftp://ftp.caldera.com/pub/mirrors/kde/stable/Beta1/distribution/tgz/source/ +EXTRACT_SUFX= .src.tgz + +MAINTAINER= se@freebsd.org + +LIB_DEPENDS= qt\\.1\\.[0-9]:${PORTSDIR}/x11/qt \ + gif\\.[23]\\.:${PORTSDIR}/graphics/giflib \ + jpeg\\.6\\.:${PORTSDIR}/graphics/jpeg + +HAS_CONFIGURE= yes +CONFIGURE_ARGS= "--prefix=$(PREFIX)" \ + "--x-inc=$(X11BASE)/include -I$(PREFIX)/include -I$(PREFIX)/include/giflib" \ + "--x-lib=$(X11BASE)/lib -L$(PREFIX)/lib" \ + "--datadir=$(PREFIX)/share/kde" + +WRKSRC= ${WRKDIR}/kdelibs + +.include <bsd.port.mk> |