]> git.ipfire.org Git - ipfire-3.x.git/blob - net-tools/net-tools.nm
kernel: Update to 5.1
[ipfire-3.x.git] / net-tools / net-tools.nm
1 ###############################################################################
2 # IPFire.org - An Open Source Firewall Solution #
3 # Copyright (C) - IPFire Development Team <info@ipfire.org> #
4 ###############################################################################
5
6 name = net-tools
7 version = 2.0
8 git_rev = e5f1be13
9 release = 2.%{git_rev}
10
11 groups = System/Base
12 url = http://net-tools.berlios.de/
13 license = GPL+
14 summary = Basic networking tools.
15
16 description
17 The net-tools package contains basic networking tools,
18 including ifconfig, netstat, route, and others.
19 end
20
21 source_dl =
22 sources = %{thisapp}-%{git_rev}.tar.xz
23
24 build
25 requires
26 gettext
27 end
28
29 prepare_cmds
30 # Copy config files
31 cp %{DIR_SOURCE}/config.h %{DIR_APP}
32 cp %{DIR_SOURCE}/config.make %{DIR_APP}
33
34 # Copy additional man pages
35 mkdir -pv %{DIR_APP}/man/en_US
36 cp %{DIR_SOURCE}/*.8 %{DIR_APP}/man/en_US
37
38 # Copy source for mii-diag
39 cp %{DIR_SOURCE}/mii-diag.c %{DIR_APP}
40 end
41
42 make_build_targets += \
43 CC=gcc
44
45 # Compiling in parallel mode is unsafe for this pkg.
46 PARALLELISMFLAGS =
47
48 build_cmds
49 # Compile mii-diag
50 make mii-diag
51 end
52
53 install
54 mv man/de_DE man/de
55 mv man/fr_FR man/fr
56 mv man/pt_BR man/pt
57
58 make BASEDIR=%{BUILDROOT} BINDIR=%{bindir} \
59 SBINDIR=%{sbindir} mandir=%{mandir} install
60
61 # Install mii-diag
62 install -m 755 %{DIR_APP}/mii-diag %{BUILDROOT}%{sbindir}
63
64 # Remove tools we do not want
65 rm -rvf \
66 %{BUILDROOT}%{prefix}/{,*}/{arp,ifconfig,ip,nameif,plipconfig,rarp,route,slattach}* \
67 %{BUILDROOT}%{mandir}/{,*}/man*/{arp,ifconfig,ip,nameif,plipconfig,rarp,route,slattach}*
68
69 # Remove hostname (has its own package)
70 rm -rvf \
71 %{BUILDROOT}%{bindir}/{dnsdomainname,domainname,hostname,nisdomainname,ypdomainname}* \
72 %{BUILDROOT}%{mandir}/{,*}/man*/{dnsdomainname,domainname,hostname,nisdomainname,ypdomainname}*
73 end
74 end
75
76 packages
77 package %{name}
78 groups += Base
79 end
80
81 package %{name}-debuginfo
82 template DEBUGINFO
83 end
84 end