diff options
author | jmmv <jmmv> | 2005-03-20 11:55:26 +0000 |
---|---|---|
committer | jmmv <jmmv> | 2005-03-20 11:55:26 +0000 |
commit | 251bfadc41443cc5db351a99b4a5e06f5be04ea6 (patch) | |
tree | 7417b09e4945c6ddd23e86285bbd7fa52b317443 /emulators/simh | |
parent | a5a529dd72ef970b1dd9214c1b1c88be94a43bff (diff) | |
download | pkgsrc-251bfadc41443cc5db351a99b4a5e06f5be04ea6.tar.gz |
Require libpcap>=0.6: fixes build under NetBSD 2.x and systems which don't
have libpcap in their base installation.
Diffstat (limited to 'emulators/simh')
-rw-r--r-- | emulators/simh/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/emulators/simh/Makefile b/emulators/simh/Makefile index cefc7ab1af6..4d3feadf551 100644 --- a/emulators/simh/Makefile +++ b/emulators/simh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2004/12/22 21:07:01 skrll Exp $ +# $NetBSD: Makefile,v 1.19 2005/03/20 11:55:26 jmmv Exp $ # DISTNAME= simhv33-0 @@ -12,7 +12,10 @@ MAINTAINER= tech-pkg@NetBSD.org HOMEPAGE= http://simh.trailing-edge.com/ COMMENT= Bob Supnik's historical computer simulator +BUILDLINK_DEPENDS.libpcap+= libpcap>=0.6 + EXTRACT_CMD= unzip -aoq ${DOWNLOADED_DISTFILE} +USE_BUILDLINK3= yes WRKSRC= ${WRKDIR} .include "../../mk/bsd.prefs.mk" @@ -38,4 +41,5 @@ do-install: ${INSTALL_DATA} $$TXT ${PREFIX}/share/doc/simh; \ done) +.include "../../net/libpcap/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |