diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-02-21 17:07:49 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-02-21 17:07:49 +0000 |
commit | b0a4922be975b041a8c5225b40324e37863706aa (patch) | |
tree | 154a4f7760b14e29a6143788f94df090a6eb2dc9 /net-mgmt/scotty3/Makefile | |
parent | 0c494b31d5bc9617b2b8e047a1011fc2edbe7c8d (diff) | |
download | ports-b0a4922be975b041a8c5225b40324e37863706aa.tar.gz ports-b0a4922be975b041a8c5225b40324e37863706aa.zip |
Notes
Diffstat (limited to 'net-mgmt/scotty3/Makefile')
-rw-r--r-- | net-mgmt/scotty3/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/net-mgmt/scotty3/Makefile b/net-mgmt/scotty3/Makefile new file mode 100644 index 000000000000..31dc8ef9e76c --- /dev/null +++ b/net-mgmt/scotty3/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: scotty +# Version required: 1.2.0 +# Date created: 18 Februar 1995 +# Whom: gena +# +# $Id: Makefile,v 1.0 1995/02/18 13:41:00 gena Exp $ +# + +DISTNAME= scotty-1.2.0 +DISTFILES= scotty-1.2.0.tar.gz scotty-1.2.0-1.2.1.diff.gz \ + scotty-1.2.1-1.2.2.diff.gz + +EXTRACT_ONLY= scotty-1.2.0.tar.gz +MASTER_SITES= ftp://ftp.ibr.cs.tu-bs.de/pub/local/tkined/ +HAS_CONFIGURE= yes +GNU_CONFIGURE= yes +USE_GMAKE= yes +LIB_DEPENDS= tk\\.3\\.:${PORTSDIR}/x11/tk \ + tclx\\.a:${PORTSDIR}/lang/tclX \ + tcl\\.7\\.:${PORTSDIR}/lang/tcl +CONFIGURE_ARGS= --with-x --prefix=${PREFIX} --with-tcl-include=${PORTSDIR}/lang/tcl/work/tcl7.3 --with-tcl-library=${PORTSDIR}/lang/tcl/work/tcl7.3 --with-tk-include=${PORTSDIR}/x11/tk/work/tk3.6 --with-tk-library=${PORTSDIR}/x11/tk/work/tk3.6 --with-blt-library=${PORTSDIR}/lang/tclX/work/tclX7.3b/tclmaster/lib + +pre-patch: + @echo "===> Pre-patching for ${DISTNAME}" + @if [ ! -f ${CONFIGURE_COOKIE} ]; then \ + ln -s ${WRKSRC} ${WRKDIR}/scotty-1.2.1; \ + ln -s ${WRKSRC} ${WRKDIR}/scotty-1.2.2; \ + zcat ${DISTDIR}/scotty-1.2.0-1.2.1.diff.gz | \ + patch --quiet -E -p0 -d ${WRKDIR}; \ + zcat ${DISTDIR}/scotty-1.2.1-1.2.2.diff.gz | \ + patch --quiet -E -p0 -d ${WRKDIR}; \ + rm -f ${WRKDIR}/scotty-1.2.1; \ + rm -f ${WRKDIR}/scotty-1.2.2; \ + fi + +pre-install: + @echo "===> Pre-installing for ${DISTNAME}" + @cd ${WRKSRC};make sinstall + +.include <bsd.port.mk> |