summaryrefslogtreecommitdiff
path: root/converters
diff options
context:
space:
mode:
authoragc <agc>2000-07-15 20:39:13 +0000
committeragc <agc>2000-07-15 20:39:13 +0000
commit2e47c2f37e9c8e19fbffffeab1f56ce32e02d121 (patch)
tree16d493248b3dac046feba96b3b2a8fb8abcc8be3 /converters
parent820a71a77a3d89ccc6a901be882dcc2ebe3a5d26 (diff)
downloadpkgsrc-2e47c2f37e9c8e19fbffffeab1f56ce32e02d121.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 'converters')
-rw-r--r--converters/kdesupport/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/converters/kdesupport/Makefile b/converters/kdesupport/Makefile
index 27090cb382b..3bfcc4b6e79 100644
--- a/converters/kdesupport/Makefile
+++ b/converters/kdesupport/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.31 2000/07/14 16:04:20 agc Exp $
+# $NetBSD: Makefile,v 1.32 2000/07/15 20:39:16 agc Exp $
# FreeBSD Id: Makefile,v 1.2 1997/11/05 04:19:46 asami Exp
#
@@ -13,12 +13,14 @@ HOMEPAGE= http://www.kde.org/
USE_PKGLIBTOOL= yes
GNU_CONFIGURE= yes
+
+EVAL_PREFIX+= QT1DIR=qt1
CONFIGURE_ARGS= "--without-gnu-ld" \
"--without-libjpeg" \
"--without-libgif" \
"--without-libgdbm" \
"--without-libuulib" \
"--without-sprite-field" \
- "--with-qt-dir=`${SHOW_PREFIX1} qt1 ${SHOW_PREFIX2}`/qt1"
+ "--with-qt-dir=${QT1DIR}/qt1"
.include "../../mk/bsd.pkg.mk"