diff options
author | sobomax <sobomax@FreeBSD.org> | 2002-04-25 18:37:03 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2002-04-25 18:37:03 +0000 |
commit | 7098432a09ec1ec17c6b9906c8f8819d71ad14bc (patch) | |
tree | a97c3231e339e35ab7ee4ae9c7d9c44cc1e653b3 /www/galeon2/files | |
parent | 3b6b1f71028dcddf25d95ffe3b199485d0742e8e (diff) | |
download | FreeBSD-ports-7098432a09ec1ec17c6b9906c8f8819d71ad14bc.zip FreeBSD-ports-7098432a09ec1ec17c6b9906c8f8819d71ad14bc.tar.gz |
USE_LIBTOOL strikes back: use the new and improved way for dealing with
configure scripts created using autoconf 2.13 or later, which allows
to replace many patch-ltmain.sh out there with USE_LIBTOOL and one
additional line in configure script.
Diffstat (limited to 'www/galeon2/files')
-rw-r--r-- | www/galeon2/files/patch-configure | 55 | ||||
-rw-r--r-- | www/galeon2/files/patch-ltmain.sh | 45 |
2 files changed, 15 insertions, 85 deletions
diff --git a/www/galeon2/files/patch-configure b/www/galeon2/files/patch-configure index af5c091..d601b1d 100644 --- a/www/galeon2/files/patch-configure +++ b/www/galeon2/files/patch-configure @@ -1,47 +1,22 @@ $FreeBSD$ ---- configure.orig Wed Mar 13 10:57:19 2002 -+++ configure Wed Mar 13 10:58:12 2002 -@@ -9966,7 +9966,7 @@ - fi +--- configure.orig Thu Apr 25 21:02:26 2002 ++++ configure Thu Apr 25 21:03:14 2002 +@@ -5434,6 +5434,7 @@ + # This can be used to rebuild libtool when needed + LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" ++$ac_aux_dir/ltconfig $LIBTOOL_DEPS -- CATOBJEXT=.gmo -+ CATOBJEXT=.mo - fi - - else -@@ -10088,7 +10088,7 @@ - - BUILD_INCLUDED_LIBINTL=yes - USE_INCLUDED_LIBINTL=yes -- CATOBJEXT=.gmo -+ CATOBJEXT=.mo - INTLLIBS="\$(top_builddir)/intl/libintl.a $LIBICONV" - LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` - fi -@@ -10173,7 +10173,7 @@ - fi + # Always use our own libtool. + LIBTOOL='$(SHELL) $(top_builddir)/libtool' +@@ -7078,7 +7079,7 @@ + #define ENABLE_NAUTILUS_VIEW 1 + EOF - for lang in $ALL_LINGUAS; do -- GMOFILES="$GMOFILES $lang.gmo" -+ GMOFILES="$GMOFILES $lang.mo" - POFILES="$POFILES $lang.po" - done +- _gnome_modules="$_gnome_modules bonobox nautilus" ++ _gnome_modules="$_gnome_modules bonobox" + fi + echo "$ac_t""$enable_nautilus_view" 1>&6 -@@ -10502,10 +10502,10 @@ - s%@INSTALL_DATA@%$INSTALL_DATA%g - s%@PACKAGE@%$PACKAGE%g - s%@VERSION@%$VERSION%g --s%@ACLOCAL@%$ACLOCAL%g --s%@AUTOCONF@%$AUTOCONF%g --s%@AUTOMAKE@%$AUTOMAKE%g --s%@AUTOHEADER@%$AUTOHEADER%g -+s%@ACLOCAL@%/usr/bin/true%g -+s%@AUTOCONF@%/usr/bin/true%g -+s%@AUTOMAKE@%/usr/bin/true%g -+s%@AUTOHEADER@%/usr/bin/true%g - s%@MAKEINFO@%$MAKEINFO%g - s%@SET_MAKE@%$SET_MAKE%g - s%@host@%$host%g diff --git a/www/galeon2/files/patch-ltmain.sh b/www/galeon2/files/patch-ltmain.sh deleted file mode 100644 index 91713d2..0000000 --- a/www/galeon2/files/patch-ltmain.sh +++ /dev/null @@ -1,45 +0,0 @@ - -$FreeBSD$ - ---- ltmain.sh.orig Wed Jan 23 11:38:40 2002 -+++ ltmain.sh Sun Feb 3 01:44:17 2002 -@@ -1037,8 +1037,16 @@ - continue - ;; - -+ -pthread) -+ compile_command="$compile_command -pthread" -+ finalize_command="$finalize_command -pthread" -+ compiler_flags="$compiler_flags -pthread" -+ continue -+ ;; -+ - -module) - module=yes -+ build_old_libs=no - continue - ;; - -@@ -2412,6 +2420,9 @@ - *-*-netbsd*) - # Don't link with libc until the a.out ld.so is fixed. - ;; -+ *-*-freebsd*) -+ # FreeBSD doesn't need this... -+ ;; - *) - # Add libc to deplibs on all other systems if necessary. - if test "$build_libtool_need_lc" = "yes"; then -@@ -4179,10 +4190,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" |