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