Magellan Linux

Contents of /trunk/core/net-tools/net-tools-2.10-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 33504 - (show annotations) (download)
Wed Jul 26 09:04:45 2023 UTC (9 months, 4 weeks ago) by niro
File size: 1011 byte(s)
-ver bump to 2.10-r1
1 # $Id$
2
3 PNAME="net-tools"
4 PVER="2.10"
5 PBUILD="r1"
6
7 PCAT="sys-apps"
8
9 DESCRIPTION="Standard Linux networking tools."
10 HOMEPAGE="http://net-tools.sourceforge.net/"
11
12 DEPEND=">= virtual/glibc"
13
14 SRCFILE="${PNAME}-${PVER}.tar.xz"
15 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
16
17 sminclude mbuild mtools
18
19 SRC_URI=(
20 https://downloads.sourceforge.net/project/${PNAME}/${SRCFILE}
21 mirror://${PNAME}/${SRCFILE}
22 )
23
24 UP2DATE="updatecmd https://downloads.sourceforge.net/project/${PNAME}/ | highesttarball xz"
25
26 src_compile()
27 {
28 cd ${SRCDIR}
29 yes "" | make BINDIR="/usr/bin" SBINDIR="/usr/sbin" config || die
30 make BINDIR="/usr/bin" SBINDIR="/usr/sbin" || die
31 }
32
33 src_install()
34 {
35 cd ${SRCDIR}
36 make DESTDIR=${BINDIR} BINDIR="/usr/bin" SBINDIR="/usr/sbin" install || die
37 minstalldocs ABOUT-NLS COPYING README* TODO || die
38
39 # remove binaries provided by inetutils
40 mdelete /usr/bin/dnsdomainname || die
41 mdelete /usr/share/man/man1/dnsdomainname.1 || die
42 mdelete /usr/bin/hostname || die
43 mdelete /usr/share/man/man1/hostname.1 || die
44 }