root/lightcube_os/trunk/packages/inetutils/inetutils.spec @ 6

Revision 6, 1.8 KB (checked in by jhuntwork, 10 months ago)

Use a more FHS-compatible info directory location

Line 
1Summary: GNU Inetutils
2Name: inetutils
3Version: 1.6
4Release: 2
5Group: System Environment/Base
6License: GPLv2
7Distribution: LightCube OS
8Vendor: LightCube Solutions
9URL: http://www.gnu.org/software/inetutils
10Source0: http://dev.lightcube.us/~jhuntwork/sources/%{name}/%{name}-%{version}.tar.gz
11Source1: http://dev.lightcube.us/~jhuntwork/sources/%{name}/%{name}-%{version}-no_server_man_pages-1.patch
12
13Requires: base-layout, glibc
14
15%description
16%{name} is a collection of common networking programs including ftp,
17telnet, ping, hostname and traceroute
18
19%prep
20%setup -q
21
22%build
23patch -Np1 -i %{SOURCE1}
24./configure --prefix=/usr --libexecdir=/usr/sbin \
25    --localstatedir=/var --disable-ifconfig \
26    --disable-logger --disable-syslogd --disable-whois \
27    --disable-servers
28make
29
30%install
31make DESTDIR=%{buildroot} install
32mkdir -v %{buildroot}/bin
33mv -v %{buildroot}/usr/bin/ping %{buildroot}/bin
34rm -f %{buildroot}/usr/share/info/dir
35
36%clean
37rm -rf %{buildroot}
38
39%post
40/usr/bin/install-info /usr/share/info/inetutils.info /usr/share/info/dir
41
42%preun
43/usr/bin/install-info --delete /usr/share/info/inetutils.info /usr/share/info/dir
44
45%files
46%defattr(-,root,root)
47/bin/ping
48/usr/bin/ftp
49/usr/bin/hostname
50/usr/bin/ping6
51/usr/bin/rcp
52/usr/bin/rlogin
53/usr/bin/rsh
54/usr/bin/talk
55/usr/bin/telnet
56/usr/bin/tftp
57/usr/bin/traceroute
58/usr/share/info/inetutils.info
59/usr/share/man/man1/ftp.1
60/usr/share/man/man1/rcp.1
61/usr/share/man/man1/rlogin.1
62/usr/share/man/man1/rsh.1
63/usr/share/man/man1/talk.1
64/usr/share/man/man1/telnet.1
65/usr/share/man/man1/tftp.1
66/usr/share/man/man8/ping.8
67
68%changelog
69* Fri Oct 30 2009 Jeremy Huntwork <jhuntwork@lightcubesolutions.com> - 1.6-2
70- Use FHS compatible info directories
71
72* Tue Jul 28 2009 Jeremy Huntwork <jhuntwork@lightcubesolutions.com> - 1.6-1
73- Initial version
Note: See TracBrowser for help on using the browser.