]> git.pld-linux.org Git - packages/xdelta.git/blob - xdelta.spec
- strip with --strip-unneeded shared libraries,
[packages/xdelta.git] / xdelta.spec
1 Summary:        XDELTA - version control system
2 Summary(pl):    XDELTA - system kontroli wersji
3 Name:           xdelta
4 Version:        1.0.6
5 Release:        1
6 Copyright:      GPL
7 Group:          Development/Version Control
8 Group(pl):      Programowanie/Kontrola Wersji
9 Source:         ftp://www.xcf.berkeley.edu/pub/xdelta/%{name}-%{version}.tar.gz
10 URL:            http://www.XCF.Berkeley.EDU/~jmacd/xdelta.html                                                   
11 Requires:       glib = 1.2.0
12 BuildRoot:      /tmp/%{name}-%{version}-root
13
14 %description
15 XDELTA (`X' for XCF) is a version-control library and file-format designed as
16 a replacement for RCS.  The XDELTA library performs its work independently of
17 the actual file-format used to encode the version-file and is intended to be
18 used by various higher-level programs such as PRCS.
19
20 XDELTA uses a binary file-delta algorithm to replace the standard diff
21 program used by RCS.
22
23 %description -l pl
24 XDELTA (`X' od XCF) jest bibliotek± systemu kontroli wersji tworzona jako
25 zamiennik RCS. Biblioteka XDELTA wykonuje ró¿ne czynno¶ci niezale¿nie od
26 bierz±cego formatu plików, u¿ywanych do kodowania plików baz danych, systemu
27 kontroli wersji i zaprojektowana jest do u¿ywania w ró¿nych wysoko-poziomowych
28 systemach kontroli wersji jak PRCS.
29
30 XDELTA u¿ywa binarnego formatu zamiast standardowego diif-a u¿ywanego przez
31 RCS.
32
33 %package devel
34 Summary:        XDELTA - header files
35 Summary(pl):    XDELTA - pliki nag³ówkowe
36 Group:          Development/Libraries
37 Group(pl):      Programowanie/Biblioteki
38 PreReq:         /sbin/install-info
39 Requires:       %{name} = %{version}
40
41 %description devel
42 This package contains the XDELTA header files required to develop
43 XDELTA-based applications.
44
45 %description -l pl devel
46 Pakiet ten zawiera pliki nag³ówkowe potrzebne przy tworzeniu aplikacji
47 bazuj±cych na XDELTA.
48
49 %package static
50 Summary:        XDELTA - static library
51 Summary(pl):    XDELTA - biblioteka statyczna
52 Group:          Development/Libraries
53 Group(pl):      Programowanie/Biblioteki
54 Requires:       %{name}-devel = %{version}
55
56 %description static
57 This package contains the XDELTA static libraries
58
59 %description -l pl static
60 Pakiet ten zawiera bibliotekê statyczn± XDELTA.
61
62 %prep
63 %setup -q
64
65 %build
66 CFLAGS="$RPM_OPT_FLAGS" LDFLAGS="-s" \
67 ./configure \
68         --prefix=/usr \
69         --x-includes=/usr/X11R6/lib/glib/include
70 make
71
72 %install
73 rm -rf $RPM_BUILD_ROOT
74 install -d $RPM_BUILD_ROOT/usr/info
75
76 make prefix=$RPM_BUILD_ROOT/usr install-strip
77
78 strip --strip-unneeded $RPM_BUILD_ROOT/usr/lib/lib*so.*.*
79
80 gzip -9nf $RPM_BUILD_ROOT/usr/man/man1/* \
81         NEWS READ* ChangeLog
82
83 %post   -p /sbin/ldconfig
84 %postun -p /sbin/ldconfig
85
86 %clean
87 rm -rf $RPM_BUILD_ROOT
88
89 %files
90 %attr(755,root,root) /usr/bin/xdelta
91 %attr(755,root,root) /usr/lib/lib*.so.*.*
92 /usr/man/man1/*
93
94 %files devel
95 %defattr(644,root,root,755)
96 %doc {NEWS,READ*,ChangeLog}.gz
97
98 %attr(755,root,root) /usr/bin/xdelta-config
99 /usr/include/*
100
101 %attr(755,root,root) /usr/lib/lib*.so
102
103 %files static
104 %attr(644,root,root) /usr/lib/lib*.a
105
106 %changelog
107 * Sun Mar 21 1999 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
108   [1.0.6-1]
109 - fix: "PreReq: /sbin/install-info" moved to devel,
110 - strip with --strip-unneeded shared libraries.
111
112 * Mon Mar  1 1999 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
113   [1.0.3-1]
114 - removed xdelta.magic from %doc (it is integrated in current file package),
115 - added "Requires: glib = 1.2.0" to main,
116 - /usr/bin/xdelta-config moved to devel,
117 - removed xdelta info pages (it is empty .. contain only GPL licence text),
118 - removed man group from man pages.
119
120 * Fri Feb 05 1999 Wojtek ¦lusarczyk <wojtek@shadow.eu.org>
121   [1.0.2-1d]
122 - updated to 1.0.2,
123 - fixed permission of static library.
124
125 * Sat Jan 23 1999 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
126   [1.0.0-3d]
127 - removed xdelta.magic from doc (this is now included in latest file packa).
128 - changed --x-includes to /usr/X11R6/lib/glib/include,
129 - standarized {un}registering info pages (added xdelta-info.patch),
130 - gzipping instead bzipping2 man pages.
131
132 * Sat Jan 23 1999 Wojtek ¦lusarczyk <wojtek@shadow.eu.org>
133 - added Group(pl),  
134 - compressed man pages && documentation (bizp2),
135 - fixed %post && %preun,
136 - fixed static-subpackage.
137
138 * Wed Dec 23 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
139   [1.0.0-3]
140 - standarized {un}registering info pages,
141 - xdelta info pages moved to section "Version Control:",
142 - added gzipping man pages,
143 - added URL,
144 - added using LDFLAGS="-s" to ./configure enviroment.
145
146 * Thu Nov 26 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
147   [1.0.0-2]
148 - fixed: removed /usr/info/dir from devel,
149 - removed xdelta.magic and non existing doc/xdelta.txt from %doc,
150 - fixed --entry text on {un}registering info page for libtool in %post
151   %preun in devel.
152
153 * Sat Oct 03 1998 Wojtek ¦lusarczyk <wojtek@shadow.eu.org>
154   [0.23-1d]
155 - build against Tornado,
156 - fixed pl translation,
157 - fixed files permissions,
158 - minor modifications of the spec file.
159
160 * Mon Aug 10 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
161   [0.22-2]
162 - added pl translation,
163 - added static subpackage,
164 - all %doc moved to devel,
165 - cosmetic changes in %files.
166
167 * Tue Jul 07 1998 Arne Coucheron <arneco@online.no>
168   [0.22-1]
169 - removed running of automake, problem fixed in sources
170
171 * Sat Jul 04 1998 Arne Coucheron <arneco@online.no>
172   [0.21-1]
173 - added xdelta.magic to %doc
174 - added running of automake before configure to make this version build
175 - changed %defattr
176
177 * Sat Jun 27 1998 Arne Coucheron <arneco@online.no>
178   [0.20-1]
179
180 * Sun Jun  7 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
181   [0.19-3]
182 - fixed configuring sources by add --x-includes=/usr/lib/glib/include
183   configure parameter (for glibconfig.h),
184 - changed Source url to ftp://www.xcf.berkeley.edu/pub/xdelta/
185 - fixed %defattr macros (thanks to René Wuttke <Rene.Wuttke@gmx.net>).
186
187 * Wed May  6 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
188   [0.19-2]
189 - %%{version} macro instead %%{PACKAGE_VERSION},
190 - added -q %setup parameter,
191 - added using %%{name} macro in Buildroot, Source and Rquires in devel
192   fields.
193
194 * Sun May 03 1998 Arne Coucheron <arneco@online.no>
195   [0.19-1]
196 - removed some older changelogs
197
198 * Wed Apr 28 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
199   [0.18-2]
200 - removed COPYING from %doc (copyright statment is in Copyright field),
201 - /sbin/ldconfig is now -p parameter in %post, %postun,
202 - replaced "mkdir -p" with "install -d" in %install,
203 - added "Requires: xdelta = %%{PACKAGE_VERSION}" for devel,
204 - added using %defattr macro in %files (requires rpm >= 2.4.99),
205 - added using predefined macro %%{PACKAGE_VERSION} instead %{version},
206 - changed permission on /usr/lib/lib*.so links to 644,
207 - removed /usr/lib/libxdelta.la from devel,
208 - added striping /usr/lib/lib*.so.*.* libs,
209 - Buildroot changed to /tmp/xdelta-%%{PACKAGE_VERSION}-root.
210
211 * Fri Apr 24 1998 Arne Coucheron <arneco@online.no>
212   [0.18-1]
213 - removed the fakeglib patch
214
215 * Wed Apr 08 1998 Arne Coucheron <arneco@online.no>
216   [0.15-2]
217 - splitted the package into a main and devel package
218
219 * Sat Apr 04 1998 Arne Coucheron <arneco@online.no>
220   [0.15-1]
This page took 0.095126 seconds and 4 git commands to generate.