diff options
author | krion <krion@FreeBSD.org> | 2004-05-14 19:24:23 +0000 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2004-05-14 19:24:23 +0000 |
commit | 8d31de8b3c9bd3c3c4a30c7dbec4c239d9888538 (patch) | |
tree | 02a53e5beb57ff65f8eeed5fde7c1b9c816a300b /lang/libjit | |
parent | df71cb932594b9d2bb0be9dc14cf74e251e91483 (diff) | |
download | FreeBSD-ports-8d31de8b3c9bd3c3c4a30c7dbec4c239d9888538.zip FreeBSD-ports-8d31de8b3c9bd3c3c4a30c7dbec4c239d9888538.tar.gz |
- Update to 0.0.2
PR: ports/66641
Submitted by: maintainer
Diffstat (limited to 'lang/libjit')
-rw-r--r-- | lang/libjit/Makefile | 3 | ||||
-rw-r--r-- | lang/libjit/distinfo | 4 | ||||
-rw-r--r-- | lang/libjit/files/patch-ltmain.sh | 43 | ||||
-rw-r--r-- | lang/libjit/pkg-plist | 8 |
4 files changed, 55 insertions, 3 deletions
diff --git a/lang/libjit/Makefile b/lang/libjit/Makefile index 0b63a15..625245d 100644 --- a/lang/libjit/Makefile +++ b/lang/libjit/Makefile @@ -6,7 +6,7 @@ # PORTNAME= libjit -PORTVERSION= 0.0.0f +PORTVERSION= 0.0.2 CATEGORIES= lang MASTER_SITES= http://www.southern-storm.com.au/download/ @@ -17,5 +17,6 @@ USE_GMAKE= yes GNU_CONFIGURE= yes INFO= libjit MAN3= libjit.3 +INSTALLS_SHLIB= yes .include <bsd.port.mk> diff --git a/lang/libjit/distinfo b/lang/libjit/distinfo index 97ae14d..7a6a285 100644 --- a/lang/libjit/distinfo +++ b/lang/libjit/distinfo @@ -1,2 +1,2 @@ -MD5 (libjit-0.0.0f.tar.gz) = 74ec58a39c3d46e1455295c80931c596 -SIZE (libjit-0.0.0f.tar.gz) = 409251 +MD5 (libjit-0.0.2.tar.gz) = f29878f7fc30a56c425af1163235f2de +SIZE (libjit-0.0.2.tar.gz) = 523897 diff --git a/lang/libjit/files/patch-ltmain.sh b/lang/libjit/files/patch-ltmain.sh new file mode 100644 index 0000000..66a1420 --- /dev/null +++ b/lang/libjit/files/patch-ltmain.sh @@ -0,0 +1,43 @@ +--- ltmain.sh.orig Wed May 12 23:24:02 2004 ++++ ltmain.sh Fri May 14 14:47:58 2004 +@@ -1865,7 +1865,7 @@ + if test $? -eq 0 ; then + ldd_output=`ldd conftest` + for i in $deplibs; do +- name="`expr $i : '-l\(.*\)'`" ++ name="`expr X$i : 'X-l\(.*\)'`" + # If $name is empty we are operating on a -L argument. + if test "$name" != "" ; then + libname=`eval \\$echo \"$libname_spec\"` +@@ -1890,7 +1890,7 @@ + # Error occured in the first compile. Let's try to salvage the situation: + # Compile a seperate program for each library. + for i in $deplibs; do +- name="`expr $i : '-l\(.*\)'`" ++ name="`expr X$i : 'X-l\(.*\)'`" + # If $name is empty we are operating on a -L argument. + if test "$name" != "" ; then + $rm conftest +@@ -1930,7 +1930,7 @@ + set dummy $deplibs_check_method + file_magic_regex="`expr \"$deplibs_check_method\" : \"$2 \(.*\)\"`" + for a_deplib in $deplibs; do +- name="`expr $a_deplib : '-l\(.*\)'`" ++ name="`expr X$a_deplib : 'X-l\(.*\)'`" + # If $name is empty we are operating on a -L argument. + if test "$name" != "" ; then + libname=`eval \\$echo \"$libname_spec\"` +@@ -3360,11 +3360,12 @@ + fi + + # Install the pseudo-library for information purposes. ++ if /usr/bin/false ; then + name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` + instname="$dir/$name"i + $show "$install_prog $instname $destdir/$name" + $run eval "$install_prog $instname $destdir/$name" || exit $? +- ++ fi + # Maybe install the static library, too. + test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" + ;; diff --git a/lang/libjit/pkg-plist b/lang/libjit/pkg-plist index 3b815b0..7722e53 100644 --- a/lang/libjit/pkg-plist +++ b/lang/libjit/pkg-plist @@ -4,6 +4,7 @@ include/jit/jit-common.h include/jit/jit-context.h include/jit/jit-defs.h include/jit/jit-dump.h +include/jit/jit-dynamic.h include/jit/jit-elf.h include/jit/jit-except.h include/jit/jit-function.h @@ -19,5 +20,12 @@ include/jit/jit-value.h include/jit/jit-walk.h include/jit/jit.h lib/libjit.a +lib/libjit.so +lib/libjit.so.0 +lib/libjitdynamic.a +lib/libjitdynamic.so +lib/libjitdynamic.so.0 lib/libjitplus.a +lib/libjitplus.so +lib/libjitplus.so.0 @dirrm include/jit |