From 2b4fa0a60663367b8ae88665f03fb55d9c0d2d54 Mon Sep 17 00:00:00 2001 From: Juergen Daubert Date: Thu, 23 May 2019 17:38:20 +0200 Subject: [PATCH] iputils: moved from core --- iputils/.footprint | 22 ++++++++++++++++++++++ iputils/.signature | 6 ++++++ iputils/Pkgfile | 24 ++++++++++++++++++++++++ 3 files changed, 52 insertions(+) create mode 100644 iputils/.footprint create mode 100644 iputils/.signature create mode 100644 iputils/Pkgfile diff --git a/iputils/.footprint b/iputils/.footprint new file mode 100644 index 000000000..2e268152d --- /dev/null +++ b/iputils/.footprint @@ -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 diff --git a/iputils/.signature b/iputils/.signature new file mode 100644 index 000000000..6ab007c95 --- /dev/null +++ b/iputils/.signature @@ -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 diff --git a/iputils/Pkgfile b/iputils/Pkgfile new file mode 100644 index 000000000..7f9af8901 --- /dev/null +++ b/iputils/Pkgfile @@ -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 +}