summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortron <tron>1999-06-20 21:06:17 +0000
committertron <tron>1999-06-20 21:06:17 +0000
commit4ef4a52c1bb0431037a845c4362f18fc64698dd3 (patch)
treeac9aebfa40184ccffd2322a82fcf7fdec10ca5a3
parentcd7cfe6921e0b3db1af892b2787ef7cb8e585e6e (diff)
downloadpkgsrc-4ef4a52c1bb0431037a845c4362f18fc64698dd3.tar.gz
Don't use "{}" or "[]" in "ONLY_FOR_PLATFORM" or "NOT_FOR_PLATFORM"
because "bsd.pkg.mk" can't handle those patterns. Fixes PR pkg/7808 by Chris Demetriou.
-rw-r--r--comms/xisp/Makefile5
-rw-r--r--databases/mysql-server/Makefile5
-rw-r--r--devel/mit-pthreads/Makefile6
-rw-r--r--devel/noweb/Makefile4
-rw-r--r--devel/prcs/Makefile6
-rw-r--r--emulators/compat12/Makefile5
-rw-r--r--emulators/compat13/Makefile6
-rw-r--r--lang/icon/Makefile4
-rw-r--r--lang/kaffe/Makefile4
-rw-r--r--mail/xfmail/Makefile4
-rw-r--r--math/xldlas/Makefile4
-rw-r--r--net/coda5_client/Makefile4
-rw-r--r--net/coda5_server/Makefile4
-rw-r--r--security/openssl/Makefile7
-rw-r--r--security/rc5des/Makefile4
-rw-r--r--x11/xforms/Makefile4
16 files changed, 44 insertions, 32 deletions
diff --git a/comms/xisp/Makefile b/comms/xisp/Makefile
index 8ce30e8eb79..fdb4ae26d78 100644
--- a/comms/xisp/Makefile
+++ b/comms/xisp/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 1999/05/24 20:39:36 tv Exp $
+# $NetBSD: Makefile,v 1.7 1999/06/20 21:06:17 tron Exp $
#
DISTNAME= xisp-2.5p4
@@ -12,7 +12,8 @@ HOMEPAGE= http://users.hol.gr/~dbouras/
DEPENDS+= xforms-0.88:../../x11/xforms
DEPENDS+= xpm-3.4k:../../graphics/xpm
-ONLY_FOR_PLATFORM= NetBSD-*-{arm32,i386,m68k,sparc,ns32k}
+ONLY_FOR_PLATFORM= NetBSD-*-arm32 NetBSD-*-i386 NetBSD-*-m68k \
+ NetBSD-*-sparc NetBSD-*-ns32k
USE_X11BASE=
diff --git a/databases/mysql-server/Makefile b/databases/mysql-server/Makefile
index 9af768e63fe..41f1e687670 100644
--- a/databases/mysql-server/Makefile
+++ b/databases/mysql-server/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 1999/05/24 20:39:36 tv Exp $
+# $NetBSD: Makefile,v 1.4 1999/06/20 21:06:18 tron Exp $
#
DISTNAME= mysql-3.22.22
@@ -27,7 +27,8 @@ CONFIGURE_ARGS+= --localstatedir=${MYSQL_DATADIR} \
CFLAGS+= -Dunix
# platforms on which included mit-pthreads is usable
-ONLY_FOR_PLATFORM= NetBSD-*-{alpha,arm32,i386,sparc} SunOS-*-sparc
+ONLY_FOR_PLATFORM= NetBSD-*-alpha NetBSD-*-arm32 NetBSD-*-i386 \
+ NetBSD-*-sparc SunOS-*-sparc
USE_GMAKE=
USE_PERL5=
diff --git a/devel/mit-pthreads/Makefile b/devel/mit-pthreads/Makefile
index 87d7f213ed6..dd41da4f807 100644
--- a/devel/mit-pthreads/Makefile
+++ b/devel/mit-pthreads/Makefile
@@ -1,15 +1,17 @@
-# $NetBSD: Makefile,v 1.19 1999/05/24 20:39:37 tv Exp $
+# $NetBSD: Makefile,v 1.20 1999/06/20 21:06:18 tron Exp $
#
DISTNAME= pthreads-1_60_beta6
PKGNAME= mit-pthreads-1.60b6
CATEGORIES= devel
MASTER_SITES= ftp://sipb.mit.edu/pub/pthreads/
-ONLY_FOR_PLATFORM= NetBSD-*-{alpha,arm32,i386,sparc}
MAINTAINER= agc@netbsd.org
HOMEPAGE= http://www.mit.edu:8001/people/proven/pthreads.html
+ONLY_FOR_PLATFORM= NetBSD-*-alpha NetBSD-*-arm32 NetBSD-*-i386 \
+ NetBSD-*-sparc
+
HAS_CONFIGURE= yes
MAKE_ENV+= NOLINT=1 NOPROFILE=1 OBJECT_FMT=${OBJECT_FMT}
CONFIGURE_ARGS+= --prefix=${PREFIX}/pthreads
diff --git a/devel/noweb/Makefile b/devel/noweb/Makefile
index 1a872369a97..fa845c7371b 100644
--- a/devel/noweb/Makefile
+++ b/devel/noweb/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 1999/05/24 20:39:38 tv Exp $
+# $NetBSD: Makefile,v 1.13 1999/06/20 21:06:19 tron Exp $
# FreeBSD Id: Makefile,v 1.10 1997/09/15 07:22:06 tg Exp
#
@@ -6,7 +6,7 @@ DISTNAME= noweb-2.8a
CATEGORIES= devel
MASTER_SITES= ftp://ftp.cs.virginia.edu/pub/nr/
EXTRACT_SUFX= .tgz
-ONLY_FOR_PLATFORM= NetBSD-*-{alpha,i386}
+ONLY_FOR_PLATFORM= NetBSD-*-alpha NetBSD-*-i386
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.cs.virginia.edu/~nr/noweb/
diff --git a/devel/prcs/Makefile b/devel/prcs/Makefile
index 63e991f5cdf..eeaddcd1e18 100644
--- a/devel/prcs/Makefile
+++ b/devel/prcs/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 1999/05/24 20:39:38 tv Exp $
+# $NetBSD: Makefile,v 1.12 1999/06/20 21:06:19 tron Exp $
# FreeBSD Id: Makefile,v 1.9 1997/10/13 05:11:40 jmacd Exp
#
@@ -9,7 +9,9 @@ MASTER_SITES= ftp://ftp.xcf.berkeley.edu/pub/prcs/
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.XCF.Berkeley.EDU/~jmacd/prcs.html
-ONLY_FOR_PLATFORM= NetBSD-*-{alpha,arm32,i386,mips*,pc532,powerpc,sparc,vax}
+ONLY_FOR_PLATFORM= NetBSD-*-alpha NetBSD-*-arm32 NetBSD-*-i386 \
+ NetBSD-*-mips* NetBSD-*-pc532 NetBSD-*-powerpc \
+ NetBSD-*-sparc NetBSD-*-vax
GNU_CONFIGURE=
USE_GTEXINFO=
diff --git a/emulators/compat12/Makefile b/emulators/compat12/Makefile
index 50485e10aa0..a699bb4087f 100644
--- a/emulators/compat12/Makefile
+++ b/emulators/compat12/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 1999/05/24 20:39:39 tv Exp $
+# $NetBSD: Makefile,v 1.14 1999/06/20 21:06:19 tron Exp $
#
DISTNAME= compat12-${MACHINE_ARCH}
@@ -9,7 +9,8 @@ MASTER_SITES= ${MASTER_SITE_LOCAL}
MAINTAINER= tv@netbsd.org
HOMEPAGE= http://www.netbsd.org/Releases/formal-1.2/index.html
-ONLY_FOR_PLATFORM= NetBSD-*-{i386,m68k,ns32k,sparc}
+ONLY_FOR_PLATFORM= NetBSD-*-i386 NetBSD-*-m68k NetBSD-*-ns32k \
+ NetBSD-*-sparc
NO_BUILD=
diff --git a/emulators/compat13/Makefile b/emulators/compat13/Makefile
index 32c0f7a8572..c444aabd9dc 100644
--- a/emulators/compat13/Makefile
+++ b/emulators/compat13/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 1999/05/24 20:39:39 tv Exp $
+# $NetBSD: Makefile,v 1.4 1999/06/20 21:06:19 tron Exp $
#
DISTNAME= compat13-${MACHINE_ARCH}
@@ -9,7 +9,9 @@ MASTER_SITES= ${MASTER_SITE_LOCAL}
MAINTAINER= tv@netbsd.org
HOMEPAGE= http://www.netbsd.org/Releases/formal-1.3/index.html
-ONLY_FOR_PLATFORM= NetBSD-*-{alpha,arm32,i386,m68k,mipsel,ns32k,sparc}
+ONLY_FOR_PLATFORM= NetBSD-*-alpha NetBSD-*-arm32 NetBSD-*-i386 \
+ NetBSD-*-m68k NetBSD-*-mipsel NetBSD-*-ns32k \
+ NetBSD-*-sparc
NOT_FOR_PLATFORM= NetBSD-1.3*-*
NO_BUILD=
diff --git a/lang/icon/Makefile b/lang/icon/Makefile
index 6d9361dca53..6d4092cdfea 100644
--- a/lang/icon/Makefile
+++ b/lang/icon/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 1999/05/24 20:39:44 tv Exp $
+# $NetBSD: Makefile,v 1.12 1999/06/20 21:06:20 tron Exp $
# FreeBSD Id: Makefile,v 1.8 1997/02/12 08:39:15 tg Exp
#
@@ -7,7 +7,7 @@ PKGNAME= icon-9.3.1
CATEGORIES= lang
MASTER_SITES= http://www.cs.arizona.edu/icon/ftp/packages/unix/
EXTRACT_SUFX= .tgz
-ONLY_FOR_PLATFORM= NetBSD-*-{alpha,i386}
+ONLY_FOR_PLATFORM= NetBSD-*-alpha NetBSD-*-i386
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.cs.arizona.edu/icon/index.htm
diff --git a/lang/kaffe/Makefile b/lang/kaffe/Makefile
index c5b792ec5a8..b6bfb239e1f 100644
--- a/lang/kaffe/Makefile
+++ b/lang/kaffe/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.17 1999/05/24 20:39:44 tv Exp $
+# $NetBSD: Makefile,v 1.18 1999/06/20 21:06:20 tron Exp $
#
DISTNAME= kaffe-1.0.b3
@@ -12,7 +12,7 @@ DEPENDS= jpeg-6b:../../graphics/jpeg \
png-1.0.3:../../graphics/png \
giflib-3.0:../../graphics/giflib
-ONLY_FOR_PLATFORM= *-*-{arm32,i386,m68k,mips*,sparc}
+ONLY_FOR_PLATFORM= *-*-arm32 *-*-i386 *-*-m68k *-*-mips* *-*-sparc
GNU_CONFIGURE= yes
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
diff --git a/mail/xfmail/Makefile b/mail/xfmail/Makefile
index cbffbf1f743..31dc8f1a779 100644
--- a/mail/xfmail/Makefile
+++ b/mail/xfmail/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 1999/05/24 20:39:44 tv Exp $
+# $NetBSD: Makefile,v 1.7 1999/06/20 21:06:20 tron Exp $
#
DISTNAME= xfmail-1.3
@@ -12,7 +12,7 @@ DEPENDS+= gdbm-1.7.3:../../databases/gdbm \
xpm-3.4k:../../graphics/xpm \
xforms-0.88:../../x11/xforms
-ONLY_FOR_PLATFORM= *-*-{arm32,i386,m68k,sparc,ns32k}
+ONLY_FOR_PLATFORM= *-*-arm32 *-*-i386 *-*-m68k *-*-sparc *-*-ns32k
RESTRICTED= "Selling this software requires permission of the authors."
diff --git a/math/xldlas/Makefile b/math/xldlas/Makefile
index a8ecd874ab9..cbf968c2b0f 100644
--- a/math/xldlas/Makefile
+++ b/math/xldlas/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 1999/05/24 20:39:45 tv Exp $
+# $NetBSD: Makefile,v 1.6 1999/06/20 21:06:20 tron Exp $
# FreeBSD Id: Makefile,v 1.5 1998/09/26 23:18:07 steve Exp
#
@@ -15,7 +15,7 @@ HOMEPAGE= http://a42.com/~thor/xldlas/
DEPENDS= xforms-0.88:../../x11/xforms
-ONLY_FOR_PLATFORM= *-*-{arm32,i386,m68k,sparc,ns32k}
+ONLY_FOR_PLATFORM= *-*-arm32 *-*-i386 *-*-m68k *-*-ns32k *-*-sparc
USE_X11BASE= yes
diff --git a/net/coda5_client/Makefile b/net/coda5_client/Makefile
index cb7fc0bf25e..21c8dda0481 100644
--- a/net/coda5_client/Makefile
+++ b/net/coda5_client/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.15 1999/06/04 23:46:56 rvb Exp $
+# $NetBSD: Makefile,v 1.16 1999/06/20 21:06:21 tron Exp $
#
DISTNAME= coda-5.2.4
@@ -13,7 +13,7 @@ HOMEPAGE= http://www.coda.cs.cmu.edu/
DEPENDS= gdbm-1.7.3:../../databases/gdbm \
readline-2.2:../../devel/readline
-ONLY_FOR_PLATFORM= NetBSD-*-{arm32,i386,ns32k}
+ONLY_FOR_PLATFORM= NetBSD-*-arm32 NetBSD-*-i386 NetBSD-*-ns32k
#LICENSE= GPL
diff --git a/net/coda5_server/Makefile b/net/coda5_server/Makefile
index 8ba47a67318..22158c1c502 100644
--- a/net/coda5_server/Makefile
+++ b/net/coda5_server/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.15 1999/06/04 23:45:41 rvb Exp $
+# $NetBSD: Makefile,v 1.16 1999/06/20 21:06:21 tron Exp $
#
DISTNAME= coda-5.2.4
@@ -13,7 +13,7 @@ HOMEPAGE= http://www.coda.cs.cmu.edu/
DEPENDS= gdbm-1.7.3:../../databases/gdbm \
readline-2.2:../../devel/readline
-ONLY_FOR_PLATFORM= *-*-{arm32,i386,ns32k}
+ONLY_FOR_PLATFORM= *-*-arm32 *-*-i386 *-*-ns32k
#LICENSE= GPL
diff --git a/security/openssl/Makefile b/security/openssl/Makefile
index e369f858f46..04abd03f5dd 100644
--- a/security/openssl/Makefile
+++ b/security/openssl/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 1999/06/10 05:08:02 tv Exp $
+# $NetBSD: Makefile,v 1.7 1999/06/20 21:06:21 tron Exp $
#
DISTNAME= openssl-0.9.2b
@@ -18,7 +18,10 @@ USE_PERL5= yes
RESTRICTED= "Crypto; export-controlled"
MIRROR_DISTFILE= no
# matches what's in `Configure' (except sparc64)
-ONLY_FOR_PLATFORM= NetBSD-*-{alpha,arm32,i386,m68k,mips,mipse[bl],ns32k,powerpc,sparc,vax}
+ONLY_FOR_PLATFORM= NetBSD-*-alpha NetBSD-*-arm32 NetBSD-*-i386 \
+ NetBSD-*-m68k NetBSD-*-mips NetBSD-*-mipseb \
+ NetBSD-*-mipsebl NetBSD-*-ns32k NetBSD-*-powerpc \
+ NetBSD-*-sparc NetBSD-*-vax
CONFIGURE_ARGS= -fPIC -DPIC ${LDFLAGS}
#CONFIGURE_ENV= PREFIX=${PREFIX}
diff --git a/security/rc5des/Makefile b/security/rc5des/Makefile
index 296deadd698..5191384e6e7 100644
--- a/security/rc5des/Makefile
+++ b/security/rc5des/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 1999/05/24 20:39:48 tv Exp $
+# $NetBSD: Makefile,v 1.3 1999/06/20 21:06:21 tron Exp $
#
DISTNAME= rc5-mlg-004
@@ -9,7 +9,7 @@ MASTER_SITES= http://www.flame.org/netbsd-rc5/
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://rc5.distributed.net/
-ONLY_FOR_PLATFORM= NetBSD-*-{alpha,arm32,i386}
+ONLY_FOR_PLATFORM= NetBSD-*-alpha NetBSD-*-arm32 NetBSD-*-i386
RESTRICTED= "Crypto; export-controlled"
MIRROR_DISTFILE= no
diff --git a/x11/xforms/Makefile b/x11/xforms/Makefile
index 42db5d8a62e..9ccb32c727a 100644
--- a/x11/xforms/Makefile
+++ b/x11/xforms/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 1999/06/11 03:05:10 jlam Exp $
+# $NetBSD: Makefile,v 1.14 1999/06/20 21:06:22 tron Exp $
#
DISTNAME= bxform-088
@@ -20,7 +20,7 @@ EXTRACT_SUFX= .tgz
MAINTAINER= lamj@stat.cmu.edu
HOMEPAGE= http://bragg.phys.uwm.edu/xforms/
-ONLY_FOR_PLATFORM= *-*-{arm32,i386,m68k,sparc,ns32k}
+ONLY_FOR_PLATFORM= *-*-arm32 *-*-i386 *-*-m68k *-*-ns32k *-*-sparc
DIST_SUBDIR= xforms-${MACHINE_ARCH}