1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

Upgrade to version 1.2.3.

This commit is contained in:
Archie Cobbs 2004-11-29 15:47:54 +00:00
parent 6931ce022e
commit 56cee616c1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=122753
5 changed files with 1463 additions and 1016 deletions

View File

@ -6,8 +6,7 @@
#
PORTNAME= jc
PORTVERSION= 1.2.2
PORTREVISION= 1
PORTVERSION= 1.2.3
CATEGORIES= java
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
${MASTER_SITE_GNU:S/$/:CLASSPATH/g}
@ -19,13 +18,12 @@ DIST_SUBDIR= jcvm
MAINTAINER= archie@freebsd.org
COMMENT= JVM that converts class files to C source and compiles them with GCC
BUILD_DEPENDS= jikes:${PORTSDIR}/java/jikes \
zip:${PORTSDIR}/archivers/zip
BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip
LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \
ffi.2:${PORTSDIR}/devel/libffi \
gtk-x11-2.0:${PORTSDIR}/x11-toolkits/gtk20 \
art_lgpl_2:${PORTSDIR}/graphics/libart_lgpl2
ffi.2:${PORTSDIR}/devel/libffi
USE_GNOME= gtk20 libartlgpl2 pkgconfig
USE_JIKES= yes
USE_LIBTOOL_VER=15
LIBTOOLFILES= ${CLASSPATHDIR}/configure
USE_GMAKE= yes
@ -43,10 +41,10 @@ JCDIR= ${PORTNAME}-${PORTVERSION}
CLASSPATHDIR= classpath-${CLASSPATHVERSION}
# Classpath version
CLASSPATHVERSION=0.10
CLASSPATHVERSION=0.12
# Jikes version expected
JIKESVERSION= 1.21
JIKESVERSION= 1.22
# Configure args
CLASSPATH_CONF= --prefix=${PREFIX}/jc --enable-jni --with-jikes

View File

@ -1,4 +1,4 @@
MD5 (jcvm/jc-1.2.2.tar.gz) = 80925426806ecd5e03259fa6f06e14ab
SIZE (jcvm/jc-1.2.2.tar.gz) = 27461440
MD5 (jcvm/classpath-0.10.tar.gz) = a59a5040f9c1237dbf27bfc668919943
SIZE (jcvm/classpath-0.10.tar.gz) = 6801054
MD5 (jcvm/jc-1.2.3.tar.gz) = 6bef5a22dd6ff3ba4fa69a45b759e37d
SIZE (jcvm/jc-1.2.3.tar.gz) = 28686430
MD5 (jcvm/classpath-0.12.tar.gz) = ce1f7fbe6f2e3b738bae3b46f01a9670
SIZE (jcvm/classpath-0.12.tar.gz) = 4129732

View File

@ -1,14 +0,0 @@
--- classpath-0.10/native/jni/gtk-peer/gthread-jni.c Mon Jul 19 08:49:17 2004
+++ classpath-0.10/native/jni/gtk-peer/gthread-jni.c Mon Jul 26 16:22:55 2004
@@ -218,7 +218,11 @@
/* Global data */
/************************************************************************/
+#if defined HAVE_STDINT_H
#include <stdint.h> /* provides intptr_t */
+#elif defined HAVE_INTTYPES_H
+#include <inttypes.h>
+#endif
#include <stdarg.h> /* va_list */
#include "gthread-jni.h"
#include <assert.h> /* assert() */

View File

@ -2,7 +2,7 @@ JC is a Java virtual machine implementation that converts class
files into C source files using the Soot Java bytecode analysis
framework, compiles them with GCC, and loads them using a built-in
ELF object file loader. JC utilizes the GNU Classpath class library
and provides support for most features you would expect such as
reflection, user class loaders, etc.
and provides a fairly complete Java runtime including sophisticated
optimizations to increase runtime performance.
WWW: http://jcvm.sourceforge.net/

File diff suppressed because it is too large Load Diff