mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 17:29:23 -04:00
Split the jikes port into stable and development versions.
PR: ports/41961 Reviewed by: freebsd-java
This commit is contained in:
parent
1e9d7b18a8
commit
e4717d5807
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=65114
15 changed files with 133 additions and 21 deletions
|
@ -40,6 +40,7 @@
|
||||||
SUBDIR += jdom
|
SUBDIR += jdom
|
||||||
SUBDIR += jfc
|
SUBDIR += jfc
|
||||||
SUBDIR += jikes
|
SUBDIR += jikes
|
||||||
|
SUBDIR += jikes-devel
|
||||||
SUBDIR += jlex
|
SUBDIR += jlex
|
||||||
SUBDIR += jlint
|
SUBDIR += jlint
|
||||||
SUBDIR += jre
|
SUBDIR += jre
|
||||||
|
|
29
java/jikes-devel/Makefile
Normal file
29
java/jikes-devel/Makefile
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
# New ports collection makefile for: jikes
|
||||||
|
# Date created: 09 December 1998
|
||||||
|
# Whom: Matthew Dillon <dillon@backplane.com>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= jikes
|
||||||
|
PORTVERSION= 1.16
|
||||||
|
PORTREVISION= 3
|
||||||
|
CATEGORIES= java
|
||||||
|
MASTER_SITES= http://oss.software.ibm.com/pub/jikes/
|
||||||
|
|
||||||
|
MAINTAINER= archie@freebsd.org
|
||||||
|
|
||||||
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libicuuc.a:${PORTSDIR}/devel/icu
|
||||||
|
|
||||||
|
CONFIGURE_ARGS= --prefix=${PREFIX} \
|
||||||
|
CPPFLAGS="-D_THREAD_SAFE -I${PREFIX}/include" \
|
||||||
|
LDFLAGS="-pthread -L${PREFIX}/lib"
|
||||||
|
|
||||||
|
MAN1= jikes.1
|
||||||
|
|
||||||
|
PLIST_SUB= PORTVERSION=${PORTVERSION}
|
||||||
|
GNU_CONFIGURE= yes
|
||||||
|
USE_GMAKE= yes
|
||||||
|
USE_BZIP2= yes
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
1
java/jikes-devel/distinfo
Normal file
1
java/jikes-devel/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (jikes-1.16.tar.bz2) = f3ab8f0ec01b3b03b9d4de188c80a189
|
11
java/jikes-devel/files/patch-aa
Normal file
11
java/jikes-devel/files/patch-aa
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
--- doc/Makefile.in Tue Jul 9 23:16:00 2002
|
||||||
|
+++ doc/Makefile.in Mon Aug 5 11:02:39 2002
|
||||||
|
@@ -80,7 +80,7 @@
|
||||||
|
install_sh = @install_sh@
|
||||||
|
man_MANS = jikes.1
|
||||||
|
|
||||||
|
-docdir = $(prefix)/doc/${PACKAGE}-${VERSION}
|
||||||
|
+docdir = $(prefix)/share/doc/${PACKAGE}-${VERSION}
|
||||||
|
|
||||||
|
doc_DATA = \
|
||||||
|
license.htm
|
28
java/jikes-devel/files/patch-ab
Normal file
28
java/jikes-devel/files/patch-ab
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
--- configure Tue Jul 9 23:16:00 2002
|
||||||
|
+++ configure Mon Aug 5 11:03:52 2002
|
||||||
|
@@ -5366,13 +5366,13 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
-echo "$as_me:$LINENO: checking for u_getVersion in -licu-uc" >&5
|
||||||
|
-echo $ECHO_N "checking for u_getVersion in -licu-uc... $ECHO_C" >&6
|
||||||
|
+echo "$as_me:$LINENO: checking for u_getVersion in -licuuc" >&5
|
||||||
|
+echo $ECHO_N "checking for u_getVersion in -licuuc... $ECHO_C" >&6
|
||||||
|
if test "${ac_cv_lib_icu_uc_u_getVersion+set}" = set; then
|
||||||
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||||
|
else
|
||||||
|
ac_check_lib_save_LIBS=$LIBS
|
||||||
|
-LIBS="-licu-uc $LIBS"
|
||||||
|
+LIBS="-licuuc $LIBS"
|
||||||
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
|
#line $LINENO "configure"
|
||||||
|
#include "confdefs.h"
|
||||||
|
@@ -5426,7 +5426,7 @@
|
||||||
|
#define HAVE_LIBICU_UC 1
|
||||||
|
_ACEOF
|
||||||
|
|
||||||
|
- LIBS="-licu-uc $LIBS"
|
||||||
|
+ LIBS="-licuuc $LIBS"
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
11
java/jikes-devel/files/patch-ac
Normal file
11
java/jikes-devel/files/patch-ac
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
--- configure.in Tue Jul 9 23:16:00 2002
|
||||||
|
+++ configure.in Mon Aug 5 11:03:39 2002
|
||||||
|
@@ -113,7 +113,7 @@
|
||||||
|
AC_CHECK_ICONV()
|
||||||
|
|
||||||
|
dnl Check if "IBM Classes for UNICODE library" is present
|
||||||
|
-AC_CHECK_LIB(icu-uc, u_getVersion)
|
||||||
|
+AC_CHECK_LIB(icuuc, u_getVersion)
|
||||||
|
|
||||||
|
dnl Check for cygwin path conversion functions
|
||||||
|
AC_CHECK_FUNCS(cygwin_win32_to_posix_path_list)
|
1
java/jikes-devel/pkg-comment
Normal file
1
java/jikes-devel/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
||||||
|
A very fast Java source to byte-code compiler made available by IBM
|
18
java/jikes-devel/pkg-descr
Normal file
18
java/jikes-devel/pkg-descr
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
This is jikes, a java source to byte-code compiler. The compiler has been
|
||||||
|
made available by IBM under their open-source license, please see:
|
||||||
|
|
||||||
|
WWW: http://oss.software.ibm.com/developerworks/opensource/jikes/project/
|
||||||
|
|
||||||
|
for details. To operate, the CLASSPATH environment variable must typically
|
||||||
|
be set to a colon-delimited list of source directories, class directories,
|
||||||
|
or zip files. Note that jikes will complain if a non-existant directory or
|
||||||
|
file is specified in CLASSPATH.
|
||||||
|
|
||||||
|
===============
|
||||||
|
|
||||||
|
// This software is subject to the terms of the IBM Jikes Compiler Open"
|
||||||
|
// Source License Agreement available at the following URL:"
|
||||||
|
// http://www.ibm.com/research/jikes."
|
||||||
|
// Copyright (C) 1996, 1998, International Business Machines Corporation"
|
||||||
|
// and others. All Rights Reserved."
|
||||||
|
// You must accept the terms of that agreement to use this software."
|
10
java/jikes-devel/pkg-message
Normal file
10
java/jikes-devel/pkg-message
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
This distribution is covered by the "IBM Public License Version
|
||||||
|
Version 1.0 - Jikes" contained in the file doc/license.htm. You
|
||||||
|
must accept the terms of the license agreement to use this software.
|
||||||
|
|
||||||
|
http://ibm.com/developerworks/opensource/jikes
|
||||||
|
|
||||||
|
Copyright (C) 1996, 1998, International Business Machines Corporation
|
||||||
|
and others. All Rights Reserved.
|
||||||
|
|
||||||
|
You must accept the terms of that agreement to use this software.
|
4
java/jikes-devel/pkg-plist
Normal file
4
java/jikes-devel/pkg-plist
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
bin/jikes
|
||||||
|
include/jikesapi.h
|
||||||
|
share/doc/jikes-%%PORTVERSION%%/license.htm
|
||||||
|
@dirrm share/doc/jikes-%%PORTVERSION%%
|
|
@ -6,8 +6,8 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= jikes
|
PORTNAME= jikes
|
||||||
PORTVERSION= 1.16
|
PORTVERSION= 1.15
|
||||||
PORTREVISION= 3
|
PORTREVISION= 1
|
||||||
CATEGORIES= java
|
CATEGORIES= java
|
||||||
MASTER_SITES= http://oss.software.ibm.com/pub/jikes/
|
MASTER_SITES= http://oss.software.ibm.com/pub/jikes/
|
||||||
|
|
||||||
|
@ -17,13 +17,12 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/libicuuc.a:${PORTSDIR}/devel/icu
|
||||||
|
|
||||||
CONFIGURE_ARGS= --prefix=${PREFIX} \
|
CONFIGURE_ARGS= --prefix=${PREFIX} \
|
||||||
CPPFLAGS="-D_THREAD_SAFE -I${PREFIX}/include" \
|
CPPFLAGS="-D_THREAD_SAFE -I${PREFIX}/include" \
|
||||||
LDFLAGS="-pthread -L${PREFIX}/lib" \
|
LDFLAGS="-pthread -L${PREFIX}/lib"
|
||||||
CXXFLAGS="-pipe"
|
|
||||||
|
|
||||||
MAN1= jikes.1
|
MAN1= jikes.1
|
||||||
|
|
||||||
|
PLIST_SUB= PORTVERSION=${PORTVERSION}
|
||||||
GNU_CONFIGURE= yes
|
GNU_CONFIGURE= yes
|
||||||
USE_GMAKE= yes
|
USE_GMAKE= yes
|
||||||
USE_BZIP2= yes
|
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
MD5 (jikes-1.16.tar.bz2) = f3ab8f0ec01b3b03b9d4de188c80a189
|
MD5 (jikes-1.15.tar.gz) = 88ccc470acb5c2c8e35badd534223e2c
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
--- configure Tue Jul 9 23:16:00 2002
|
--- configure.orig Tue Aug 27 12:55:14 2002
|
||||||
+++ configure Mon Aug 5 11:03:52 2002
|
+++ configure Tue Aug 27 12:54:33 2002
|
||||||
@@ -5366,13 +5366,13 @@
|
@@ -4279,13 +4279,13 @@
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
-echo "$as_me:4282: checking for u_getVersion in -licu-uc" >&5
|
||||||
-echo "$as_me:$LINENO: checking for u_getVersion in -licu-uc" >&5
|
|
||||||
-echo $ECHO_N "checking for u_getVersion in -licu-uc... $ECHO_C" >&6
|
-echo $ECHO_N "checking for u_getVersion in -licu-uc... $ECHO_C" >&6
|
||||||
+echo "$as_me:$LINENO: checking for u_getVersion in -licuuc" >&5
|
+echo "$as_me:4282: checking for u_getVersion in -licuuc" >&5
|
||||||
+echo $ECHO_N "checking for u_getVersion in -licuuc... $ECHO_C" >&6
|
+echo $ECHO_N "checking for u_getVersion in -licuuc... $ECHO_C" >&6
|
||||||
if test "${ac_cv_lib_icu_uc_u_getVersion+set}" = set; then
|
if test "${ac_cv_lib_icu_uc_u_getVersion+set}" = set; then
|
||||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||||
|
@ -15,11 +15,11 @@
|
||||||
-LIBS="-licu-uc $LIBS"
|
-LIBS="-licu-uc $LIBS"
|
||||||
+LIBS="-licuuc $LIBS"
|
+LIBS="-licuuc $LIBS"
|
||||||
cat >conftest.$ac_ext <<_ACEOF
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
#line $LINENO "configure"
|
#line 4290 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
@@ -5426,7 +5426,7 @@
|
@@ -4333,7 +4333,7 @@
|
||||||
#define HAVE_LIBICU_UC 1
|
#define HAVE_LIBICU_UC 1
|
||||||
_ACEOF
|
EOF
|
||||||
|
|
||||||
- LIBS="-licu-uc $LIBS"
|
- LIBS="-licu-uc $LIBS"
|
||||||
+ LIBS="-licuuc $LIBS"
|
+ LIBS="-licuuc $LIBS"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
--- configure.in Tue Jul 9 23:16:00 2002
|
--- configure.in.orig Tue Aug 27 12:55:18 2002
|
||||||
+++ configure.in Mon Aug 5 11:03:39 2002
|
+++ configure.in Tue Aug 27 12:54:39 2002
|
||||||
@@ -113,7 +113,7 @@
|
@@ -108,7 +108,7 @@
|
||||||
AC_CHECK_ICONV()
|
AC_CHECK_ICONV()
|
||||||
|
|
||||||
dnl Check if "IBM Classes for UNICODE library" is present
|
dnl Check if "IBM Classes for UNICODE library" is present
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
bin/jikes
|
bin/jikes
|
||||||
include/jikesapi.h
|
share/doc/jikes-%%PORTVERSION%%/license.htm
|
||||||
share/doc/jikes-1.16/license.htm
|
@dirrm share/doc/jikes-%%PORTVERSION%%
|
||||||
@dirrm share/doc/jikes-1.16
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue