diff options
author | tonio <tonio@pkgsrc.org> | 2006-05-10 16:46:20 +0000 |
---|---|---|
committer | tonio <tonio@pkgsrc.org> | 2006-05-10 16:46:20 +0000 |
commit | 160fd74649239de35d0180a619de78ff50dbe98a (patch) | |
tree | 47004df9ee16d68056d98b301fb84d7fdd1115f1 /lang/kaffe/Makefile.common | |
parent | 3c767781e7d7f07011d1fd9e77260564f80b9f30 (diff) | |
download | pkgsrc-160fd74649239de35d0180a619de78ff50dbe98a.tar.gz |
Update lang/kaffe{-x11,-esound} to 1.1.7
What's New In Kaffe 1.1.7
------------------------------------------------------
* Many cleanups, warning fixes and bug fixes.
* Removed support for class library profiles, since
--with-glibj-zip offers a more convenient replacement.
* Updated to boehm-gc 6.6
* Updated to gjdoc 0.7.7
* Merged in fastjar.
* Merged in zlib. There is a new configure option,
--with-system-zlib to allow the use of the system zlib,
instead of the merged in one.
* Merged in GNU Classpath completely. Updated to version 0.90,
with additional fixes.
* Merged in port to DROPS.
* Merged in port to Blackfin CPU.
* Support for DragonFly BSD.
* Ported to ia64-freebsd and alpha-freebsd.
* Ported to powerpc-openbsd.
* Improved support for Cygwin and sparc64-openbsd.
* Improved stack handling for pthreads on openbsd.
* Added simple direct threading interpreter implementation.
The patches have been removes, since they were either included upstram or are
no more necessary
Diffstat (limited to 'lang/kaffe/Makefile.common')
-rw-r--r-- | lang/kaffe/Makefile.common | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/lang/kaffe/Makefile.common b/lang/kaffe/Makefile.common index ceb6abdf97a..9410b3cd512 100644 --- a/lang/kaffe/Makefile.common +++ b/lang/kaffe/Makefile.common @@ -1,6 +1,6 @@ -# $NetBSD: Makefile.common,v 1.13 2006/03/02 18:46:16 joerg Exp $ +# $NetBSD: Makefile.common,v 1.14 2006/05/10 16:46:20 tonio Exp $ -DISTNAME= kaffe-1.1.6 +DISTNAME= kaffe-1.1.7 CATEGORIES= lang java MASTER_SITES= ftp://ftp.kaffe.org/pub/kaffe/v1.1.x-development/ @@ -8,11 +8,10 @@ MAINTAINER= tonio@NetBSD.org HOMEPAGE= http://www.kaffe.org/ COMMENT= Virtual machine capable of running Java(tm) code -BUILD_DEPENDS+= unzip-[0-9]*:../../archivers/unzip -BUILD_DEPENDS+= zip-[0-9]*:../../archivers/zip DEPENDS+= jikes>=1.22:../../lang/jikes +DEPENDS+= fastjar>=0.93:../../archivers/fastjar -EXTRACT_USING= pax +EXTRACT_USING= gtar GNU_CONFIGURE_PREFIX= ${JAVA_HOME} GNU_CONFIGURE_MANDIR= ${PREFIX}/${PKGMANDIR} JAVA_HOME= ${PREFIX}/java/kaffe @@ -22,8 +21,8 @@ USE_LIBTOOL= yes USE_TOOLS+= gmake TEST_TARGET= check -ONLY_FOR_PLATFORM= *-*-alpha *-*-arm *-*-arm32 *-*-i386 *-*-m68k *-*-mips* \ - *-*-sparc *-*-powerpc +ONLY_FOR_PLATFORM= *-*-alpha *-*-arm *-*-arm32 *-*-i386 *-*-m68k \ + *-*-mipsel *-*-sparc *-*-powerpc GNU_CONFIGURE= yes CPPFLAGS+= -Dunix @@ -37,7 +36,7 @@ CONFIGURE_ARGS+= --disable-boehm-gc-configuration CONFIGURE_ARGS+= --without-alsa CONFIGURE_ARGS+= --without-esd CONFIGURE_ARGS+= --disable-esdtest -CONFIGURE_ARGS+= --disable-native-awt +CONFIGURE_ARGS+= --disable-fastjar .include "../../mk/bsd.prefs.mk" @@ -54,7 +53,7 @@ CONFIGURE_ENV+= VM_LIBS="-lc" CONFIGURE_ARGS+= --with-engine=intrp .endif +.include "../../devel/libltdl/convenience.mk" .include "../../mk/pthread.buildlink3.mk" .include "../../converters/libiconv/buildlink3.mk" .include "../../devel/gmp/buildlink3.mk" -.include "../../devel/zlib/buildlink3.mk" |