]> git.pld-linux.org Git - packages/xdelta.git/blob - xdelta.spec
- fixed: removed /usr/info/dir from devel.
[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.0
5 Release:     2
6 Copyright:   GPL
7 Group:       Development/Version Control
8 Source:      ftp://www.xcf.berkeley.edu/pub/xdelta/%{name}-%{version}.tar.gz
9 PreReq:      /sbin/install-info
10 BuildRoot:   /tmp/%{name}-%{version}-root
11
12 %description
13 XDELTA (`X' for XCF) is a version-control library and file-format designed as
14 a replacement for RCS.  The XDELTA library performs its work independently of
15 the actual file-format used to encode the version-file and is intended to be
16 used by various higher-level programs such as PRCS.
17
18 XDELTA uses a binary file-delta algorithm to replace the standard diff
19 program used by RCS.
20
21 %description -l pl
22 XDELTA (`X' od XCF) jest to biblioteka systemu kontroli wersji tworona jako
23 zamiennik RCS. Biblioteka XDELTA wykonuje ró¿ne czynno¶ci niezale¿nie od
24 bierz±cego formatu plików u¿ywanych do kodowania plików baz danech systemu
25 kontroli wersji zaprojektowana jest do u¿ywania w ró¿nych wysoko poziomowych
26 syatemach kontroli wersji jak PRCS.
27
28 XDELTA u¿ywa binarnego formatu zamiast standardowego diif-a u¿ywanego przez
29 RCS.
30
31 %package devel
32 Summary:     XDELTA - header files
33 Summary(pl): XDELTA - pliki nag³ówkowe
34 Group:       Development/Libraries
35 Requires:    %{name} = %{version}
36 %description devel
37 This package contains the XDELTA header files required to develop
38 XDELTA-based applications.
39
40 %description -l pl devel
41 Pakiet ten zawiera pliki nag³owkowe potrzebne przy tworzeniu aplikacji
42 bazuj±cych na XDELTA.
43
44 %package static
45 Summary:     XDELTA - static library
46 Summary(pl): XDELTA - biblioteka statyczna
47 Group:       Development/Libraries
48 Requires:    %{name}-devel = %{version}
49 %description static
50 This package contains the XDELTA static libraries
51
52 %description -l pl static
53 Pakiet ten zawiera bibliotekê statyczn± XDELTA.
54
55 %prep
56 %setup -q
57
58 %build
59 CFLAGS="$RPM_OPT_FLAGS" \
60 ./configure     --prefix=/usr \
61                 --x-includes=/usr/lib/glib/include
62 make
63
64 %install
65 rm -rf $RPM_BUILD_ROOT
66 install -d $RPM_BUILD_ROOT/usr/info
67 make prefix=$RPM_BUILD_ROOT/usr install-strip
68 install doc/xdelta.info $RPM_BUILD_ROOT/usr/info
69 gzip -9nf $RPM_BUILD_ROOT/usr/info/xdelta.info
70
71 strip $RPM_BUILD_ROOT/usr/lib/lib*.so.*.*
72
73 %post   -p /sbin/ldconfig
74 %postun -p /sbin/ldconfig
75
76 %post devel
77 /sbin/install-info /usr/info/xdelta.info.gz /usr/info/dir --entry \
78 "* XDELTA: (xdelta).                             A new RCS-like version-file format."
79
80 %preun devel
81 /sbin/install-info --delete /usr/info/xdelta.info.gz /usr/info/dir --entry \
82 "* XDELTA: (xdelta).                             A new RCS-like version-file format."
83
84 %clean
85 rm -rf $RPM_BUILD_ROOT
86
87 %files
88 %defattr(755, root, root)
89 /usr/bin/*
90 /usr/lib/lib*.so.*.*
91 %attr(644, root,  man) /usr/man/man1/*
92
93 %files devel
94 %defattr(644, root, root, 755)
95 %doc NEWS README
96 /usr/include/*
97 /usr/info/xdelta.info*
98 /usr/lib/lib*.so
99
100 %files static
101 %attr(644, root, 644) /usr/lib/lib*.a
102
103 %changelog
104 * Thu Nov 26 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
105   [1.0.0-2]
106 - fixed: removed /usr/info/dir from devel,
107 - removed xdelta.magic and non existing doc/xdelta.txt from %doc,
108 - fixed --entry text on {un}registering info page for libtool in %post
109   %preun in devel.
110
111 * Mon Aug 10 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
112   [0.22-2]
113 - added pl translation,
114 - added static subpackage,
115 - all %doc moved to devel,
116 - cosmetic changes in %files.
117
118 * Tue Jul 07 1998 Arne Coucheron <arneco@online.no>
119   [0.22-1]
120 - removed running of automake, problem fixed in sources
121
122 * Sat Jul 04 1998 Arne Coucheron <arneco@online.no>
123   [0.21-1]
124 - added xdelta.magic to %doc
125 - added running of automake before configure to make this version build
126 - changed %defattr
127
128 * Sat Jun 27 1998 Arne Coucheron <arneco@online.no>
129   [0.20-1]
130
131 * Sun Jun  7 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
132   [0.19-3]
133 - fixed configuring sources by add --x-includes=/usr/lib/glib/include
134   configure parameter (for glibconfig.h),
135 - changed Source url to ftp://www.xcf.berkeley.edu/pub/xdelta/
136 - fixed %defattr macros (thanks to René Wuttke <Rene.Wuttke@gmx.net>).
137
138 * Wed May  6 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
139   [0.19-2]
140 - %%{version} macro instead %%{PACKAGE_VERSION},
141 - added -q %setup parameter,
142 - added using %%{name} macro in Buildroot, Source and Rquires in devel
143   fields.
144
145 * Sun May 03 1998 Arne Coucheron <arneco@online.no>
146   [0.19-1]
147 - removed some older changelogs
148
149 * Wed Apr 28 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
150   [0.18-2]
151 - removed COPYING from %doc (copyright statment is in Copyright field),
152 - /sbin/ldconfig is now -p parameter in %post, %postun,
153 - replaced "mkdir -p" with "install -d" in %install,
154 - added "Requires: xdelta = %%{PACKAGE_VERSION}" for devel,
155 - added using %defattr macro in %files (requires rpm >= 2.4.99),
156 - added using predefined macro %%{PACKAGE_VERSION} instead %{version},
157 - changed permission on /usr/lib/lib*.so links to 644,
158 - removed /usr/lib/libxdelta.la from devel,
159 - added striping /usr/lib/lib*.so.*.* libs,
160 - Buildroot changed to /tmp/xdelta-%%{PACKAGE_VERSION}-root.
161
162 * Fri Apr 24 1998 Arne Coucheron <arneco@online.no>
163   [0.18-1]
164 - removed the fakeglib patch
165
166 * Wed Apr 08 1998 Arne Coucheron <arneco@online.no>
167   [0.15-2]
168 - splitted the package into a main and devel package
169
170 * Sat Apr 04 1998 Arne Coucheron <arneco@online.no>
171   [0.15-1]
This page took 0.089473 seconds and 4 git commands to generate.