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