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