summaryrefslogtreecommitdiff
path: root/games/amor
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 /games/amor
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 'games/amor')
-rw-r--r--games/amor/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/games/amor/Makefile b/games/amor/Makefile
index 3af880869cc..25a8cae420a 100644
--- a/games/amor/Makefile
+++ b/games/amor/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2000/07/14 16:04:21 agc Exp $
+# $NetBSD: Makefile,v 1.8 2000/07/15 20:39:17 agc Exp $
#
DISTNAME= amor-0.6
@@ -13,7 +13,9 @@ DEPENDS+= kdebase-1.1.2:../../x11/kdebase
USE_X11BASE= yes # To get this near KDE
GNU_CONFIGURE= yes
-CONFIGURE_ENV+= QTDIR=`${SHOW_PREFIX1} qt1 ${SHOW_PREFIX2}`/qt1
-CONFIGURE_ARGS+=--with-qt-dir=`${SHOW_PREFIX1} qt1 ${SHOW_PREFIX2}`/qt1
+
+EVAL_PREFIX+= QT1DIR=qt1
+CONFIGURE_ENV+= QTDIR=${QT1DIR}/qt1
+CONFIGURE_ARGS+=--with-qt-dir=${QT1DIR}/qt1
.include "../../mk/bsd.pkg.mk"