iputils: moved from core

This commit is contained in:
Juergen Daubert 2019-05-23 17:38:20 +02:00
parent 3acdbda28b
commit 2b4fa0a606
3 changed files with 52 additions and 0 deletions

22
iputils/.footprint Normal file
View File

@ -0,0 +1,22 @@
drwxr-xr-x root/root bin/
-rwsr-xr-x root/root bin/ping
drwxr-xr-x root/root sbin/
-rwxr-xr-x root/root sbin/arping
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwsr-xr-x root/root usr/bin/traceroute6
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/clockdiff
-rwxr-xr-x root/root usr/sbin/rarpd
-rwxr-xr-x root/root usr/sbin/rdisc
-rwxr-xr-x root/root usr/sbin/tracepath
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man8/
-rw-r--r-- root/root usr/share/man/man8/arping.8.gz
-rw-r--r-- root/root usr/share/man/man8/clockdiff.8.gz
-rw-r--r-- root/root usr/share/man/man8/ping.8.gz
-rw-r--r-- root/root usr/share/man/man8/rarpd.8.gz
-rw-r--r-- root/root usr/share/man/man8/rdisc.8.gz
-rw-r--r-- root/root usr/share/man/man8/tracepath.8.gz
-rw-r--r-- root/root usr/share/man/man8/traceroute6.8.gz

6
iputils/.signature Normal file
View File

@ -0,0 +1,6 @@
untrusted comment: verify with /etc/ports/core.pub
RWRJc1FUaeVeqtd+1fvZLeNQPY6D90zDtAIJq0asn1DJPRtotE9GvvQOu3c0o8a7WELNnrXlxhhNuvdxd2X8KSFhC/OqVrDeOAg=
SHA256 (Pkgfile) = dff3fb79dab27c51530b0629494def05e76ecf4cf5f9d5ffd69ec6ee4502d069
SHA256 (.footprint) = 05e349336245cd86102f102ffaa59776b15406264cb25e9063bdbe5c90412507
SHA256 (iputils-s20180629.tar.gz) = da14105291dd491f28ea91ade854ed10aee8ba019641c80eed233de3908be7c5
SHA256 (iputils-man-s20180629-1.tar.xz) = fdbee6d088a134d6fb0612be7d8619806ef304d8d614443d5f6fef88b8fb6a85

24
iputils/Pkgfile Normal file
View File

@ -0,0 +1,24 @@
# Description: Basic networking utilities
# URL: https://github.com/iputils/iputils
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: libcap openssl
name=iputils
version=s20180629
release=2
source=(https://github.com/iputils/iputils/archive/$version/$name-$version.tar.gz
http://crux.nu/files/distfiles/$name-man-$version-1.tar.xz)
build() {
cd $name-$version
make USE_IDN=no USE_NETTLE=no USE_GCRYPT=no USE_GNUTLS=no CCOPTOPT="$CFLAGS"
install -d $PKG/{{s,}bin,usr/{bin,sbin,share/man/man8}}
install ping $PKG/bin/
install arping $PKG/sbin/
install tracepath clockdiff rarpd rdisc $PKG/usr/sbin/
install traceroute6 $PKG/usr/bin/
cp -d $SRC/$name-man-$version/* $PKG/usr/share/man/man8
chmod u+s $PKG/bin/ping $PKG/usr/bin/traceroute6
}