diff options
author | jkh <jkh@FreeBSD.org> | 1997-08-26 00:40:13 +0800 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1997-08-26 00:40:13 +0800 |
commit | 09118ceef35c56df4cfa01087f9e11834c933784 (patch) | |
tree | 7ec246f7b6a38f28b8d98115ea505c3cba0863a4 /x11-toolkits/tk80 | |
parent | 912da3aa53ee35095c93a3345dc9e13962408673 (diff) | |
download | freebsd-ports-gnome-09118ceef35c56df4cfa01087f9e11834c933784.tar.gz freebsd-ports-gnome-09118ceef35c56df4cfa01087f9e11834c933784.tar.zst freebsd-ports-gnome-09118ceef35c56df4cfa01087f9e11834c933784.zip |
Simplify BUILD_DEPENDS
Submitted by: asami
Diffstat (limited to 'x11-toolkits/tk80')
-rw-r--r-- | x11-toolkits/tk80/Makefile | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/x11-toolkits/tk80/Makefile b/x11-toolkits/tk80/Makefile index 946170ababf6..80003271893a 100644 --- a/x11-toolkits/tk80/Makefile +++ b/x11-toolkits/tk80/Makefile @@ -3,7 +3,7 @@ # Date created: 19 August 1997 # Whom: jkh # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1997/08/20 19:59:59 jkh Exp $ # DISTNAME= tk8.0 @@ -14,24 +14,13 @@ MASTER_SITES= ftp://ftp.sunlabs.com/pub/tcl/ MAINTAINER= jkh@Freebsd.ORG LIB_DEPENDS= tcl80\\.1\\.:${PORTSDIR}/lang/tcl80 +BUILD_DEPENDS= /nonexistent:${PORTSDIR}/lang/tcl80:configure WRKSRC= ${WRKDIR}/${DISTNAME}/unix GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-shared CONFIGURE_ENV= PORTSDIR=${PORTSDIR} -# This is totally vile and gross, but using something like BUILD_DEPENDS -# instead for this would cause a gratuitous rebuild/reinstall for what is -# really one of those "I just need some of your bits" cases." -pre-configure: - @if [ ! -d ${PORTSDIR}/lang/tcl80 ]; then \ - echo "Sorry, this port only works when ${PORTSDIR}/lang/tcl80 is also"; \ - echo "available. Please correct this problem and try again."; \ - exit 1; \ - fi - @echo Unpacking and configuring tcl80 sources... - @cd ${PORTSDIR}/lang/tcl80 && make configure ECHO_MSG="echo >/dev/null" - post-install: ${LDCONFIG} -m ${PREFIX}/lib |