summaryrefslogtreecommitdiff
path: root/x11-toolkits/tk84/Makefile
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1997-08-20 20:00:00 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1997-08-20 20:00:00 +0000
commit789a9ef24456434326bd07c7d1c5ebf7a7e3fc43 (patch)
tree003d528d5fd59f9bc5133ed7907540b9b544bf07 /x11-toolkits/tk84/Makefile
parentUse tcl-7.6/tk-4.2. (diff)
This is the port of tk8.0 to go along with the tcl8.0 port.
Note that this requires the presence of the tcl port, e.g. it needs portions of the unpacked tcl distribution sources. Some unfortunate hackery for this was therefore required in the Makefile.
Notes
Notes: svn path=/head/; revision=7630
Diffstat (limited to 'x11-toolkits/tk84/Makefile')
-rw-r--r--x11-toolkits/tk84/Makefile41
1 files changed, 41 insertions, 0 deletions
diff --git a/x11-toolkits/tk84/Makefile b/x11-toolkits/tk84/Makefile
new file mode 100644
index 000000000000..946170ababf6
--- /dev/null
+++ b/x11-toolkits/tk84/Makefile
@@ -0,0 +1,41 @@
+# New ports collection makefile for: tk8.0
+# Version required: tk8.0
+# Date created: 19 August 1997
+# Whom: jkh
+#
+# $Id$
+#
+
+DISTNAME= tk8.0
+PKGNAME= tk-8.0
+CATEGORIES= x11
+MASTER_SITES= ftp://ftp.sunlabs.com/pub/tcl/
+
+MAINTAINER= jkh@Freebsd.ORG
+
+LIB_DEPENDS= tcl80\\.1\\.:${PORTSDIR}/lang/tcl80
+
+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
+
+test:
+ cd ${WRKSRC}; make test
+
+.include <bsd.port.mk>