diff options
author | Martin Cracauer <cracauer@FreeBSD.org> | 1997-10-09 21:19:42 +0000 |
---|---|---|
committer | Martin Cracauer <cracauer@FreeBSD.org> | 1997-10-09 21:19:42 +0000 |
commit | c590b216159fc3a2168b3cc65bc4ecdbf83890e5 (patch) | |
tree | 9a73e38def15db872406ccb57c67f81370681ea2 | |
parent | 725e0adfcafef57081a1111ad26639d0f8fb1e3a (diff) | |
download | ports-c590b216159fc3a2168b3cc65bc4ecdbf83890e5.tar.gz ports-c590b216159fc3a2168b3cc65bc4ecdbf83890e5.zip |
Java support now works with jdk-1.1. JDK-1.0.2 isn't supported, but
Jeff's 1.0.2 port is recognized at configure time and ILU will then be
build without Java support.
Add a note in DESCR that the FreeBSD port builds shared libraries.
Notes
Notes:
svn path=/head/; revision=8193
-rw-r--r-- | devel/ilu/Makefile | 14 | ||||
-rw-r--r-- | devel/ilu/pkg-descr | 9 |
2 files changed, 13 insertions, 10 deletions
diff --git a/devel/ilu/Makefile b/devel/ilu/Makefile index 47695d17a40a..812eb728b166 100644 --- a/devel/ilu/Makefile +++ b/devel/ilu/Makefile @@ -3,7 +3,7 @@ # Date created: 29.9.1997 # Whom: cracauer@cons.org "Martin Cracauer" # -# $Id: Makefile,v 1.4 1997/10/03 13:09:43 cracauer Exp $ +# $Id: Makefile,v 1.5 1997/10/07 15:06:37 cracauer Exp $ # DISTNAME= ilu-2.0alpha11 @@ -15,11 +15,10 @@ MAINTAINER= cracauer@cons.org NO_WRKSUBDIR= yes HAS_CONFIGURE= yes -# ILU 2.0alpha11 doesn't compile with FreeBSD jdk-1.1 port -# The guile port is outdated. If you have 1.2 installed, remove -# --disable-guile-support -CONFIGURE_ARGS= --disable-java-support --enable-http-protocol \ - --disable-guile-support + +# The official guile port is outdated. If you have 1.2 installed, remove +# --disable-guile-support +CONFIGURE_ARGS= --disable-guile-support --enable-http-protocol INSTALL_TARGET= Install NOMANCOMPRESS= @@ -31,6 +30,9 @@ startup_script= ${startup_dir}/50.ilu.sh post-install: # Empty dirs +.if exists(${PREFIX}/ilu/examples/javatest1/javastubs) + ${RMDIR} ${PREFIX}/ilu/examples/javatest1/javastubs +.endif ${RMDIR} ${PREFIX}/ilu/man/man[358] ${RMDIR} ${PREFIX}/ilu/lisp (cd ${PREFIX} ; find ilu -type f) > ${PLIST} diff --git a/devel/ilu/pkg-descr b/devel/ilu/pkg-descr index 45efb3efdb75..e27efe6d28b0 100644 --- a/devel/ilu/pkg-descr +++ b/devel/ilu/pkg-descr @@ -21,8 +21,9 @@ types, threading and event loop processing, and various other things. ILU is provided free for unrestricted use. FreeBSD port notes: -- The jdk-1.1 port doesn't work with ILU, java support disabled -- I enabled http protocol support by default -- Official ILU patches are turned into port patches +- I enabled http protocol support by default. +- Official ILU patches are turned into port patches. - configure --bindir/--mandir doesn't work with current ILU version. - I make symbolic links to ${PREFIX}/{bin,man} + I make symbolic links to ${PREFIX}/{bin,man}. +- The FreeBSD port builds shareds libs for C libraries. +- jdk-1.1 for FreeBSD works, 1.0.2 is not supported. |