]> git.pld-linux.org Git - packages/diffutils.git/commitdiff
- updated to 2.8.4
authorJakub Bogusz <qboosh@pld-linux.org>
Sun, 13 Apr 2003 19:22:06 +0000 (19:22 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- updated info patch, removed obsolete DESTDIR and immunix-owl-tmp patches
- added pl.po-update patch (few updated entries, many typos)
- removed outdated external man pages (up to date man pages containing only
  command line options descriptions are included in package)
- fixed typos in pl description

Changed files:
    diffutils-DESTDIR.patch -> 1.3
    diffutils-immunix-owl-tmp.patch -> 1.2
    diffutils-info.patch -> 1.3
    diffutils-pl.po-update.patch -> 1.1
    diffutils.spec -> 1.41

diffutils-DESTDIR.patch [deleted file]
diffutils-immunix-owl-tmp.patch [deleted file]
diffutils-info.patch
diffutils-pl.po-update.patch [new file with mode: 0644]
diffutils.spec

diff --git a/diffutils-DESTDIR.patch b/diffutils-DESTDIR.patch
deleted file mode 100644 (file)
index 0889e6f..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
---- diffutils-2.7.2/Makefile.in.orig   Mon Sep 14 08:59:43 1998
-+++ diffutils-2.7.2/Makefile.in        Tue Jul  3 19:52:17 2001
-@@ -48,9 +48,9 @@
- exec_prefix = @exec_prefix@
- edit_program_name = sed '@program_transform_name@'
--bindir = $(exec_prefix)/bin
-+bindir = @bindir@
--infodir = $(prefix)/info
-+infodir = @infodir@
- DEFAULT_DIFF_PROGRAM = $(bindir)/`echo diff | $(edit_program_name)`
- DEFAULT_EDITOR_PROGRAM = ed
-@@ -181,20 +181,16 @@
- install: all installdirs
-       for p in $(PROGRAMS); do \
--        $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p | $(edit_program_name)`; \
-+        $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p | $(edit_program_name)`; \
-       done
-       if test -f diff.info; then d=.; else :; d=$(srcdir); fi; \
--      $(INSTALL_DATA) $$d/diff.info $(infodir)/diff.info; \
--      if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; \
--      then install-info --dir-file=$(infodir) $$d/diff.info; \
--      else :; \
--      fi
-+      $(INSTALL_DATA) $$d/diff.info $(DESTDIR)$(infodir)/diff.info
- install-strip:
-       $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
- installdirs:
--      $(SHELL) $(srcdir)/mkinstalldirs $(bindir) $(infodir)
-+      $(SHELL) $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir) $(DESTDIR)$(infodir)
- # We need more tests.
- check: $(PROGRAMS)
diff --git a/diffutils-immunix-owl-tmp.patch b/diffutils-immunix-owl-tmp.patch
deleted file mode 100644 (file)
index 89f1584..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
---- diffutils-2.7.2/sdiff.c.immunix-owl-tmp    Fri Mar 30 14:38:57 2001
-+++ diffutils-2.7.2/sdiff.c    Fri Mar 30 14:42:35 2001
-@@ -25,6 +25,7 @@
- static char const authorship_msgid[] =
-   "Written by Thomas Lord.";
\f
-+#define _GNU_SOURCE
- #include <stdio.h>
- #include <signal.h>
- #include "getopt.h"
-@@ -1005,13 +1006,27 @@
-       case 'q':
-         return 0;
-       case 'e':
--        if (! tmpname && ! (tmpname = private_tempnam ()))
--          perror_fatal ("tmpnam");
-+        {
-+          int tfd;
-+          FILE *tmp;
--        tmpmade = 1;
-+          if (tmpmade)
-+            {
-+              unlink (tmpname);
-+              tmpmade = 0;
-+              free (tmpname);
-+            }
--        {
--          FILE *tmp = ck_fopen (tmpname, "w+");
-+          asprintf (&tmpname, "%s/sdiff.XXXXXX",
-+                    getenv("TMPDIR") ?: P_tmpdir);
-+          tfd = mkstemp(tmpname);
-+          if (tfd == -1)
-+            perror_fatal ("temporary file name");
-+          tmp = fdopen (tfd, "w+");
-+          if (tmp == NULL)
-+            perror_fatal ("temporary file name");
-+
-+          tmpmade = 1;
-           switch (cmd1)
-             {
index ea848d4e1109ecc72289dca18be00f9579fbc328..b9a7be136b5d3f24c81880b10e014ab41d1ed535 100644 (file)
@@ -1,17 +1,27 @@
-diff -Nru diffutils-2.7/diff.texi diffutils-2.7.new/diff.texi
---- diffutils-2.7/diff.texi    Fri Sep 30 21:54:40 1994
-+++ diffutils-2.7.new/diff.texi        Fri Apr  2 15:59:41 1999
-@@ -34,6 +34,13 @@
- by the Foundation.
- @end ifinfo
+--- diffutils-2.8.4/doc/diff.texi.orig Mon Jun 17 07:55:42 2002
++++ diffutils-2.8.4/doc/diff.texi      Sun Apr 13 16:33:29 2003
+@@ -35,18 +35,13 @@
  
-+@ifinfo
+ @c Debian install-info (up through at least version 1.9.20) uses only the
+ @c first dircategory.  Put this one first, as it is more useful in practice.
+-@dircategory Individual utilities
 +@dircategory File utilities:
-+@direntry
-+* diffutils: (diff).                  The GNU diff utilities
-+@end direntry
-+@end ifinfo
-+
+ @direntry
+-* cmp: (diff)Invoking cmp.                      Compare 2 files byte by byte.
+-* diff: (diff)Invoking diff.                    Compare 2 files line by line.
+-* diff3: (diff)Invoking diff3.                  Compare 3 files line by line.
+-* patch: (diff)Invoking patch.                  Apply a patch to a file.
+-* sdiff: (diff)Invoking sdiff.                  Merge 2 files side-by-side.
+-@end direntry
+-
+-@dircategory GNU packages
+-@direntry
+-* Diff: (diff).                 Comparing and merging files.
++* cmp: (diff)cmp.                     Compare 2 files byte by byte
++* diff: (diff)diff.                   Compare 2 files line by line
++* diff3: (diff)diff3.                 Compare 3 files line by line
++* patch: (diff)patch.                 Apply a patch to a file
++* sdiff: (diff)sdiff.                 Merge 2 files side-by-side
+ @end direntry
  @titlepage
- @title Comparing and Merging Files
- @subtitle @code{diff}, @code{diff3}, @code{sdiff}, @code{cmp}, and @code{patch}
diff --git a/diffutils-pl.po-update.patch b/diffutils-pl.po-update.patch
new file mode 100644 (file)
index 0000000..07047f6
--- /dev/null
@@ -0,0 +1,345 @@
+--- diffutils-2.8.4/po/pl.po.orig      2002-06-28 09:05:42.000000000 +0200
++++ diffutils-2.8.4/po/pl.po   2003-04-13 21:16:48.000000000 +0200
+@@ -5,9 +5,9 @@
+ #
+ msgid ""
+ msgstr ""
+-"Project-Id-Version: GNU diffutils 2.7.10\n"
++"Project-Id-Version: GNU diffutils 2.8.4\n"
+ "POT-Creation-Date: 2002-06-28 00:05-0700\n"
+-"PO-Revision-Date: 2002-03-12 15:00+0100\n"
++"PO-Revision-Date: 2002-04-13 17:02+0200\n"
+ "Last-Translator: Rafa³ Maszkowski <rzm@icm.edu.pl>\n"
+ "Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
+ "MIME-Version: 1.0\n"
+@@ -24,7 +24,7 @@
+ #: lib/error.c:128 lib/error.c:156
+ msgid "Unknown system error"
+-msgstr "Niezany b³±d systemu"
++msgstr "Nieznany b³±d systemu"
+ #: lib/file-type.c:42
+ msgid "regular empty file"
+@@ -52,7 +52,7 @@
+ #: lib/file-type.c:57
+ msgid "symbolic link"
+-msgstr ""
++msgstr "dowi±zanie symboliczne"
+ #: lib/file-type.c:60
+ msgid "socket"
+@@ -77,7 +77,7 @@
+ #: lib/getopt.c:693
+ #, c-format
+ msgid "%s: option `%s' is ambiguous\n"
+-msgstr "%s: opcja `%s' is ambiguous\n"
++msgstr "%s: opcja `%s' jest niejednoznaczna\n"
+ #: lib/getopt.c:718
+ #, c-format
+@@ -102,7 +102,7 @@
+ #: lib/getopt.c:774
+ #, c-format
+ msgid "%s: unrecognized option `%c%s'\n"
+-msgstr "%s: unrecognized option `%c%s'\n"
++msgstr "%s: nierozpoznana opcja `%c%s'\n"
+ #: lib/getopt.c:800
+ #, c-format
+@@ -143,7 +143,7 @@
+ #: lib/regex.c:1376
+ msgid "Invalid collation character"
+-msgstr "Zly znak zbiorczy"
++msgstr "Z³y znak zbiorczy"
+ #: lib/regex.c:1379
+ msgid "Invalid character class name"
+@@ -183,7 +183,7 @@
+ #: lib/regex.c:1406
+ msgid "Invalid preceding regular expression"
+-msgstr "Z³e poprzedzj±ce wyra¿enie regularne"
++msgstr "Z³e poprzedzaj±ce wyra¿enie regularne"
+ #: lib/regex.c:1409
+ msgid "Premature end of regular expression"
+@@ -199,7 +199,7 @@
+ #: lib/regex.c:8034
+ msgid "No previous regular expression"
+-msgstr "Brak porzedniego wyra¿enia regularnego"
++msgstr "Brak poprzedniego wyra¿enia regularnego"
+ #: lib/xmalloc.c:63
+ msgid "memory exhausted"
+@@ -211,10 +211,9 @@
+ #. copyright symbol is not available, please leave it as "(C)".
+ #: lib/version-etc.c:50
+ msgid "(C)"
+-msgstr ""
++msgstr "(C)"
+ #: lib/version-etc.c:63
+-#, fuzzy
+ msgid ""
+ "This program comes with NO WARRANTY, to the extent permitted by law.\n"
+ "You may redistribute copies of this program\n"
+@@ -223,7 +222,7 @@
+ msgstr ""
+ "Autorzy nie daj± ¯ADNYCH gwarancji, do granic, na które zezwala prawo.\n"
+ "Program mo¿e byæ rozpowszechniany na warunkach Ogólnej Licencji Publicznej\n"
+-"GNU; szczególy s± opisane w pliku COPYING."
++"GNU; szczegó³y s± opisane w pliku COPYING."
+ #: src/analyze.c:808 src/diff.c:1259
+ #, c-format
+@@ -239,7 +238,7 @@
+ #. if possible.
+ #: src/cmp.c:47
+ msgid "Written by Torbjorn Granlund and David MacKenzie."
+-msgstr "Napisany przez Torbjorna Gralunda i Davida MacKenzie."
++msgstr "Napisany przez Torbjörna Gralunda i Davida MacKenzie."
+ #: src/cmp.c:118 src/diff.c:834 src/diff3.c:403 src/sdiff.c:167
+ #, c-format
+@@ -272,11 +271,11 @@
+ #: src/cmp.c:161
+ msgid "-i SKIP  --ignore-initial=SKIP  Skip the first SKIP bytes of input."
+-msgstr "-i OMIÑ  --ignore-initial=OMIÑ  PRzeskoczenie pierwszych OMIÑ bajtów."
++msgstr "-i OMIÑ  --ignore-initial=OMIÑ  Przeskoczenie pierwszych OMIÑ bajtów."
+ #: src/cmp.c:162
+ msgid "-i SKIP1:SKIP2  --ignore-initial=SKIP1:SKIP2"
+-msgstr "-i SKOK1:SKOK2--ignore-initial=SKOK1:SKOK2"
++msgstr "-i SKOK1:SKOK2  --ignore-initial=SKOK1:SKOK2"
+ #: src/cmp.c:163
+ msgid ""
+@@ -303,12 +302,12 @@
+ #: src/cmp.c:168 src/diff.c:923 src/diff3.c:432 src/sdiff.c:205
+ msgid "--help  Output this help."
+-msgstr "--help  Wypisanie tego helpu."
++msgstr "--help  Wypisanie tego opisu."
+ #: src/cmp.c:177
+ #, c-format
+ msgid "Usage: %s [OPTION]... FILE1 [FILE2 [SKIP1 [SKIP2]]]\n"
+-msgstr "U¿ycie: %s [OPCJA]... PLIK1 [PLIK2 [SKOK1 [SKOK2]]]\n"
++msgstr "Sk³adnia: %s [OPCJA]... PLIK1 [PLIK2 [SKOK1 [SKOK2]]]\n"
+ #: src/cmp.c:179
+ msgid "Compare two files byte by byte."
+@@ -334,7 +333,7 @@
+ #: src/cmp.c:188 src/diff.c:929 src/diff3.c:451 src/sdiff.c:223
+ msgid "Report bugs to <bug-gnu-utils@gnu.org>."
+-msgstr "Inofmracje o b³êdach: bug-gnu-utils@gnu.org ."
++msgstr "Informacje o b³êdach: bug-gnu-utils@gnu.org ."
+ #: src/cmp.c:231
+ #, c-format
+@@ -402,14 +401,13 @@
+ msgstr "b³êdna d³ugo¶æ horyzontu `%s'"
+ #: src/diff.c:573
+-#, fuzzy, c-format
++#, c-format
+ msgid "invalid tabsize `%s'"
+-msgstr "b³êdna szeroko¶æ `%s'"
++msgstr "b³êdna szeroko¶æ tabulacji `%s'"
+ #: src/diff.c:577
+-#, fuzzy
+ msgid "conflicting tabsize options"
+-msgstr "sprzeczne opcje szeroko¶ci"
++msgstr "sprzeczne opcje szeroko¶ci tabulacji"
+ #: src/diff.c:641
+ #, c-format
+@@ -496,7 +494,7 @@
+ "-c  -C ILE  --context[=ILE]  Skopiowanie ILE (domy¶lnie 2) linii kontekstu.\n"
+ "-u  -U ILE  --unified[=ILE]  ILE (domy¶lnie 2) linii zunifikowanego "
+ "kontekstu.\n"
+-"  --label ETYKIETA           U¿ycie ETYKIETY zamiast nazwy pilku.\n"
++"  --label ETYKIETA           U¿ycie ETYKIETY zamiast nazwy pliku.\n"
+ "  -p  --show-c-function      Wskazanie funkcji C, w których s± zmiany.\n"
+ "  -F RE  --show-function-line=RE  Pokazanie ostatniej linii pasuj±cej do RE."
+@@ -510,11 +508,11 @@
+ #: src/diff.c:872
+ msgid "--normal  Output a normal diff."
+-msgstr "--normal  Wynik w postaci zwyk³ego diff-a."
++msgstr "--normal  Wynik w postaci zwyk³ego diffa."
+ #: src/diff.c:873
+ msgid "-n  --rcs  Output an RCS format diff."
+-msgstr "-n  --rcs  Wynik w postaci diff-a z RCS."
++msgstr "-n  --rcs  Wynik w postaci diffa z RCS."
+ #: src/diff.c:874
+ msgid ""
+@@ -524,7 +522,7 @@
+ "  --suppress-common-lines  Do not output common lines."
+ msgstr ""
+ "-y  --side-by-side  Wynik w dwóch kolumnach.\n"
+-"  -W ILE  --width=ILE  Wypisanie najwy¿ej ILE (domy¶nie 130) znaków w "
++"  -W ILE  --width=ILE  Wypisanie najwy¿ej ILE (domy¶lnie 130) znaków w "
+ "linii.\n"
+ "  --left-column  Wypisanie tylko lewej kolumny dla wspólnych linii.\n"
+ "  --suppress-common-lines  Bez wypisywania wspólnych linii."
+@@ -532,7 +530,7 @@
+ #: src/diff.c:878
+ msgid "-D NAME  --ifdef=NAME  Output merged file to show `#ifdef NAME' diffs."
+ msgstr ""
+-"-D NAZWA  --ifdef=NAZWA  Wypisanie po³±czonego pliu dla pokazania ró¿nic\n"
++"-D NAZWA  --ifdef=NAZWA  Wypisanie po³±czonego pliku dla pokazania ró¿nic\n"
+ "                         w `#ifdef NAZWA'."
+ #: src/diff.c:879
+@@ -541,7 +539,7 @@
+ msgstr ""
+ "--TYPG-group-format=GFMT   Podobnie, ale z u¿yciem GFMT do sformatowania "
+ "grup\n"
+-"                           wej¶ciowych type TYPG"
++"                           wej¶ciowych typu TYPG"
+ #: src/diff.c:880
+ msgid "--line-format=LFMT  Similar, but format all input lines with LFMT."
+@@ -596,7 +594,7 @@
+ msgstr ""
+ "  LFMT mo¿e zawieraæ:\n"
+ "    %L  zawarto¶æ linii\n"
+-"    %l  zawarto¶c linii, z wy³±czeniem znaku nowej linii\n"
++"    %l  zawarto¶æ linii, z wy³±czeniem znaku nowej linii\n"
+ "    %[-][SZER][.[DOK£]]{doxX}n  specyfikacjê numeru linii w stylu printf"
+ #: src/diff.c:898
+@@ -608,7 +606,7 @@
+ msgstr ""
+ "  GFMT i LFMT mog± zawieraæ:\n"
+ "    %%  %\n"
+-"    %c'C'  pojedyñczy znak C\n"
++"    %c'C'  pojedynczy znak C\n"
+ "    %c'\\OOO'  znak o kodzie ósemkowym OOO"
+ #: src/diff.c:903
+@@ -625,7 +623,7 @@
+ #: src/diff.c:906 src/sdiff.c:198
+ msgid "--tabsize=NUM  Tab stops are every NUM (default 8) print columns."
+-msgstr ""
++msgstr "--tabsize=ILE  Pozycja tabulacji co ka¿de ILE (domy¶lnie 8) kolumn."
+ #: src/diff.c:908
+ msgid "-r  --recursive  Recursively compare any subdirectories found."
+@@ -648,20 +646,19 @@
+ #: src/diff.c:912
+ msgid "-x PAT  --exclude=PAT  Exclude files that match PAT."
+-msgstr "-x WZÓR  --exclude=WZÓR  Wykluczenie plików pasuj±cych do WZORu."
++msgstr "-x WZÓR  --exclude=WZÓR  Wykluczenie plików pasuj±cych do WZORU."
+ #: src/diff.c:913
+ msgid ""
+ "-X FILE  --exclude-from=FILE  Exclude files that match any pattern in FILE."
+ msgstr ""
+-"-X PLIK  --exclude-from=PLIK  Pominiêcie plików pasuj±cych do wzorców w "
+-"PLIKu."
++"-X PLIK  --exclude-from=PLIK  Pominiêcie plików pasuj±cych do wzorców w PLIKU."
+ #: src/diff.c:914
+ msgid ""
+ "-S FILE  --starting-file=FILE  Start with FILE when comparing directories."
+ msgstr ""
+-"-S PLIK  --starting-file=PLIK  Zacznij od PLIKu przy porównywaniu katalogów."
++"-S PLIK  --starting-file=PLIK  Zacznij od PLIKU przy porównywaniu katalogów."
+ #: src/diff.c:915
+ msgid ""
+@@ -713,7 +710,7 @@
+ #: src/diff.c:938
+ #, c-format
+ msgid "Usage: %s [OPTION]... FILES\n"
+-msgstr "U¿ycie: %s [OPCJA]... PLIKI\n"
++msgstr "Sk³adnia: %s [OPCJA]... PLIKI\n"
+ #: src/diff.c:967
+ #, c-format
+@@ -816,7 +813,7 @@
+ #: src/diff3.c:441
+ #, c-format
+ msgid "Usage: %s [OPTION]... MYFILE OLDFILE YOURFILE\n"
+-msgstr "U¿ycie: %s [OPCJA]... MÓJ_PLIK STARY_PLIK TWÓJ_PLIK\n"
++msgstr "Sk³adnia: %s [OPCJA]... MÓJ_PLIK STARY_PLIK TWÓJ_PLIK\n"
+ #: src/diff3.c:443
+ msgid "Compare three files line by line."
+@@ -859,11 +856,11 @@
+ #: src/diff3.c:1343
+ msgid "internal error: invalid diff type passed to output"
+-msgstr "b³±d wenwêtrzny: b³êdny typ diff-a przekazany na wyj¶cie"
++msgstr "b³±d wewnêtrzny: b³êdny typ diffa przekazany na wyj¶cie"
+ #: src/diff3.c:1614 src/diff3.c:1671
+ msgid "input file shrank"
+-msgstr "plik wej¶ciowy siê zmiejszy³"
++msgstr "plik wej¶ciowy siê zmniejszy³"
+ #: src/dir.c:162
+ #, c-format
+@@ -876,7 +873,7 @@
+ #: src/sdiff.c:182
+ msgid "-o FILE  --output=FILE  Operate interactively, sending output to FILE."
+-msgstr "-o PLIK  --output=PLIK  Tryb interakcyjny, wyniki wysy³ane do PLIKu."
++msgstr "-o PLIK  --output=PLIK  Tryb interakcyjny, wyniki wysy³ane do PLIKU."
+ #: src/sdiff.c:184
+ msgid "-i  --ignore-case  Consider upper- and lower-case to be the same."
+@@ -887,10 +884,8 @@
+ msgstr "-W  --ignore-all-space  Ignorowanie wszystkich znaków odstêpu."
+ #: src/sdiff.c:193
+-#, fuzzy
+ msgid "-w NUM  --width=NUM  Output at most NUM (default 130) print columns."
+-msgstr ""
+-"-w ILE  --width=ILE  Wypisanie najwy¿ej ILE (domy¶nie 130) znaków w linii."
++msgstr "-w ILE  --width=ILE  Wypisanie najwy¿ej ILE (domy¶lnie 130) znaków w linii."
+ #: src/sdiff.c:194
+ msgid "-l  --left-column  Output only the left column of common lines."
+@@ -908,7 +903,7 @@
+ #: src/sdiff.c:214
+ #, c-format
+ msgid "Usage: %s [OPTION]... FILE1 FILE2\n"
+-msgstr "U¿ycie: %s [OPCJA]... PLIK1 PLIK2\n"
++msgstr "Sk³adnia: %s [OPCJA]... PLIK1 PLIK2\n"
+ #: src/sdiff.c:215
+ msgid "Side-by-side merge of file differences."
+@@ -942,7 +937,7 @@
+ "e:\tEdycja nowej wersji.\n"
+ "l:\tU¿ycie wersji po lewej.\n"
+ "r:\tU¿ycie wersji po prawej.\n"
+-"s:\tDo³±czenie wspólnych linii bez informoawania o tym.\n"
++"s:\tDo³±czenie wspólnych linii bez informowania o tym.\n"
+ "v:\tDo³±czenie wspólnych linii z podaniem informacji.\n"
+ "q:\tZakoñczenie.\n"
+@@ -950,9 +945,3 @@
+ #, c-format
+ msgid "subsidiary program `%s' not executable"
+ msgstr "program pomocniczy `%s' nie jest wykonywalny"
+-
+-#~ msgid "Binary files %s and %s differ\n"
+-#~ msgstr "Pliki binarne %s i %s siê ró¿ni±\n"
+-
+-#~ msgid "typed memory object"
+-#~ msgstr "obiekt w pamiêci z okre¶leniem typu"
index fe7afdc39c8b231d1f7ccf8da2f4f39283bfb327..7956ffec4211d9f63766741eee8d4b2c18b66b39 100644 (file)
@@ -4,18 +4,15 @@ Summary(fr):  Utilitaires diff de GNU
 Summary(pl):   Narzêdzia diff GNU
 Summary(tr):   GNU dosya karþýlaþtýrma araçlarý
 Name:          diffutils
-Version:       2.7.2
-Release:       6
+Version:       2.8.4
+Release:       1
 License:       GPL
 Group:         Applications/Text
 Source0:       ftp://alpha.gnu.org/gnu/%{name}-%{version}.tar.gz
-Source1:       http://www.mif.pg.gda.pl/homepages/ankry/man-PLD/%{name}-man-pages.tar.gz
-Source2:       http://www.mif.pg.gda.pl/homepages/ankry/man-PLD/%{name}-non-english-man-pages.tar.bz2
+Source1:       http://www.mif.pg.gda.pl/homepages/ankry/man-PLD/%{name}-non-english-man-pages.tar.bz2
 Patch0:                %{name}-info.patch
-Patch1:                %{name}-DESTDIR.patch
-Patch2:                %{name}-immunix-owl-tmp.patch
+Patch1:                %{name}-pl.po-update.patch
 URL:           http://www.gnu.org/software/diffutils/
-BuildRequires: autoconf
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -44,37 +41,35 @@ interaktiv zusammenzuf
 %description -l pl
 Diffutils zawiera nastêpuj±ce programy: diff, cmp, diff3 i sdiff. diff
 s³u¿y do porównywania dwóch plików wy¶wietlaj±c ró¿nice miêdzy nimi
-linia po linii. Polecenie cmp numer bajtów na których wystepuj±
-ró¿nice miêdzy porównywanymi plikami. diff3 pokazuje ró¿nice miedzy
-trzema plikami. diff3 moze byæ u¿yty np. w sytuacji kiedy dwie osoby
-wykona³y zmianê niezale¿nie od siebie na jednym pliku, pozwalaj±c
-uzyskaæ po³±czon± listê zmian zawierajac± informacje o tym, kto co
-zmieni³, a takze informacje o konfliktach miedzy tymi dwoma
-modyfikacjami. Polecenie sdiff s³u¿y do interakcyjnego ³aczenia dwóch
+linia po linii. Polecenie cmp podaje numery bajtów na których
+wystêpuj± ró¿nice miêdzy porównywanymi plikami. diff3 pokazuje ró¿nice
+miedzy trzema plikami. diff3 mo¿e byæ u¿yty np. w sytuacji kiedy dwie
+osoby wykona³y zmianê niezale¿nie od siebie na jednym pliku,
+pozwalaj±c uzyskaæ po³±czon± listê zmian zawieraj±c± informacje o tym,
+kto co zmieni³, a tak¿e informacje o konfliktach miedzy tymi dwoma
+modyfikacjami. Polecenie sdiff s³u¿y do interakcyjnego ³±czenia dwóch
 plików.
 
 %prep
 %setup -q
 %patch0 -p1
 %patch1 -p1
-%patch2 -p1
 
 %build
-%{__autoconf}
-%configure
+%configure \
+       PR_PROGRAM=/usr/bin/pr
 
-%{__make} PR_PROGRAM=%{_bindir}/pr
+%{__make}
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{_mandir}/
+install -d $RPM_BUILD_ROOT%{_mandir}
 
 %{__make} install DESTDIR=$RPM_BUILD_ROOT
 
-# install man/*.1 $RPM_BUILD_ROOT%{_mandir}/man1
-# install man/pl/*.1 $RPM_BUILD_ROOT%{_mandir}/pl/man1
-tar xzvf %{SOURCE1} -C $RPM_BUILD_ROOT%{_mandir}/
-bzip2 -dc %{SOURCE2} | tar xvf - -C $RPM_BUILD_ROOT%{_mandir}/
+bzip2 -dc %{SOURCE1} | tar xvf - -C $RPM_BUILD_ROOT%{_mandir}
+
+%find_lang %{name}
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -85,7 +80,7 @@ rm -rf $RPM_BUILD_ROOT
 %postun
 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
 
-%files
+%files -f %{name}.lang
 %defattr(644,root,root,755)
 %doc NEWS README
 %attr(755,root,root) %{_bindir}/*
This page took 0.156762 seconds and 4 git commands to generate.