From 06378960bf9682adc2e054ba0fbd343c74eb5415 Mon Sep 17 00:00:00 2001 From: Rene Wagner Date: Thu, 18 Aug 2005 13:15:58 +0000 Subject: disapproval of revision 37956db2991804c21644bde2b751e8733883aa93 --- packages/findutils/findutils-4.1.20/.mtn2git_empty | 0 .../findutils/findutils-4.1.20/configure.patch | 90 ++++++++++++++++++++++ packages/findutils/findutils-4.1.20/make.patch | 12 +++ 3 files changed, 102 insertions(+) create mode 100644 packages/findutils/findutils-4.1.20/.mtn2git_empty create mode 100644 packages/findutils/findutils-4.1.20/configure.patch create mode 100644 packages/findutils/findutils-4.1.20/make.patch (limited to 'packages') diff --git a/packages/findutils/findutils-4.1.20/.mtn2git_empty b/packages/findutils/findutils-4.1.20/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/findutils/findutils-4.1.20/configure.patch b/packages/findutils/findutils-4.1.20/configure.patch new file mode 100644 index 0000000000..de9d6afae4 --- /dev/null +++ b/packages/findutils/findutils-4.1.20/configure.patch @@ -0,0 +1,90 @@ + +# +# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher +# + +--- findutils-4.1.20/./configure.in~configure ++++ findutils-4.1.20/./configure.in +@@ -1,5 +1,6 @@ + dnl Process this file with autoconf to produce a configure script. +-AC_INIT(find/pred.c) ++AC_INIT ++AC_CONFIG_SRCDIR([find/pred.c]) + AM_CONFIG_HEADER(config.h) + AC_CANONICAL_HOST + +@@ -23,7 +24,7 @@ + AC_AIX + AC_MINIX + AC_ISC_POSIX +-AC_PROG_CC_STDC ++ + AM_C_PROTOTYPES + AC_PROG_INSTALL + AC_PROG_RANLIB +@@ -48,25 +49,25 @@ + AC_MSG_CHECKING(how to get filesystem type) + fstype=no + # The order of these tests is important. +-AC_TRY_CPP([#include +-#include ], AC_DEFINE(FSTYPE_STATVFS, 1, [Define to use SVR4 statvfs to get filesystem type.]) fstype=SVR4) ++AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include ++#include ]])],[AC_DEFINE(FSTYPE_STATVFS, 1, Define to use SVR4 statvfs to get filesystem type.) fstype=SVR4],[]) + if test $fstype = no; then +-AC_TRY_CPP([#include +-#include ], AC_DEFINE(FSTYPE_USG_STATFS, 1, [Define to use SVR3.2 statfs to get filesystem type.]) fstype=SVR3) ++AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include ++#include ]])],[AC_DEFINE(FSTYPE_USG_STATFS, 1, Define to use SVR3.2 statfs to get filesystem type.) fstype=SVR3],[]) + fi + if test $fstype = no; then +-AC_TRY_CPP([#include +-#include ], AC_DEFINE(FSTYPE_AIX_STATFS, 1, [Define to use AIX3 statfs to get filesystem type.]) fstype=AIX) ++AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include ++#include ]])],[AC_DEFINE(FSTYPE_AIX_STATFS, 1, Define to use AIX3 statfs to get filesystem type.) fstype=AIX],[]) + fi + if test $fstype = no; then +-AC_TRY_CPP([#include ], AC_DEFINE(FSTYPE_MNTENT, 1, [Define to use 4.3BSD getmntent to get filesystem type.]) fstype=4.3BSD) ++AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include ]])],[AC_DEFINE(FSTYPE_MNTENT, 1, Define to use 4.3BSD getmntent to get filesystem type.) fstype=4.3BSD],[]) + fi + if test $fstype = no; then + AC_EGREP_HEADER(f_type;, sys/mount.h, AC_DEFINE(FSTYPE_STATFS, 1, [Define to use 4.4BSD and OSF1 statfs to get filesystem type.]) fstype=4.4BSD/OSF1) + fi + if test $fstype = no; then +-AC_TRY_CPP([#include +-#include ], AC_DEFINE(FSTYPE_GETMNT, 1, [Define to use Ultrix getmnt to get filesystem type.]) fstype=Ultrix) ++AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include ++#include ]])],[AC_DEFINE(FSTYPE_GETMNT, 1, Define to use Ultrix getmnt to get filesystem type.) fstype=Ultrix],[]) + fi + AC_MSG_RESULT($fstype) + +@@ -105,11 +106,11 @@ + # the ANSI2KNR-filtering rules. + #LIBOBJS=`echo $LIBOBJS|sed 's/\.o /\$U.o /g;s/\.o$/\$U.o/'` + AC_CONFIG_SUBDIRS(gnulib) +-AC_OUTPUT( +- Makefile ++AC_CONFIG_FILES([Makefile + find/Makefile find/testsuite/Makefile + xargs/Makefile xargs/testsuite/Makefile + locate/Makefile locate/testsuite/Makefile + intl/Makefile po/Makefile.in po/Makefile + doc/Makefile lib/Makefile +- ) ++ ]) ++AC_OUTPUT +--- findutils-4.1.20/./gnulib/configure.ac~configure ++++ findutils-4.1.20/./gnulib/configure.ac +@@ -1,5 +1,5 @@ + # Process this file with autoconf to produce a configure script. +-AC_INIT(dummy,0) ++AC_INIT([dummy],[0]) + AM_INIT_AUTOMAKE + + AM_CONFIG_HEADER(config.h) +@@ -95,4 +95,5 @@ + gl_YESNO + + +-AC_OUTPUT([Makefile lib/Makefile m4/Makefile po/Makefile]) ++AC_CONFIG_FILES([Makefile lib/Makefile m4/Makefile po/Makefile]) ++AC_OUTPUT diff --git a/packages/findutils/findutils-4.1.20/make.patch b/packages/findutils/findutils-4.1.20/make.patch new file mode 100644 index 0000000000..ecebe3b460 --- /dev/null +++ b/packages/findutils/findutils-4.1.20/make.patch @@ -0,0 +1,12 @@ +Index: findutils-4.1.20/locate/testsuite/Makefile.am +=================================================================== +--- findutils-4.1.20.orig/locate/testsuite/Makefile.am 2001-06-05 02:10:07.000000000 -0400 ++++ findutils-4.1.20/locate/testsuite/Makefile.am 2005-03-11 19:29:30.827233552 -0500 +@@ -13,6 +13,6 @@ + locate.gnu/ignore_case3.exp \ + locate.gnu/ignore_case3.xo + +-DIST_SUBDIRS = config inputs locate.gnu ++DIST_SUBDIRS = config locate.gnu + + CLEANFILES = *.log *.sum site.exp site.bak -- cgit v1.2.3 From bc1c159b493241d7124a5ab9b9d625a884724553 Mon Sep 17 00:00:00 2001 From: Rene Wagner Date: Thu, 18 Aug 2005 13:20:10 +0000 Subject: disapproval of revision 1a5a8146449eef0b7209e54b4ccdf42558df8ef7 --- packages/findutils/files/.mtn2git_empty | 0 packages/findutils/files/configure.patch | 90 --------------------------- packages/findutils/files/make.patch | 12 ---- packages/findutils/findutils-native_4.1.20.bb | 4 -- 4 files changed, 106 deletions(-) delete mode 100644 packages/findutils/files/.mtn2git_empty delete mode 100644 packages/findutils/files/configure.patch delete mode 100644 packages/findutils/files/make.patch delete mode 100644 packages/findutils/findutils-native_4.1.20.bb (limited to 'packages') diff --git a/packages/findutils/files/.mtn2git_empty b/packages/findutils/files/.mtn2git_empty deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/packages/findutils/files/configure.patch b/packages/findutils/files/configure.patch deleted file mode 100644 index de9d6afae4..0000000000 --- a/packages/findutils/files/configure.patch +++ /dev/null @@ -1,90 +0,0 @@ - -# -# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher -# - ---- findutils-4.1.20/./configure.in~configure -+++ findutils-4.1.20/./configure.in -@@ -1,5 +1,6 @@ - dnl Process this file with autoconf to produce a configure script. --AC_INIT(find/pred.c) -+AC_INIT -+AC_CONFIG_SRCDIR([find/pred.c]) - AM_CONFIG_HEADER(config.h) - AC_CANONICAL_HOST - -@@ -23,7 +24,7 @@ - AC_AIX - AC_MINIX - AC_ISC_POSIX --AC_PROG_CC_STDC -+ - AM_C_PROTOTYPES - AC_PROG_INSTALL - AC_PROG_RANLIB -@@ -48,25 +49,25 @@ - AC_MSG_CHECKING(how to get filesystem type) - fstype=no - # The order of these tests is important. --AC_TRY_CPP([#include --#include ], AC_DEFINE(FSTYPE_STATVFS, 1, [Define to use SVR4 statvfs to get filesystem type.]) fstype=SVR4) -+AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include -+#include ]])],[AC_DEFINE(FSTYPE_STATVFS, 1, Define to use SVR4 statvfs to get filesystem type.) fstype=SVR4],[]) - if test $fstype = no; then --AC_TRY_CPP([#include --#include ], AC_DEFINE(FSTYPE_USG_STATFS, 1, [Define to use SVR3.2 statfs to get filesystem type.]) fstype=SVR3) -+AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include -+#include ]])],[AC_DEFINE(FSTYPE_USG_STATFS, 1, Define to use SVR3.2 statfs to get filesystem type.) fstype=SVR3],[]) - fi - if test $fstype = no; then --AC_TRY_CPP([#include --#include ], AC_DEFINE(FSTYPE_AIX_STATFS, 1, [Define to use AIX3 statfs to get filesystem type.]) fstype=AIX) -+AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include -+#include ]])],[AC_DEFINE(FSTYPE_AIX_STATFS, 1, Define to use AIX3 statfs to get filesystem type.) fstype=AIX],[]) - fi - if test $fstype = no; then --AC_TRY_CPP([#include ], AC_DEFINE(FSTYPE_MNTENT, 1, [Define to use 4.3BSD getmntent to get filesystem type.]) fstype=4.3BSD) -+AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include ]])],[AC_DEFINE(FSTYPE_MNTENT, 1, Define to use 4.3BSD getmntent to get filesystem type.) fstype=4.3BSD],[]) - fi - if test $fstype = no; then - AC_EGREP_HEADER(f_type;, sys/mount.h, AC_DEFINE(FSTYPE_STATFS, 1, [Define to use 4.4BSD and OSF1 statfs to get filesystem type.]) fstype=4.4BSD/OSF1) - fi - if test $fstype = no; then --AC_TRY_CPP([#include --#include ], AC_DEFINE(FSTYPE_GETMNT, 1, [Define to use Ultrix getmnt to get filesystem type.]) fstype=Ultrix) -+AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include -+#include ]])],[AC_DEFINE(FSTYPE_GETMNT, 1, Define to use Ultrix getmnt to get filesystem type.) fstype=Ultrix],[]) - fi - AC_MSG_RESULT($fstype) - -@@ -105,11 +106,11 @@ - # the ANSI2KNR-filtering rules. - #LIBOBJS=`echo $LIBOBJS|sed 's/\.o /\$U.o /g;s/\.o$/\$U.o/'` - AC_CONFIG_SUBDIRS(gnulib) --AC_OUTPUT( -- Makefile -+AC_CONFIG_FILES([Makefile - find/Makefile find/testsuite/Makefile - xargs/Makefile xargs/testsuite/Makefile - locate/Makefile locate/testsuite/Makefile - intl/Makefile po/Makefile.in po/Makefile - doc/Makefile lib/Makefile -- ) -+ ]) -+AC_OUTPUT ---- findutils-4.1.20/./gnulib/configure.ac~configure -+++ findutils-4.1.20/./gnulib/configure.ac -@@ -1,5 +1,5 @@ - # Process this file with autoconf to produce a configure script. --AC_INIT(dummy,0) -+AC_INIT([dummy],[0]) - AM_INIT_AUTOMAKE - - AM_CONFIG_HEADER(config.h) -@@ -95,4 +95,5 @@ - gl_YESNO - - --AC_OUTPUT([Makefile lib/Makefile m4/Makefile po/Makefile]) -+AC_CONFIG_FILES([Makefile lib/Makefile m4/Makefile po/Makefile]) -+AC_OUTPUT diff --git a/packages/findutils/files/make.patch b/packages/findutils/files/make.patch deleted file mode 100644 index ecebe3b460..0000000000 --- a/packages/findutils/files/make.patch +++ /dev/null @@ -1,12 +0,0 @@ -Index: findutils-4.1.20/locate/testsuite/Makefile.am -=================================================================== ---- findutils-4.1.20.orig/locate/testsuite/Makefile.am 2001-06-05 02:10:07.000000000 -0400 -+++ findutils-4.1.20/locate/testsuite/Makefile.am 2005-03-11 19:29:30.827233552 -0500 -@@ -13,6 +13,6 @@ - locate.gnu/ignore_case3.exp \ - locate.gnu/ignore_case3.xo - --DIST_SUBDIRS = config inputs locate.gnu -+DIST_SUBDIRS = config locate.gnu - - CLEANFILES = *.log *.sum site.exp site.bak diff --git a/packages/findutils/findutils-native_4.1.20.bb b/packages/findutils/findutils-native_4.1.20.bb deleted file mode 100644 index 4d9b4e2ea2..0000000000 --- a/packages/findutils/findutils-native_4.1.20.bb +++ /dev/null @@ -1,4 +0,0 @@ -inherit native -include findutils_4.1.20.bb - -S = "${WORKDIR}/findutils-4.1.20" -- cgit v1.2.3