1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-23 09:10:43 +00:00

- Upgrade to version 1.4.3.

- Change JAVA_BUILD from "yes" to "jre"
This commit is contained in:
Archie Cobbs 2005-04-25 20:44:19 +00:00
parent 4f4cc9175e
commit 29533ff55f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=134159
3 changed files with 19 additions and 7 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= jc
PORTVERSION= 1.4.2
PORTVERSION= 1.4.3
CATEGORIES= java
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR=jcvm/
@ -16,15 +16,14 @@ COMMENT= JVM that converts class files to C source and compiles them with GCC
BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip \
${LOCALBASE}/share/classpath/glibj.zip:${PORTSDIR}/java/classpath
LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \
ffi.2:${PORTSDIR}/devel/libffi
LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt
MAN1= jc.1
USE_LIBTOOL_VER=15
USE_JAVA= yes
USE_GMAKE= yes
JAVA_BUILD= yes
JAVA_BUILD= jre
INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-classpath=${LOCALBASE}

View File

@ -1,2 +1,2 @@
MD5 (jc-1.4.2.tar.gz) = 17dd43da4803fe90949cf8dc99b0d7c8
SIZE (jc-1.4.2.tar.gz) = 34246309
MD5 (jc-1.4.3.tar.gz) = 51ba1380dbe62be42c34df19e416afab
SIZE (jc-1.4.3.tar.gz) = 34245731

View File

@ -3,6 +3,19 @@ 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 a fairly complete Java runtime including sophisticated
optimizations to increase runtime performance.
optimizations to increase runtime performance. JC also includes a
bytecode interpreter, and supports execution in either or mix ed
modes.
Although JC has good interpreter performance, JC doesn't try to be
fast in every situation. Instead, JC focuses on this question: how
fast can we go if we know some or all of the class files ahead of
time? The answer is: very fast! Optimizations that are just too
complex and expensive to perform at runtime are instead performed
at code generation time. JC's code generator is written in Java,
using the powerful Soot bytecode analysis framework. When combined
with the proven power of GCC's C optimizer the results are impressive.
As an additional benefit, JC contains very little architecture-specific
code and is highly portable.
WWW: http://jcvm.sourceforge.net/