summaryrefslogtreecommitdiff
path: root/lang/oo2c/Makefile
diff options
context:
space:
mode:
authorjtb <jtb>2003-05-17 21:00:11 +0000
committerjtb <jtb>2003-05-17 21:00:11 +0000
commit06f7885920cf750f56d26f75c8f097d67ea8c3df (patch)
tree0c960cbe8800b8d80a88b43dbde6b6d498183ad2 /lang/oo2c/Makefile
parent922fb3d7e4665fce7263309d77dbba3c01807ed8 (diff)
downloadpkgsrc-06f7885920cf750f56d26f75c8f097d67ea8c3df.tar.gz
Update to 2.0.9.
Changes: * (Compiler) Initial support for parametric types. * (Compiler) New option `--uses <ext-ident>' lists uses of the declaration <ext-ident>. Scope of the search is the transitive closure of all modules given on the command line. * (Compiler) New option `--all' or `-A'. When used with `--make', rebuild all modules for which sources are available. * (IO:Select) Fix `Init' to call base type initializer as well.
Diffstat (limited to 'lang/oo2c/Makefile')
-rw-r--r--lang/oo2c/Makefile16
1 files changed, 9 insertions, 7 deletions
diff --git a/lang/oo2c/Makefile b/lang/oo2c/Makefile
index 8b77b1c2532..7b8bf4eac16 100644
--- a/lang/oo2c/Makefile
+++ b/lang/oo2c/Makefile
@@ -1,11 +1,7 @@
-# $NetBSD: Makefile,v 1.2 2003/05/03 20:44:41 jtb Exp $
+# $NetBSD: Makefile,v 1.3 2003/05/17 21:00:11 jtb Exp $
-.if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "sparc64")
-DISTNAME= oo2c_64-2.0.8
-.else
-DISTNAME= oo2c_32-2.0.8
-.endif
-PKGNAME= oo2c-2.0.8
+DISTNAME= oo2c_${BITS}-2.0.9
+PKGNAME= oo2c-2.0.9
CATEGORIES= lang
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ooc/}
EXTRACT_SUFX= .tar.bz2
@@ -17,6 +13,12 @@ COMMENT= Optimizing Oberon-2 Compiler
DEPENDS+= libtool-base-[0-9]*:../../devel/libtool
DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt
+.if ${MACHINE_ARCH} == alpha || ${MACHINE_ARCH} == sparc64
+BITS=64
+.else
+BITS=32
+.endif
+
USE_BUILDLINK2= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes