diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-05-14 19:24:23 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-05-14 19:24:23 +0000 |
commit | 02d8aaea7ebdf87ad2c06a32748c56913fe18ce4 (patch) | |
tree | 1893cd0a254e6bda900061c05d813a86c54c160d /lang/libjit | |
parent | 6f88e1162383eef1e8d9511a0e0f3e7151489491 (diff) | |
download | ports-02d8aaea7ebdf87ad2c06a32748c56913fe18ce4.tar.gz ports-02d8aaea7ebdf87ad2c06a32748c56913fe18ce4.zip |
Notes
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 0b63a153e2c6..625245da5048 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 97ae14da1c33..7a6a28586d18 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 000000000000..66a1420e56a3 --- /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 3b815b0eafdf..7722e53a22c7 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 |