123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- # Build recipe for net-tools.
- #
- # Copyright (c) 2018-2019, 2021 Matias Fonzo, <selk@dragora.org>.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- # Exit immediately on any error
- set -e
- program=net-tools
- version=2.10
- release=1
- # Define a category for the output of the package name
- pkgcategory=networking
- tarname=${program}-${version}.tar.xz
- # Remote source(s)
- fetch=https://downloads.sourceforge.net/project/net-tools/$tarname
- description="
- Collection of basic networking programs.
- A collection of programs that form the base set of the NET-3 networking
- distribution for the GNU/Linux operating system.
- This package includes the important tools for controlling the network
- subsystem of the Linux kernel. This includes arp, netstat, rarp and
- route. Additionally, this package contains utilities relating to
- particular network hardware types (plipconfig, slattach, mii-tool)
- and advanced aspects of IP configuration (iptunnel, ipmaddr).
- "
- homepage=https://net-tools.sourceforge.net/
- license=GPLv2+
- # Source documentation
- docs="COPYING README THANKS TODO"
- docsdir="${docdir}/${program}-${version}"
- # The build system does not support parallel jobs
- jobs=1
- build()
- {
- unpack "${tardir}/$tarname"
- cd "$srcdir"
- # Set sane permissions
- chmod -R u+w,go-w,a+rX-s .
- sed -i "s#-O2 -g#${QICFLAGS}#" Makefile
- yes "" | make config
- make -j${jobs} V=1 \
- BINDIR=/usr/bin SBINDIR=/usr/sbin \
- DESTDIR="$destdir" install
- # Delete included programs coming from the inetutils package
- for program in hostname dnsdomainname ifconfig \
- domainname nisdomainname ypdomainname
- do
- rm "${destdir}/usr/bin/${program}"
- rm "${destdir}/${mandir}/man1/${program}.1" \
- "${destdir}/${mandir}/man8/${program}.8" || true;
- done
- unset -v program
- strip --strip-unneeded "${destdir}"/usr/bin/* \
- "${destdir}"/usr/sbin/* 2> /dev/null || true;
- rmdir "${destdir}/${mandir}/man1" || true;
- # Compress and link man pages (if needed)
- if test -d "${destdir}/$mandir"
- then
- (
- cd "${destdir}/$mandir"
- find . -type f -exec lzip -9 {} +
- find . -type l | while read -r file
- do
- ln -sf "$(readlink -- "$file").lz" "${file}.lz"
- rm -- "$file"
- done
- )
- fi
- # Copy documentation
- mkdir -p "${destdir}/$docsdir"
- cp -p $docs "${destdir}/$docsdir"
- }
|