diff options
author | hauke <hauke> | 2007-08-29 13:52:43 +0000 |
---|---|---|
committer | hauke <hauke> | 2007-08-29 13:52:43 +0000 |
commit | 5e9fd63b8d264742d23a3e459fc4cdb83d30773e (patch) | |
tree | cd2f8a20c816037aa6b67be11cc95e8a5d0c501f /sysutils/radmind | |
parent | 2a0429015dfff8a24112aa4aeafa945b503a4ffa (diff) | |
download | pkgsrc-5e9fd63b8d264742d23a3e459fc4cdb83d30773e.tar.gz |
The package's configure script inserts echo(1) with full path into
ra.sh, which is the buildlinked tool unless we provide the correct
value. The configure script allows to tweak {echo_path} from the
environment, but wants to see a full path in that variable, which is
why we have to set {ac_cv_path_echopath} here.
Remove the USE_TOOLS setting, since both are already added according
to 'make show-vars VARNAMES=USE_TOOLS'.
Diffstat (limited to 'sysutils/radmind')
-rw-r--r-- | sysutils/radmind/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sysutils/radmind/Makefile b/sysutils/radmind/Makefile index 1cef47cc50f..90c610c4afe 100644 --- a/sysutils/radmind/Makefile +++ b/sysutils/radmind/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.14 2007/08/23 14:10:29 hauke Exp $ +# $NetBSD: Makefile,v 1.15 2007/08/29 13:52:43 hauke Exp $ # DISTNAME= radmind-1.9.0 +PKGREVISION= 1 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=radmind/} @@ -13,7 +14,9 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-openssl=${BUILDLINK_PREFIX.openssl} CONFIGURE_ARGS+= --with-radminddir=${RADMINDDIR} CONFIGURE_ENV+= diffpath=${TOOLS_DIFF:Q} -USE_TOOLS+= diff +# XXX configure script checks for path to echo, which pkgsrc does not +# provide, so we need to side-step {echopath}. +CONFIGURE_ENV+= ac_cv_path_echopath=${TOOLS_ECHO:Q} BUILD_TARGET= all man rash RADMINDDIR= ${VARBASE}/radmind |