]> git.pld-linux.org Git - packages/whois.git/blob - whois.spec
bc6c13313f9ccbd9fd3cc2a5cbe22133475b7f4e
[packages/whois.git] / whois.spec
1 Summary:        Enhanced WHOIS client
2 Summary(pl.UTF-8):      Rozszerzony klient WHOIS
3 Summary(ru.UTF-8):      Улучшенный клиент WHOIS
4 Summary(uk.UTF-8):      Покращений клієнт WHOIS
5 Name:           whois
6 Version:        5.2.12
7 Release:        2
8 License:        GPL v2+
9 Group:          Networking/Utilities
10 Source0:        http://ftp.debian.org/debian/pool/main/w/whois/%{name}_%{version}.tar.xz
11 # Source0-md5:  b8f1482827137788016a418cc1ae364b
12 Patch0:         %{name}-idn.patch
13 Patch1:         %{name}-config.patch
14 URL:            http://www.linux.it/~md/software/
15 BuildRequires:  gettext-tools
16 BuildRequires:  libidn-devel
17 BuildRequires:  perl-base
18 BuildRequires:  tar >= 1:1.22
19 BuildRequires:  xz
20 Obsoletes:      inetutils-whois
21 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23 %description
24 This is a new whois (RFC 954) client rewritten from scratch. It is
25 derived from and compatible with the usual BSD and RIPE whois(1)
26 programs. It is intelligent and can automatically select the
27 appropriate whois server for most queries.
28
29 %description -l pl.UTF-8
30 To jest nowy klient usługi whois (RFC 954) napisany całkowicie od
31 nowa. Jest kompatybilny zarówno z whois z BSD oraz RIPE. Jest
32 inteligentny i automatycznie dobiera poprawny serwer whois dla
33 większosci zapytań.
34
35 %description -l ru.UTF-8
36 Это написанный с "нуля" клиент (RFC 954), совместимый с whois(1)
37 программами BSD и RIPE. В большинстве случаев он может автоматически
38 выбирать правильный whois сервер в зависимости от запроса.
39
40 %description -l uk.UTF-8
41 Це заново написаний клієнт whois (RFC 954), сумісний з whois(1)
42 програмами BSD та RIPE. Він в більшості випадків може автоматично
43 вибирати правильний whois сервер в залежності від запиту.
44
45 %prep
46 %setup -q
47 %patch0 -p1
48 %patch1 -p1
49
50 # Makefile vs po/Makefile mismatch
51 echo 'install-pos: install' >> po/Makefile
52
53 %build
54 %{__make} \
55         CC="%{__cc}" \
56         CFLAGS="%{rpmcflags} %{rpmcppflags}" \
57         HAVE_LIBIDN=1 \
58         HAVE_ICONV=1
59
60 %{__make} -C po
61
62 %install
63 rm -rf $RPM_BUILD_ROOT
64 install -d $RPM_BUILD_ROOT{%{_sysconfdir},%{_bindir},%{_mandir}/man1}
65 %{__make} install-whois install-pos \
66         BASEDIR=$RPM_BUILD_ROOT \
67         prefix=%{_prefix}
68
69 cp -p whois.conf $RPM_BUILD_ROOT%{_sysconfdir}
70
71 %find_lang %{name}
72
73 %clean
74 rm -rf $RPM_BUILD_ROOT
75
76 %files -f %{name}.lang
77 %defattr(644,root,root,755)
78 %doc README debian/changelog
79 %attr(755,root,root) %{_bindir}/whois
80 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/whois.conf
81 %{_mandir}/man1/whois.1*
82 %{_mandir}/man5/whois.conf.5*
This page took 0.021042 seconds and 2 git commands to generate.