]> git.pld-linux.org Git - packages/findutils.git/blobdiff - findutils.spec
- updated (by autoup) to 4.1.6
[packages/findutils.git] / findutils.spec
index 6af823900e15918605673fabd1cb163c9519669e..511307ccfdac612a67090a3be820601d24ef2612 100644 (file)
-Summary:       GNU Find Utilities (find, xargs, and locate)
-Summary(de):   GNU-Suchprogramme (find, xargs und locate)
-Summary(fr):   Utilitaires de recherche de GNU (find, xargs, et locate)
-Summary(pl):   GNU narzêdzia do odnajdywania plików (find, xargs i locate)
+Summary:       GNU Find Utilities (find, xargs)
+Summary(de):   GNU-Suchprogramme (find, xargs)
+Summary(fr):   Utilitaires de recherche de GNU (find, xargs)
+Summary(pl):   GNU narzêdzia do odnajdywania plików (find, xargs)
 Summary(tr):   GNU dosya arama araçlarý
 Name:          findutils
-Version:       4.1
-Release:       30
-Copyright:     GPL
+Version:       4.1.6
+Release:       1
+License:       GPL
 Group:         Utilities/File
 Group(pl):     Narzêdzia/Pliki
-Source0:       ftp://prep.ai.mit.edu/pub/gnu/%{name}-%{version}.tar.gz
-Source1:       updatedb.cron
-Source2:       xargs.1.pl
-Patch0:                findutils.patch
-Patch1:                findutils-info.patch
-Prereq:                /sbin/install-info
-Requires:      mktemp
-Buildroot:     /tmp/%{name}-%{version}-root
+Source0:       ftp://alpha.gnu.org/gnu/%{name}-%{version}.tar.gz
+Patch0:                findutils-info.patch
+Patch1:                findutils-pl_manpages.patch
+Patch2:                findutils-mktemp.patch
+Patch3:                findutils-getshort.patch
+Patch4:                findutils-DESTDIR.patch
+BuildRequires: texinfo
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
-This package contains programs to help you locate files on your system. The
-find program can search through a hierarchy of directories looking for files
-matching a certain set of criteria (such as a filename pattern). The locate
-program searches a database (create by updatedb) to quickly find a file
-matching a given pattern.
+The findutils package contains programs which will help you locate
+files on your system. The find utility searches through a hierarchy of
+directories looking for files which match a certain set of criteria
+(such as a filename pattern). The locate utility searches a database
+(create by updatedb) to quickly find a file matching a given pattern.
+The xargs utility builds and executes command lines from standard
+input arguments (usually lists of file names generated by the find
+command).
 
 %description -l de
-Dieses Paket enthält Programme zum Suchen von Dateien auf
-dem System. Das Programm 'find' kann eine Verzeichnisstruktur
-durchsuchen und Dateien finden, die den Suchkritierien entsprechen
-(z.B. einem Dateinamenmuster). Das Programm 'locate' durchsucht
-eine Datenbank (durch updatedb erstellt), um eine Datei, die dem
-Suchmuster entspricht, zu finden.
+Das findutils-Paket enthält Programme, die dabei helfen, Dateien auf
+Ihrem System zu finden. Das Find-Utility durchsucht die
+Verzeichnishierarchie nach Dateien, die zu bestimmten Kriterien (z.B.
+Dateiname) passen. Das locate-Utility durchsucht eine Datenbank
+(erzeugt durch updatedb), um die Dateien schneller finden zu können.
+xargs konstruiert Kommandozeilen von der Standardeingabe (z.B.
+Dateilisten, die von find erzeugt werden), und führt sie aus.
 
 %description -l fr
-Ce package contient des programmes pour vous aider à localiser
-des fichiers sur votre système. Le programme find peut rechercher
-à travers une hiérarchie de répertoires des fichiers conformes à
-certains critères (comme un type de nom). Le programme locatecherche 
-une base de données (crée par updatedb) pour trouver rapidement
-un fichier correspondant au type demandé.
+Ce package contient des programmes pour vous aider à localiser des
+fichiers sur votre système. Le programme find peut rechercher à
+travers une hiérarchie de répertoires des fichiers conformes à
+certains critères (comme un type de nom).
 
 %description -l pl
-W pakiecie znajduj± siê narzêdzia pozwalaj±ce na poszukiwanie okre¶lonych
-plików. Program find s³u¿y do przeszukania drzewa katalogów za plikami o
-okre¶lonych parametrach, jak nazwa, uprawnienia, typ, data ostatniej
-modyfikacji. Program locate lokalizuje pliki korzystaj±c z utworzonej
-poleceniem updatedb bazy danych, dziêki czemu jest znacznie szybszy od find.
+W pakiecie znajduj± siê narzêdzia pozwalaj±ce na poszukiwanie
+okre¶lonych plików. Program find s³u¿y do poszukiwania w drzewie
+katalogów plików o okre¶lonych parametrach, jak nazwa, uprawnienia,
+typ czy data ostatniej modyfikacji.
 
 %description -l tr
-Bu pakette yer alan yazýlýmlar sisteminizde yer alan dosyalarý bulabilmeniz
-için hazýrlanmýþlardýr. find programý ile belirli özellikleri olan bir
-yazýlýmý bir dizin hiyerarþisi altýnda arayabilirsiniz. locate yazýlýmý ise,
-updatedb tarafýndan hazýrlanan bir veri tabaný üzerinde, belirtilen
-dosyalarý arar.
+Bu pakette yer alan yazýlýmlar sisteminizde yer alan dosyalarý
+bulabilmeniz için hazýrlanmýþlardýr. find programý ile belirli
+özellikleri olan bir yazýlýmý bir dizin hiyerarþisi altýnda
+arayabilirsiniz.
 
 %prep
-%setup -q
+%setup  -q
 %patch0 -p1 
 %patch1 -p1
+%patch2 -p1 
+%patch3 -p1
+%patch4 -p1
 
 %build
-CFLAGS="$RPM_OPT_FLAGS" LDFLAGS="-s" \
-./configure %{_target} \
-       --prefix=/usr \
-       --exec-prefix=/usr
+#autoconf
+touch lib/{stat,lstat}.c
+automake
+%configure 
 
-make
+%{__make}
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT/usr/{lib/findutils,share/man/{man{1,5},pl/man1}} \
-       $RPM_BUILD_ROOT/etc/cron.daily
+install -d $RPM_BUILD_ROOT%{_mandir}/pl/man1
 
-make   prefix=$RPM_BUILD_ROOT/usr \
-       exec_prefix=$RPM_BUILD_ROOT/usr \
-       install
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
        
-install %{SOURCE1} $RPM_BUILD_ROOT/etc/cron.daily
-install %{SOURCE2} $RPM_BUILD_ROOT%{_mandir}/pl/man1/xargs.1
+install pl/*.1  $RPM_BUILD_ROOT%{_mandir}/pl/man1
 
-gzip -9fn $RPM_BUILD_ROOT%{_infodir}/find.info* \
-       $RPM_BUILD_ROOT%{_mandir}/{man[15]/*,pl/man1/*} \
-       NEWS README TODO ChangeLog
+gzip -9nf NEWS README TODO ChangeLog
+       
+%find_lang %{name}
 
 %post
-/sbin/install-info %{_infodir}/find.info.gz /etc/info-dir
+[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
 
-%preun
-if [ "$1" = "0" ]; then
-    /sbin/install-info --delete %{_infodir}/find.info.gz /etc/info-dir
-fi
+%postun
+[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
-%files
+%files -f %{name}.lang
 %defattr(644,root,root,755)
 %doc {NEWS,README,TODO,ChangeLog}.gz
-%attr(750,root,root) %config /etc/cron.daily/updatedb.cron
-%attr(755,root,root) /usr/bin/*
-%attr(755,root,root) %dir /usr/lib/findutils
-%attr(755,root,root) /usr/lib/findutils/*
+%attr(755,root,root) %{_bindir}/find
+%attr(755,root,root) %{_bindir}/xargs
 
-%{_mandir}/man[15]/*
+%{_mandir}/man1/find.1*
+%{_mandir}/man1/xargs.1*
 %lang(pl) %{_mandir}/pl/man1/*
-
 %{_infodir}/find.info*
-
-%changelog
-* Wed May 12 1999 Piotr Czerwiñski <pius@pld.org.pl>
-  [4.1-30]
-- package is now FHS 2.0 compliant.
-
-* Tue Apr 20 1999 Piotr Czerwiñski <pius@pld.org.pl>
-  [4.1-29]
-- recompiled on rpm 3.
-
-* Tue Apr  5 1999 Piotr Czerwiñski <pius@pld.org.pl>
-  [4.1-28]
-- revision up to 28,
-- added Group(pl),
-- changed BuildRoot to /tmp/%%{name}-%%{version}-root,
-- removed 'rm -rf $RPM_BUILD_ROOT' from %build,
-- simplifications in %install,
-- standarized {un}registering info pages (added findutils-info.patch),
-- added more documentation,
-- added pl man page for xargs(1L),
-- added gzipping documentation and man pages,
-- changes in %files (for rpm-2.9x).
-
-* Sun Oct  4 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
-  [4.1.26]
-- changed way passing $RPM_OPT_FLAGS.
-
-* Fri Jun 12 1998 Wojtek ¦lusarczyk <wojtek@shadow.eu.org>
-  [4.1.26d]
-- added pl translation (made by Piotr Dembiñski <hektor@kki.net.pl>),
-- macro %%{name}-%%{version} in Source,
-- minor modifications of spec file.
-
-* Wed Jun 10 1998 Erik Troan <ewt@redhat.com>
-- updated updatedb cron script to not look for $TMPNAME.n (which was
-  a relic anyway)
-- added -b parameters to all of the patches
-
-* Fri Apr 24 1998 Prospector System <bugs@redhat.com>
-- translations modified for de, fr, tr
-
-* Mon Mar 09 1998 Michael K. Johnson <johnsonm@redhat.com>
-- make updatedb.cron use mktemp correctly
-- make updatedb use mktemp
-
-* Sun Nov 09 1997 Michael K. Johnson <johnsonm@redhat.com>
-- nobody should own tmpfile
-- ignore /net
-
-* Wed Nov 05 1997 Michael K. Johnson <johnsonm@redhat.com>
-- made updatedb.cron do a better job of cleaning up after itself.
-
-* Tue Oct 28 1997 Donald Barnes <djb@redhat.com>
-- fixed 64 bit-ism in getline.c, patch tacked on to end of glibc one
-
-* Thu Oct 23 1997 Erik Troan <ewt@redhat.com>
-- added patch for glibc 2.1
-
-* Fri Oct 17 1997 Donnie Barnes <djb@redhat.com>
-- added BuildRoot support
-
-* Tue Oct 14 1997 Michael K. Johnson <johnsonm@redhat.com>
-- made updatedb.cron work even if "nobody" can't read /root
-- use mktemp in updatedb.cron
-
-* Sun Sep 14 1997 Erik Troan <ewt@redhat.com>
-- added missing info pages
-- uses install-info
-
-* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
-- built with glibc
-
-* Mon Apr 21 1997 Michael K. Johnson <johnsonm@redhat.com>
-- fixed updatedb.cron
This page took 0.074165 seconds and 4 git commands to generate.