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 /devel | |
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 'devel')
-rw-r--r-- | devel/cvsup-bin/Makefile | 4 | ||||
-rw-r--r-- | devel/cvsup-gui-bin/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/devel/cvsup-bin/Makefile b/devel/cvsup-bin/Makefile index e90fde81827..ab6a80f1d09 100644 --- a/devel/cvsup-bin/Makefile +++ b/devel/cvsup-bin/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2007/08/22 18:09:12 jlam Exp $ +# $NetBSD: Makefile,v 1.10 2007/08/23 18:20:30 jlam Exp $ DISTNAME= cvsup-static-16.1.h PKGNAME= ${DISTNAME:C/static/bin/} @@ -13,7 +13,7 @@ COMMENT= cvsup daemon and client CONFLICTS= cvsup-[0-9]* cvsup-gui-[0-9]* EMUL_PLATFORMS= netbsd-i386 -NETBSD_VERSION_REQD= 1.5 +EMUL_REQD= netbsd>=1.5 # XXX Remove the following line on the next update; see PR 25255 for details DIST_SUBDIR= cvsup-i386-1.6 diff --git a/devel/cvsup-gui-bin/Makefile b/devel/cvsup-gui-bin/Makefile index a3d24b79a68..99e75ecf5fa 100644 --- a/devel/cvsup-gui-bin/Makefile +++ b/devel/cvsup-gui-bin/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2007/08/22 18:09:12 jlam Exp $ +# $NetBSD: Makefile,v 1.14 2007/08/23 18:20:30 jlam Exp $ DISTNAME= cvsup-gui-static-16.1.h PKGNAME= ${DISTNAME:C/static/bin/} @@ -16,7 +16,7 @@ CVSUP_VERSION= ${DISTNAME:S/cvsup-gui-static-//} DEPENDS+= cvsup-bin>=${CVSUP_VERSION}:../../devel/cvsup-bin EMUL_PLATFORMS= netbsd-i386 -NETBSD_VERSION_REQD= 1.5 +EMUL_REQD= netbsd>=1.5 # XXX Remove the following line on next update; see PR 25255 for details DIST_SUBDIR= cvsup-i386-1.6 |