diff options
author | agc <agc> | 2000-07-15 20:39:13 +0000 |
---|---|---|
committer | agc <agc> | 2000-07-15 20:39:13 +0000 |
commit | 99e9734c1322552385b4029f09f3dc349f4a2510 (patch) | |
tree | 16d493248b3dac046feba96b3b2a8fb8abcc8be3 /devel/kdevelop | |
parent | 52fb06f2eeb47f6a33f713dd9a58a5743c6b314f (diff) | |
download | pkgsrc-99e9734c1322552385b4029f09f3dc349f4a2510.tar.gz |
Instead of the clunky SHOW_PKG_PREFIX, introduce an EVAL_PREFIX definition,
which takes entries of the format <make-definition-name>=<pkgname>. This
has not been added to MAKEFLAGS because (a) premature optimisation is the
root of all evil, and (b) because the .for loop used to implement this
shows the wrong results when multiple prefices are evaluated.
Modify all the package Makefiles to use EVAL_PREFIX, thereby simplifying
them considerably.
ALso simplify the logic to calculate the prefix as well.
Diffstat (limited to 'devel/kdevelop')
-rw-r--r-- | devel/kdevelop/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/devel/kdevelop/Makefile b/devel/kdevelop/Makefile index 18770158ec1..4aa3be5f4ad 100644 --- a/devel/kdevelop/Makefile +++ b/devel/kdevelop/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2000/07/14 16:04:21 agc Exp $ +# $NetBSD: Makefile,v 1.17 2000/07/15 20:39:17 agc Exp $ DISTNAME= kdevelop-1.2 CATEGORIES= devel kde @@ -20,11 +20,13 @@ USE_X11BASE= yes USE_GMAKE= yes USE_PKGLIBTOOL= yes GNU_CONFIGURE= yes + +EVAL_PREFIX+= QT1DIR=qt1 CONFIGURE_ARGS= --with-extra-includes=${LOCALBASE}/include \ --with-extra-libs=${LOCALBASE}/lib \ - --with-qt-dir=`${SHOW_PREFIX1} qt1 ${SHOW_PREFIX2}`/qt1 + --with-qt-dir=${QT1DIR}/qt1 CFLAGS+= -I${LOCALBASE}/include -CONFIGURE_ENV= "KDEDIR=${PREFIX} QTDIR=`${SHOW_PREFIX1} qt1 ${SHOW_PREFIX2}`/qt1" +CONFIGURE_ENV= "KDEDIR=${PREFIX} QTDIR=${QT1DIR}/qt1" .include "../../mk/bsd.pkg.mk" |