diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 1998-09-23 16:15:58 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 1998-09-23 16:15:58 +0000 |
commit | 448efeb0b8bc7f9897493ed815d777da562d3e34 (patch) | |
tree | 33dcd7acfe6ebefce25a448b0ddb1df7a208e411 /devel | |
parent | Fix info page problem. (diff) |
Fix info page problem, and add elf patch.
Notes
Notes:
svn path=/head/; revision=13364
Diffstat (limited to 'devel')
-rw-r--r-- | devel/gnu-libtool/Makefile | 5 | ||||
-rw-r--r-- | devel/gnu-libtool/files/patch-ac | 44 | ||||
-rw-r--r-- | devel/libtool/Makefile | 5 | ||||
-rw-r--r-- | devel/libtool/files/patch-ac | 44 | ||||
-rw-r--r-- | devel/libtool13/Makefile | 5 | ||||
-rw-r--r-- | devel/libtool13/files/patch-ac | 44 | ||||
-rw-r--r-- | devel/libtool14/Makefile | 5 | ||||
-rw-r--r-- | devel/libtool14/files/patch-ac | 44 | ||||
-rw-r--r-- | devel/libtool15/Makefile | 5 | ||||
-rw-r--r-- | devel/libtool15/files/patch-ac | 44 |
10 files changed, 235 insertions, 10 deletions
diff --git a/devel/gnu-libtool/Makefile b/devel/gnu-libtool/Makefile index 6f9c27d47e7b..9087bd8f102b 100644 --- a/devel/gnu-libtool/Makefile +++ b/devel/gnu-libtool/Makefile @@ -3,7 +3,7 @@ # Date created: 6 May 1998 # Whom: Motoyuki Kasahara <m-kasahr@sra.co.jp> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1998/05/07 15:58:20 vanilla Exp $ # DISTNAME= libtool-1.2 @@ -16,9 +16,10 @@ GNU_CONFIGURE= yes CONFIGURE_ENV= INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ INSTALL_DATA="${INSTALL_DATA}" -pre-install: +post-install: @if [ ! -f ${PREFIX}/info/dir ]; then \ ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ fi + @install-info ${PREFIX}/info/libtool.info ${PREFIX}/info/dir .include <bsd.port.mk> diff --git a/devel/gnu-libtool/files/patch-ac b/devel/gnu-libtool/files/patch-ac new file mode 100644 index 000000000000..5fa9f97ec8f9 --- /dev/null +++ b/devel/gnu-libtool/files/patch-ac @@ -0,0 +1,44 @@ +--- ltmain.sh.orig Wed Sep 23 23:37:14 1998 ++++ ltmain.sh Wed Sep 23 23:38:02 1998 +@@ -967,6 +967,16 @@ + versuffix="$current.$revision" + ;; + ++ freebsd) ++ version_vars="$version_vars major versuffix" ++ major="$current" ++ if [ $PORTOBJFORMAT = elf ]; then ++ versuffix="$current"; ++ else ++ versuffix="$current.$revision"; ++ fi ++ ;; ++ + *) + $echo "$modename: unknown library version type \`$version_type'" 1>&2 + echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 +--- ltconfig.orig Wed Sep 23 23:37:18 1998 ++++ ltconfig Wed Sep 23 23:39:06 1998 +@@ -1123,10 +1123,21 @@ + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done' + ;; + +-freebsd2* | freebsd3*) ++freebsd2*) + version_type=sunos + library_names_spec='${libname}${release}.so.$versuffix $libname.so' + finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++freebsd3*) ++ version_type=freebsd ++ library_names_spec='${libname}${release}.so.$versuffix $libname.so' ++ if [ $PORTOBJFORMAT = elf ]; then ++ finish_cmds='PATH="$PATH:/sbin" OBJFORMAT="$PORTOBJFORMAT" ldconfig -m $libdir' ++ else ++ finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir' ++ fi + shlibpath_var=LD_LIBRARY_PATH + ;; + diff --git a/devel/libtool/Makefile b/devel/libtool/Makefile index 6f9c27d47e7b..9087bd8f102b 100644 --- a/devel/libtool/Makefile +++ b/devel/libtool/Makefile @@ -3,7 +3,7 @@ # Date created: 6 May 1998 # Whom: Motoyuki Kasahara <m-kasahr@sra.co.jp> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1998/05/07 15:58:20 vanilla Exp $ # DISTNAME= libtool-1.2 @@ -16,9 +16,10 @@ GNU_CONFIGURE= yes CONFIGURE_ENV= INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ INSTALL_DATA="${INSTALL_DATA}" -pre-install: +post-install: @if [ ! -f ${PREFIX}/info/dir ]; then \ ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ fi + @install-info ${PREFIX}/info/libtool.info ${PREFIX}/info/dir .include <bsd.port.mk> diff --git a/devel/libtool/files/patch-ac b/devel/libtool/files/patch-ac new file mode 100644 index 000000000000..5fa9f97ec8f9 --- /dev/null +++ b/devel/libtool/files/patch-ac @@ -0,0 +1,44 @@ +--- ltmain.sh.orig Wed Sep 23 23:37:14 1998 ++++ ltmain.sh Wed Sep 23 23:38:02 1998 +@@ -967,6 +967,16 @@ + versuffix="$current.$revision" + ;; + ++ freebsd) ++ version_vars="$version_vars major versuffix" ++ major="$current" ++ if [ $PORTOBJFORMAT = elf ]; then ++ versuffix="$current"; ++ else ++ versuffix="$current.$revision"; ++ fi ++ ;; ++ + *) + $echo "$modename: unknown library version type \`$version_type'" 1>&2 + echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 +--- ltconfig.orig Wed Sep 23 23:37:18 1998 ++++ ltconfig Wed Sep 23 23:39:06 1998 +@@ -1123,10 +1123,21 @@ + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done' + ;; + +-freebsd2* | freebsd3*) ++freebsd2*) + version_type=sunos + library_names_spec='${libname}${release}.so.$versuffix $libname.so' + finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++freebsd3*) ++ version_type=freebsd ++ library_names_spec='${libname}${release}.so.$versuffix $libname.so' ++ if [ $PORTOBJFORMAT = elf ]; then ++ finish_cmds='PATH="$PATH:/sbin" OBJFORMAT="$PORTOBJFORMAT" ldconfig -m $libdir' ++ else ++ finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir' ++ fi + shlibpath_var=LD_LIBRARY_PATH + ;; + diff --git a/devel/libtool13/Makefile b/devel/libtool13/Makefile index 6f9c27d47e7b..9087bd8f102b 100644 --- a/devel/libtool13/Makefile +++ b/devel/libtool13/Makefile @@ -3,7 +3,7 @@ # Date created: 6 May 1998 # Whom: Motoyuki Kasahara <m-kasahr@sra.co.jp> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1998/05/07 15:58:20 vanilla Exp $ # DISTNAME= libtool-1.2 @@ -16,9 +16,10 @@ GNU_CONFIGURE= yes CONFIGURE_ENV= INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ INSTALL_DATA="${INSTALL_DATA}" -pre-install: +post-install: @if [ ! -f ${PREFIX}/info/dir ]; then \ ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ fi + @install-info ${PREFIX}/info/libtool.info ${PREFIX}/info/dir .include <bsd.port.mk> diff --git a/devel/libtool13/files/patch-ac b/devel/libtool13/files/patch-ac new file mode 100644 index 000000000000..5fa9f97ec8f9 --- /dev/null +++ b/devel/libtool13/files/patch-ac @@ -0,0 +1,44 @@ +--- ltmain.sh.orig Wed Sep 23 23:37:14 1998 ++++ ltmain.sh Wed Sep 23 23:38:02 1998 +@@ -967,6 +967,16 @@ + versuffix="$current.$revision" + ;; + ++ freebsd) ++ version_vars="$version_vars major versuffix" ++ major="$current" ++ if [ $PORTOBJFORMAT = elf ]; then ++ versuffix="$current"; ++ else ++ versuffix="$current.$revision"; ++ fi ++ ;; ++ + *) + $echo "$modename: unknown library version type \`$version_type'" 1>&2 + echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 +--- ltconfig.orig Wed Sep 23 23:37:18 1998 ++++ ltconfig Wed Sep 23 23:39:06 1998 +@@ -1123,10 +1123,21 @@ + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done' + ;; + +-freebsd2* | freebsd3*) ++freebsd2*) + version_type=sunos + library_names_spec='${libname}${release}.so.$versuffix $libname.so' + finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++freebsd3*) ++ version_type=freebsd ++ library_names_spec='${libname}${release}.so.$versuffix $libname.so' ++ if [ $PORTOBJFORMAT = elf ]; then ++ finish_cmds='PATH="$PATH:/sbin" OBJFORMAT="$PORTOBJFORMAT" ldconfig -m $libdir' ++ else ++ finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir' ++ fi + shlibpath_var=LD_LIBRARY_PATH + ;; + diff --git a/devel/libtool14/Makefile b/devel/libtool14/Makefile index 6f9c27d47e7b..9087bd8f102b 100644 --- a/devel/libtool14/Makefile +++ b/devel/libtool14/Makefile @@ -3,7 +3,7 @@ # Date created: 6 May 1998 # Whom: Motoyuki Kasahara <m-kasahr@sra.co.jp> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1998/05/07 15:58:20 vanilla Exp $ # DISTNAME= libtool-1.2 @@ -16,9 +16,10 @@ GNU_CONFIGURE= yes CONFIGURE_ENV= INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ INSTALL_DATA="${INSTALL_DATA}" -pre-install: +post-install: @if [ ! -f ${PREFIX}/info/dir ]; then \ ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ fi + @install-info ${PREFIX}/info/libtool.info ${PREFIX}/info/dir .include <bsd.port.mk> diff --git a/devel/libtool14/files/patch-ac b/devel/libtool14/files/patch-ac new file mode 100644 index 000000000000..5fa9f97ec8f9 --- /dev/null +++ b/devel/libtool14/files/patch-ac @@ -0,0 +1,44 @@ +--- ltmain.sh.orig Wed Sep 23 23:37:14 1998 ++++ ltmain.sh Wed Sep 23 23:38:02 1998 +@@ -967,6 +967,16 @@ + versuffix="$current.$revision" + ;; + ++ freebsd) ++ version_vars="$version_vars major versuffix" ++ major="$current" ++ if [ $PORTOBJFORMAT = elf ]; then ++ versuffix="$current"; ++ else ++ versuffix="$current.$revision"; ++ fi ++ ;; ++ + *) + $echo "$modename: unknown library version type \`$version_type'" 1>&2 + echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 +--- ltconfig.orig Wed Sep 23 23:37:18 1998 ++++ ltconfig Wed Sep 23 23:39:06 1998 +@@ -1123,10 +1123,21 @@ + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done' + ;; + +-freebsd2* | freebsd3*) ++freebsd2*) + version_type=sunos + library_names_spec='${libname}${release}.so.$versuffix $libname.so' + finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++freebsd3*) ++ version_type=freebsd ++ library_names_spec='${libname}${release}.so.$versuffix $libname.so' ++ if [ $PORTOBJFORMAT = elf ]; then ++ finish_cmds='PATH="$PATH:/sbin" OBJFORMAT="$PORTOBJFORMAT" ldconfig -m $libdir' ++ else ++ finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir' ++ fi + shlibpath_var=LD_LIBRARY_PATH + ;; + diff --git a/devel/libtool15/Makefile b/devel/libtool15/Makefile index 6f9c27d47e7b..9087bd8f102b 100644 --- a/devel/libtool15/Makefile +++ b/devel/libtool15/Makefile @@ -3,7 +3,7 @@ # Date created: 6 May 1998 # Whom: Motoyuki Kasahara <m-kasahr@sra.co.jp> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1998/05/07 15:58:20 vanilla Exp $ # DISTNAME= libtool-1.2 @@ -16,9 +16,10 @@ GNU_CONFIGURE= yes CONFIGURE_ENV= INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ INSTALL_DATA="${INSTALL_DATA}" -pre-install: +post-install: @if [ ! -f ${PREFIX}/info/dir ]; then \ ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ fi + @install-info ${PREFIX}/info/libtool.info ${PREFIX}/info/dir .include <bsd.port.mk> diff --git a/devel/libtool15/files/patch-ac b/devel/libtool15/files/patch-ac new file mode 100644 index 000000000000..5fa9f97ec8f9 --- /dev/null +++ b/devel/libtool15/files/patch-ac @@ -0,0 +1,44 @@ +--- ltmain.sh.orig Wed Sep 23 23:37:14 1998 ++++ ltmain.sh Wed Sep 23 23:38:02 1998 +@@ -967,6 +967,16 @@ + versuffix="$current.$revision" + ;; + ++ freebsd) ++ version_vars="$version_vars major versuffix" ++ major="$current" ++ if [ $PORTOBJFORMAT = elf ]; then ++ versuffix="$current"; ++ else ++ versuffix="$current.$revision"; ++ fi ++ ;; ++ + *) + $echo "$modename: unknown library version type \`$version_type'" 1>&2 + echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 +--- ltconfig.orig Wed Sep 23 23:37:18 1998 ++++ ltconfig Wed Sep 23 23:39:06 1998 +@@ -1123,10 +1123,21 @@ + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done' + ;; + +-freebsd2* | freebsd3*) ++freebsd2*) + version_type=sunos + library_names_spec='${libname}${release}.so.$versuffix $libname.so' + finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir' ++ shlibpath_var=LD_LIBRARY_PATH ++ ;; ++ ++freebsd3*) ++ version_type=freebsd ++ library_names_spec='${libname}${release}.so.$versuffix $libname.so' ++ if [ $PORTOBJFORMAT = elf ]; then ++ finish_cmds='PATH="$PATH:/sbin" OBJFORMAT="$PORTOBJFORMAT" ldconfig -m $libdir' ++ else ++ finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir' ++ fi + shlibpath_var=LD_LIBRARY_PATH + ;; + |