diff options
author | wiz <wiz> | 2004-08-31 15:35:42 +0000 |
---|---|---|
committer | wiz <wiz> | 2004-08-31 15:35:42 +0000 |
commit | d90278245b38e73ecf203ef9e670147619191c1c (patch) | |
tree | caaa5d806e9e27b5a14823147b9fe0993bb6ab6f | |
parent | 2614d78c00ffd14fb65accc22f8572686ac87824 (diff) | |
download | pkgsrc-d90278245b38e73ecf203ef9e670147619191c1c.tar.gz |
Add pthread bl3, and some NOT_FOR_PLATFORM lines
for older NetBSD releases, since this package needs the net80211/*.h header files.
Addresses PR 26814.
-rw-r--r-- | net/wimon/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/net/wimon/Makefile b/net/wimon/Makefile index 3353ebf572d..9294223240e 100644 --- a/net/wimon/Makefile +++ b/net/wimon/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2004/07/23 13:03:56 xtraeme Exp $ +# $NetBSD: Makefile,v 1.3 2004/08/31 15:35:42 wiz Exp $ # DISTNAME= wimon-0.3 @@ -12,6 +12,9 @@ COMMENT= Tool that shows a real-time graph of your wireless connection PKG_INSTALLATION_TYPES= overwrite pkgviews ONLY_FOR_PLATFORM= FreeBSD-*-* NetBSD-*-* OpenBSD-*-* +# Needs net80211/*.h header files which appeared in 1.6ZD. +NOT_FOR_PLATFORM= NetBSD-0* NetBSD-1.[012345]* NetBSD-1.6[-_.]* +NOT_FOR_PLATFORM+= NetBSD-1.6[A-Z]-* NetBSD-1.6Z[A-C]* WRKSRC= ${WRKDIR}/wimon USE_BUILDLINK3= yes @@ -23,4 +26,5 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/wimon.8 ${PREFIX}/man/man8 .include "../../devel/ncurses/buildlink3.mk" +.include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |