diff options
author | grant <grant@pkgsrc.org> | 2005-07-07 02:04:11 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2005-07-07 02:04:11 +0000 |
commit | 5ecf1134509712a62c543b8e45c72c5153339e9c (patch) | |
tree | acdee7da25a21bb3266e68850a7142ee56b425e2 /net | |
parent | d7b08ff1837f6dee4faad974e6e6f47687a9dbfb (diff) | |
download | pkgsrc-5ecf1134509712a62c543b8e45c72c5153339e9c.tar.gz |
- use buildlink3 instead of DEPENDS and BUILDLINK_PREFIX in
CONFIGURE_ARGS
- expose hidden dependencies on libpcap and tcl
- bump PKGREVISION for dependency change
Diffstat (limited to 'net')
-rw-r--r-- | net/tcpillust/Makefile | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/net/tcpillust/Makefile b/net/tcpillust/Makefile index dfd6771933f..ed55ca2e203 100644 --- a/net/tcpillust/Makefile +++ b/net/tcpillust/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.12 2005/03/24 21:12:59 wiz Exp $ +# $NetBSD: Makefile,v 1.13 2005/07/07 02:04:11 grant Exp $ DISTNAME= tcpillust-1.0a -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= net MASTER_SITES= ftp://ftp.csl.sony.co.jp/CSL/nishida/ @@ -9,18 +9,16 @@ MAINTAINER= tech-pkg@NetBSD.org HOMEPAGE= http://www.csl.sony.co.jp/person/nishida/tcpillust.html COMMENT= Graphical TCP connection analysis tool -DEPENDS+= tk>=8.3.2:../../x11/tk83 - USE_IMAKE= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--with-tcl-include=${LOCALBASE}/include \ - --with-tk-include=${LOCALBASE}/include \ - --with-tcl-lib=${LOCALBASE}/lib \ - --with-tk-lib=${LOCALBASE}/lib -DOCS= README +CONFIGURE_ARGS+=--with-tcl-include=${BUILDLINK_PREFIX.tcl}/include +CONFIGURE_ARGS+=--with-tcl-lib=${BUILDLINK_PREFIX.tcl}/lib +CONFIGURE_ARGS+=--with-tk-include=${BUILDLINK_PREFIX.tk}/include +CONFIGURE_ARGS+=--with-tk-lib=${BUILDLINK_PREFIX.tk}/lib -SAMPLES= tcpclient.log tcpserver.log +DOCS= README +SAMPLES= tcpclient.log tcpserver.log post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/tcpillust @@ -32,4 +30,7 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/sample/$$i ${PREFIX}/share/doc/tcpillust/sample; \ done +.include "../../lang/tcl83/buildlink3.mk" +.include "../../net/libpcap/buildlink3.mk" +.include "../../lang/tcl83/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |