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 | 0d11eb0e0ab95a163c0854e82b5d49d9ebbc83ef (patch) | |
tree | c6706bd84a98810ed13e7d11701dcd7444995ccb /www/opera-plugins | |
parent | ba13ffd8b7deb3f5ad5e8e770dd44e5a06e24c1c (diff) | |
download | pkgsrc-0d11eb0e0ab95a163c0854e82b5d49d9ebbc83ef.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 'www/opera-plugins')
-rw-r--r-- | www/opera-plugins/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/opera-plugins/Makefile b/www/opera-plugins/Makefile index 54e8258bc49..add80e4c07c 100644 --- a/www/opera-plugins/Makefile +++ b/www/opera-plugins/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2007/07/29 05:20:00 jlam Exp $ +# $NetBSD: Makefile,v 1.14 2007/08/23 18:20:35 jlam Exp $ DISTNAME= opera-plugins-1.0 PKGREVISION= 1 @@ -15,7 +15,7 @@ DEPENDS+= ns-flash>=5.0.47:../../multimedia/ns-flash EMUL_PLATFORMS= linux-i386 EMUL_MODULES.linux= motif -SUSE_VERSION_REQD= 7.3 +EMUL_REQD= suse>=7.3 EXTRACT_ONLY= # empty NO_CHECKSUM= YES |