diff options
Diffstat (limited to 'textproc/iiimf-le-unit/files/patch-lib_EIMIL_autogen.sh')
-rw-r--r-- | textproc/iiimf-le-unit/files/patch-lib_EIMIL_autogen.sh | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/textproc/iiimf-le-unit/files/patch-lib_EIMIL_autogen.sh b/textproc/iiimf-le-unit/files/patch-lib_EIMIL_autogen.sh deleted file mode 100644 index cee0709c90ed..000000000000 --- a/textproc/iiimf-le-unit/files/patch-lib_EIMIL_autogen.sh +++ /dev/null @@ -1,72 +0,0 @@ ---- lib/EIMIL/autogen.sh Wed May 5 02:15:22 2004 -+++ lib/EIMIL/autogen.sh Wed Feb 16 14:57:02 2005 -@@ -12,7 +12,14 @@ - - DIE=0 - --(libtool --version) < /dev/null > /dev/null 2>&1 || { -+LIBTOOL=libtool15 -+INTLTOOLIZE=intltoolize15 -+ACLOCAL=aclocal15 -+AUTOHEADER=autoheader253 -+AUTOMAKE=automake15 -+AUTOCONF=autoconf253 -+ -+(${LIBTOOL} --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "You must have libtool installed to compile $PROJECT." - echo "Install the appropriate package for your distribution," -@@ -30,7 +37,7 @@ - } - - (grep "^AC_PROG_INTLTOOL" $srcdir/configure.ac >/dev/null) && { -- (intltoolize --version) < /dev/null > /dev/null 2>&1 || { -+ (${INTLTOOLIZE} --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "**Error**: You must have \`intltoolize' installed to compile $PKG_NAME." - echo "Get ftp://ftp.gnome.org/pub/GNOME/stable/sources/intltool/intltool-0.10.tar.gz" -@@ -39,7 +46,7 @@ - } - } - --(autoconf --version) < /dev/null > /dev/null 2>&1 || { -+(${AUTOCONF} --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "You must have autoconf installed to compile $PROJECT." - echo "libtool the appropriate package for your distribution," -@@ -48,8 +55,8 @@ - } - - have_automake=false --if automake --version < /dev/null > /dev/null 2>&1 ; then -- automake_version=`automake --version | grep 'automake (GNU automake)' | sed 's/^[^0-9]*\(.*\)/\1/'` -+if ${AUTOMAKE} --version < /dev/null > /dev/null 2>&1 ; then -+ automake_version=`${AUTOMAKE} --version | grep 'automake (GNU automake)' | sed 's/^[^0-9]*\(.*\)/\1/'` - case $automake_version in - 1.2*|1.3*|1.4) - ;; -@@ -96,19 +103,19 @@ - fi - if grep "^AC_PROG_INTLTOOL" configure.ac >/dev/null; then - echo "Running intltoolize..." -- intltoolize --copy --force --automake -+ ${INTLTOOLIZE} --copy --force --automake - fi - - # intentionally we don't call "libtoolize --force" - # to avoid overriding ../../acfiles/ltmain.h, which we don't want to happen! - --aclocal -I ../../acfiles $ACLOCAL_FLAGS -+${ACLOCAL} -I ../../acfiles $ACLOCAL_FLAGS - - # optionally feature autoheader --(autoheader --version) < /dev/null > /dev/null 2>&1 && autoheader -+(${AUTOHEADER} --version) < /dev/null > /dev/null 2>&1 && ${AUTOHEADER} - --automake -a $am_opt --autoconf -+${AUTOMAKE} -a $am_opt -+${AUTOCONF} - cd $ORIGDIR - - if test -z "$AUTOGEN_SUBDIR_MODE"; then |