1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00

- Update to 0.0.2

PR:		ports/66641
Submitted by:	maintainer
This commit is contained in:
Kirill Ponomarev 2004-05-14 19:24:23 +00:00
parent 6f88e11623
commit 02d8aaea7e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=109159
4 changed files with 55 additions and 3 deletions

View File

@ -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>

View File

@ -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

View File

@ -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"
;;

View File

@ -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