]> git.pld-linux.org Git - packages/patch.git/blob - patch.spec
- corected tr %description.
[packages/patch.git] / patch.spec
1 Summary:        GNU patch Utilities
2 Summary(de):    GNU-Patch-Utilities
3 Summary(fr):    Utilitaires patch de GNU
4 Summary(pl):    GNU patch
5 Summary(tr):    GNU yama yardýmcý programlarý
6 Name:           patch
7 Version:        2.5.3
8 Release:        7
9 Copyright:      GPL
10 Group:          Utilities/Text
11 Group(pl):      Narzêdzia/Tekst
12 Source:         ftp://prep.ai.mit.edu/pub/gnu/patch/%{name}-%{version}.tar.gz
13 Buildroot:      /tmp/%{name}-%{version}-root
14
15 %description
16 Patch is a program to aid in patching programs. You can use it to apply
17 'diff's. Basically, you can use diff to note the changes in a file, send
18 the changes to someone who has the original file, and they can use 'patch'
19 to combine your changes to their original.
20
21 %description -l de
22 Patch ist ein Programm zum Ausbessern von Programmen. Benutzen Sie zunächst
23 ein Diffs-Programm, um die Änderungen an der Datei zu ermitteln und senden
24 Sie diese an die Personen mit der Originaldatei. Diese können dann mit Hilfe
25 von PATCH ihre Dateien auf den neuesten Stand bringen.
26
27 %description -l fr
28 patch est un programme aidant à patcher des programmes. Vous pouvez
29 l'utiliser pour appliquer des « diffs ». On utilise diff pour noter les
30 changements dans un fichier, on envoie ces changements à celui qui a le
31 fichier original et qui peut utiliser « patch » pour combiner nos
32 modifications avec son original.
33
34 %description -l pl
35 Patch jest programem umo¿liwiaj±cym nak³adanie ³atek (patchy) na pliki. Przy
36 pomocy programu diff mo¿esz sprawdziæ jakie zmiany zosta³y zrobione w pliku,
37 zmiany te wys³aæ do kogo¶, kto posiada oryginalny plik i przy pomocy programu
38 patch na³o¿yæ je. Daje to mo¿liwo¶æ rozprowadzania ma³ych plików, w których
39 s± jedynie zmiany, jakie zosta³y wprowadzone w stosunku do orginalnych
40 plików.
41
42 %description -l tr
43 Bu programý 'diff' komutunu uygulamak için kullanabilirsiniz. diff, bir
44 dosya içindeki deðiþikliklerý belirtir; 'patch' komutu deðiþiklikleri
45 asýllarý ile birleþtirir.
46
47 %prep
48 %setup -q
49
50 %build
51 chmod +w configure
52 autoconf
53
54 # XXX unset CPPFLAGS on (ultra)sparc to avoid large file system support
55 %ifarch sparc sparc64
56 CPPFLAGS=""
57 export CPPFLAGS
58 %endif
59
60 LDFLAGS="-s"; export LDFLAGS
61 %configure
62
63 make
64
65 %install
66 rm -rf $RPM_BUILD_ROOT
67
68 make install install-strip \
69         bindir=$RPM_BUILD_ROOT%{_bindir} \
70         man1dir=$RPM_BUILD_ROOT%{_mandir}/man1
71
72 gzip -9nf $RPM_BUILD_ROOT%{_mandir}/man1/*\
73         NEWS README AUTHORS ChangeLog
74
75 %clean
76 rm -rf $RPM_BUILD_ROOT
77
78 %files
79 %defattr(644,root,root,755)
80 %doc {NEWS,README,AUTHORS,ChangeLog}.gz
81
82 %attr(755,root,root) %{_bindir}/*
83 %{_mandir}/man1/*
This page took 0.185841 seconds and 3 git commands to generate.