diff options
author | jlam <jlam@pkgsrc.org> | 2007-08-23 18:20:30 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2007-08-23 18:20:30 +0000 |
commit | 081c0f895704db5ee92950c14036f96033fb55fd (patch) | |
tree | c6706bd84a98810ed13e7d11701dcd7444995ccb /multimedia/libflashsupport/Makefile | |
parent | 4fd552cb21dfeb2898d90d53d46868981644b7c9 (diff) | |
download | pkgsrc-081c0f895704db5ee92950c14036f96033fb55fd.tar.gz |
Allow a nicer syntax for expressing needing at least a certain version
of an emulated operating system. Instead of proliferating things like
SUSE_VERSION_REQD, NETBSD_VERSION_REQD, SOLARIS_VERSION_REQD, etc., a
package can say:
EMUL_REQD= suse>=9.1 netbsd>=2.0 solaris>=10
all in one, succinct line.
Diffstat (limited to 'multimedia/libflashsupport/Makefile')
-rw-r--r-- | multimedia/libflashsupport/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/multimedia/libflashsupport/Makefile b/multimedia/libflashsupport/Makefile index b0963ab621f..135887b3c49 100644 --- a/multimedia/libflashsupport/Makefile +++ b/multimedia/libflashsupport/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2007/07/29 05:19:45 jlam Exp $ +# $NetBSD: Makefile,v 1.7 2007/08/23 18:20:33 jlam Exp $ PKGNAME= libflashsupport-1.0.2098 DISTNAME= libflashsupport-1-0-2098-i586 @@ -13,7 +13,7 @@ COMMENT= Additional Interface Support for Linux Flash Player EMUL_PLATFORMS= linux-i386 EMUL_MODULES.linux= base openssl -SUSE_VERSION_REQD= 9.1 +EMUL_REQD= suse>=9.1 EMUL_PKG_FMT= rpm RPM2PKG_STRIP= 3 |