summaryrefslogtreecommitdiff
path: root/repo/util/inetutils.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/util/inetutils.xibuild')
-rw-r--r--repo/util/inetutils.xibuild29
1 files changed, 0 insertions, 29 deletions
diff --git a/repo/util/inetutils.xibuild b/repo/util/inetutils.xibuild
deleted file mode 100644
index 6e7ed88..0000000
--- a/repo/util/inetutils.xibuild
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-
-MAKEDEPS="make utmps"
-DEPS="pam libcap readline ncurses libxcrypt iana-etc net-tools"
-
-PKG_VER=2.2
-SOURCE=https://ftp.gnu.org/gnu/inetutils/inetutils-$PKG_VER.tar.xz
-DESC="A collection of common programs for basic networking"
-
-prepare () {
- sed -i 's|_GL_WARN_ON_USE (gets|//_GL_WARN_ON_USE (gets|' lib/stdio.in.h
- echo '#define PATH_PROCNET_DEV "/proc/net/dev"' >> ifconfig/system/linux.h
- sed -i 's|port : "whois"|port : "nicname"|' whois/whois.c
-
- # this might need to be changed in include/utmpx.h instead
- sed -i '35s/char/char const/g' libinetutils/logwtmpko.c
- touch man/whois.1
-}
-
-build () {
- ./configure --prefix=/usr --disable-rcp --disable-rlogin --disable-rlogind --disable-rsh --disable-rshd --disable-talk --disable-talkd
- make
-}
-
-package () {
- make DESTDIR=$PKG_DEST install
- rm $PKG_DEST/usr/bin/hostname
- chmod u+s $PKG_DEST/usr/bin/ping
-}