diff options
author | dholland <dholland> | 2015-01-01 09:32:19 +0000 |
---|---|---|
committer | dholland <dholland> | 2015-01-01 09:32:19 +0000 |
commit | fd60c096b8af438b6eec4892ed62a17e31e9ec85 (patch) | |
tree | e8c66819e13b57cf56355abee6de8f8cd0e26534 /comms | |
parent | 65c01a75843a1e0e349e75999fb7e6de65390b8e (diff) | |
download | pkgsrc-fd60c096b8af438b6eec4892ed62a17e31e9ec85.tar.gz |
Since ONLY_FOR_PLATFORM and NOT_FOR_PLATFORM can be used together,
limit to NetBSD and then reject NetBSD-[0-3]*, instead of accepting
NetBSD-[4-9]*.
Diffstat (limited to 'comms')
-rw-r--r-- | comms/bthfp/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/comms/bthfp/Makefile b/comms/bthfp/Makefile index 76480996dc0..def6623b8af 100644 --- a/comms/bthfp/Makefile +++ b/comms/bthfp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2014/12/30 08:14:03 plunky Exp $ +# $NetBSD: Makefile,v 1.11 2015/01/01 09:32:19 dholland Exp $ DISTNAME= bthfp-0.1 PKGREVISION= 1 @@ -10,7 +10,8 @@ MAINTAINER= plunky@NetBSD.org COMMENT= Bluetooth Handsfree Profile LICENSE= modified-bsd -ONLY_FOR_PLATFORM= NetBSD-[4-9].*-* +ONLY_FOR_PLATFORM= NetBSD-*-* +NOT_FOR_PLATFORM= NetBSD-[0-3].*-* INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 |