iputils: moved to opt

This commit is contained in:
Juergen Daubert 2019-05-23 17:45:08 +02:00
parent 0592788ee0
commit c19460b6a6
3 changed files with 0 additions and 61 deletions

View File

@ -1,24 +0,0 @@
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/ninfod
-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/ninfod.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

View File

@ -1,6 +0,0 @@
untrusted comment: verify with /etc/ports/core.pub
RWRJc1FUaeVeqkGnizkyPe6slEEv0OgTHO8Tp7yhOSW1auGGh7bJNf8ujIaw78fTGEDOuDXOX8nLxvNknj2FFEXRSFa2Q33nHgo=
SHA256 (Pkgfile) = c1fa6d57ef0e440fa883ee90dea5c8b467def07c535f86c7f58d2bb115ead743
SHA256 (.footprint) = 43939b63c3bfc9cf8414b95ebaf536426c9dad9e972a6a8baf6f74c00947c372
SHA256 (iputils-s20190515.tar.gz) = 9b5125eb5ef9f4e947ad8fdddcf77f538f53b8f47b53eb5bc5347cb16d01c8fd
SHA256 (iputils-man-s20190515.tar.xz) = eef3556f4093feefb78b969875d09fc28d7c182629c408e0a4c9b3a137c0b374

View File

@ -1,31 +0,0 @@
# Description: Basic networking utilities
# URL: https://github.com/iputils/iputils
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: libcap openssl meson ninja
name=iputils
version=s20190515
release=1
source=(https://github.com/iputils/iputils/archive/$version/$name-$version.tar.gz
$name-man-$version.tar.xz)
build() {
cd $name-$version
meson build --prefix /usr \
-D BUILD_MANS=false \
-D BUILD_TRACEROUTE6=true \
-D BUILD_RARPD=true
ninja -C build
install -d $PKG/{{sbin,bin},usr/{bin,sbin,share/man/man8}}
install build/ping $PKG/bin/
install build/arping $PKG/sbin/
install build/{tracepath,clockdiff,rdisc,rarpd} $PKG/usr/sbin/
install build/ninfod/ninfod $PKG/usr/sbin/
install build/traceroute6 $PKG/usr/bin/
install -m 0644 $SRC/*.8 $PKG/usr/share/man/man8
chmod u+s $PKG/bin/ping $PKG/usr/bin/traceroute6
}