diff options
author | jlam <jlam> | 2007-08-23 18:20:30 +0000 |
---|---|---|
committer | jlam <jlam> | 2007-08-23 18:20:30 +0000 |
commit | 797811e459b3190957546edcfc131ce88f4ef0de (patch) | |
tree | c6706bd84a98810ed13e7d11701dcd7444995ccb /cad | |
parent | 179a20a1e99a6e9206629a0155103d2ff3d0bd6c (diff) | |
download | pkgsrc-797811e459b3190957546edcfc131ce88f4ef0de.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 'cad')
-rw-r--r-- | cad/lc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cad/lc/Makefile b/cad/lc/Makefile index 07b9bd461c9..136a92ff857 100644 --- a/cad/lc/Makefile +++ b/cad/lc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2007/07/29 05:18:37 jlam Exp $ +# $NetBSD: Makefile,v 1.11 2007/08/23 18:20:30 jlam Exp $ DISTNAME= lc # overridden below PKGNAME= lc-2.10 @@ -26,7 +26,7 @@ EMUL_PLATFORMS= irix-mipsel irix-mipsel64 EMUL_PLATFORMS+= linux-i386 linux-x86_64 EMUL_PLATFORMS+= solaris-sparc EMUL_MODULES.linux= motif x11 -SUSE_VERSION_REQD= 9.1 +EMUL_REQD= suse>=9.1 .include "../../mk/bsd.prefs.mk" |