-
Notifications
You must be signed in to change notification settings - Fork 19
/
yaz.spec
186 lines (155 loc) · 4.48 KB
/
yaz.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# This file is part of the YAZ toolkit
# Copyright (C) Index Data
# See the file LICENSE for details.
#
# spec file for YAZ
# disable LTO otherwise libstemmer compilation fails
%global _lto_cflags %nil
%define idmetaversion %(. ./IDMETA; echo $VERSION)
Name: yaz
Summary: Z39.50 Programs
Version: %{idmetaversion}
Release: 1.indexdata
# determine system
%define is_redhat5 %(grep 'release 5' /etc/redhat-release >/dev/null 2>&1 && echo 1 || echo 0)
%define is_redhat8 %(grep 'release 8' /etc/redhat-release >/dev/null 2>&1 && echo 1 || echo 0)
%define is_redhat9 %(grep 'release 9' /etc/redhat-release >/dev/null 2>&1 && echo 1 || echo 0)
%define is_mandrake %(test -e /etc/mandrake-release && echo 1 || echo 0)
%define is_suse %(test -e /etc/SuSE-release >/dev/null && echo 1 || echo 0)
%define is_suse11 %(grep 'VERSION = 11' /etc/SuSE-release >/dev/null 2>&1 && echo 1 || echo 0)
%define is_fedora %(test -e /etc/fedora-release && echo 1 || echo 0)
Requires: readline, libyaz5 = %{version}
License: BSD
Group: Applications/Internet
Vendor: Index Data ApS <[email protected]>
Source: yaz-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-root
Prefix: %{_prefix}
%define TCPWRAPPER tcp_wrappers-devel
%if %is_suse
%define TCPWRAPPER tcpd-devel
%endif
%if %is_suse11
BuildRequires: libgnutls-devel
%else
BuildRequires: gnutls-devel
%endif
%if %is_redhat5
%define TCPWRAPPER tcp_wrappers
%endif
%if %is_redhat8
%undefine TCPWRAPPER
%endif
%if %is_redhat9
%undefine TCPWRAPPER
%endif
%if 0%{?TCPWRAPPER:1}
%define TCPDFLAGS --enable-tcpd
BuildRequires: %{TCPWRAPPER}
%else
%define TCPDFLAGS --disable-tcpd
%endif
BuildRequires: pkgconfig
BuildRequires: libxml2-devel
BuildRequires: libxslt-devel
BuildRequires: readline-devel
BuildRequires: libicu-devel
BuildRequires: wget
Packager: Adam Dickmeiss <[email protected]>
URL: http://www.indexdata.com/yaz
%description
This package contains both a test-server and clients (normal & ssl)
for the ANSI/NISO Z39.50 protocol for Information Retrieval.
%package -n libyaz5
Summary: Z39.50 Library
Group: Libraries
Requires: libxslt, gnutls, libicu
%description -n libyaz5
YAZ is a library for the ANSI/NISO Z39.50 protocol for Information
Retrieval.
%post -n libyaz5 -p /sbin/ldconfig
%postun -n libyaz5 -p /sbin/ldconfig
%package -n libyaz5-devel
Summary: Z39.50 Library - development package
Group: Development/Libraries
Requires: libyaz5 = %{version}, libxml2-devel, libxslt-devel, libicu-devel
Conflicts: libyaz-devel, libyaz4-devel
%description -n libyaz5-devel
Development libraries and includes for the libyaz package.
%package -n yaz-illclient
Summary: ILL client
Group: Applications/Communication
Requires: readline, libyaz5 = %{version}
%description -n yaz-illclient
yaz-illclient: an ISO ILL client.
%package -n yaz-icu
Summary: Command line utility for ICU utilities of YAZ
Group: Applications/Communication
Requires: libyaz5 = %{version}
%description -n yaz-icu
The yaz-icu program is a command-line based client which exposes the ICU
chain facility of YAZ.
%prep
%setup
%build
CFLAGS="$RPM_OPT_FLAGS" \
./configure --prefix=%{_prefix} --libdir=%{_libdir} --mandir=%{_mandir} \
--enable-shared ${TCPDFLAGS} --with-xslt --with-gnutls --with-icu \
--without-memcached
%if %{?make_build:1}%{!?make_build:0}
%make_build
%else
make -j4 CFLAGS="$RPM_OPT_FLAGS"
%endif
%install
rm -fr ${RPM_BUILD_ROOT}
make install DESTDIR=${RPM_BUILD_ROOT}
rm ${RPM_BUILD_ROOT}/%{_libdir}/*.la
%clean
rm -fr ${RPM_BUILD_ROOT}
%files
%defattr(-,root,root)
%doc README.md LICENSE NEWS
%{_bindir}/yaz-client
%{_bindir}/yaz-ztest
%{_bindir}/zoomsh
%{_bindir}/yaz-marcdump
%{_bindir}/yaz-iconv
%{_bindir}/yaz-json-parse
%{_bindir}/yaz-url
%{_bindir}/yaz-record-conv
%{_mandir}/man1/yaz-client.*
%{_mandir}/man1/yaz-json-parse.*
%{_mandir}/man1/yaz-url.*
%{_mandir}/man8/yaz-ztest.*
%{_mandir}/man1/zoomsh.*
%{_mandir}/man1/yaz-marcdump.*
%{_mandir}/man1/yaz-iconv.*
%{_mandir}/man1/yaz-record-conv.*
%{_mandir}/man7/yaz-log.*
%{_mandir}/man7/bib1-attr.*
%files -n libyaz5
%defattr(-,root,root)
%{_libdir}/*.so.*
%files -n libyaz5-devel
%defattr(-,root,root)
%{_bindir}/yaz-config
%{_bindir}/yaz-asncomp
%{_includedir}/yaz
%{_libdir}/pkgconfig/*.pc
%{_libdir}/*.so
%{_libdir}/*.a
%{_datadir}/aclocal/yaz.m4
%{_mandir}/man1/yaz-asncomp.*
%{_mandir}/man7/yaz.*
%{_mandir}/man?/yaz-config.*
%{_datadir}/doc/yaz
%{_datadir}/yaz
%files -n yaz-illclient
%defattr(-,root,root)
%{_bindir}/yaz-illclient
%{_mandir}/man1/yaz-illclient.*
%files -n yaz-icu
%defattr(-,root,root)
%{_bindir}/yaz-icu
%{_mandir}/man1/yaz-icu.*