diff options
| author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
|---|---|---|
| committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
| commit | b70981b68efcce5256eb11c6cd26ae123b10b6ea (patch) | |
| tree | a38be6efae5e2ba15c2e839504632f9b7bfd5f91 /extra/iputils | |
| parent | 2b4df81538b8398442d5296650905c70341dd8d3 (diff) | |
| download | aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.bz2 aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.xz | |
moved extra/* to main/
and fixed misc build issues
Diffstat (limited to 'extra/iputils')
| -rw-r--r-- | extra/iputils/APKBUILD | 28 | ||||
| -rw-r--r-- | extra/iputils/iputils-20070202-no-open-max.patch | 16 | ||||
| -rw-r--r-- | extra/iputils/iputils.post-install | 3 |
3 files changed, 0 insertions, 47 deletions
diff --git a/extra/iputils/APKBUILD b/extra/iputils/APKBUILD deleted file mode 100644 index 02face483a..0000000000 --- a/extra/iputils/APKBUILD +++ /dev/null @@ -1,28 +0,0 @@ -# Maintainer: Natanael Copa <ncopa@alpinelinux.org> -pkgname=iputils -pkgver=20071127 -pkgrel=1 -pkgdesc="IP Configuration Utilities (and Ping)" -url="http://www.linuxfoundation.org/en/Net:Iputils" -license="GPL" -install=$pkgname.post-install -depends="uclibc" -source="http://www.skbuff.net/$pkgname/$pkgname-s$pkgver.tar.bz2 - $pkgname-20070202-no-open-max.patch - $install" - -build () -{ - cd "$srcdir"/$pkgname-s$pkgver - patch -Np1 -i ../iputils-20070202-no-open-max.patch || return 1 - make KERNEL_INCLUDE=/usr/include || return 1 - for i in arping clockdiff rarpd rdisc tftpd tracepath tracepath6; do - install -D -m755 $i "$pkgdir"/usr/sbin/$i - done - for i in ping ping6 traceroute6; do - install -D -m4755 $i "$pkgdir"/bin/$i - done -} -md5sums="12245e9927d60ff5cf4a99d265bcb7d3 iputils-s20071127.tar.bz2 -a2cbc0174dd883f68297aa7f3e7c4f5c iputils-20070202-no-open-max.patch -b84506d253e04db3c5af9016fead45a3 iputils.post-install" diff --git a/extra/iputils/iputils-20070202-no-open-max.patch b/extra/iputils/iputils-20070202-no-open-max.patch deleted file mode 100644 index 5013ba4fdc..0000000000 --- a/extra/iputils/iputils-20070202-no-open-max.patch +++ /dev/null @@ -1,16 +0,0 @@ -the OPEN_MAX define has been removed in newer kernel headers so use the -proper method of getting the value dynamically - -http://bugs.gentoo.org/195861 - ---- a/rdisc.c -+++ b/rdisc.c -@@ -247,7 +247,7 @@ void do_fork(void) - if ((pid=fork()) != 0) - exit(0); - -- for (t = 0; t < OPEN_MAX; t++) -+ for (t = 0; t < sysconf(_SC_OPEN_MAX); t++) - if (t != s) - close(t); - diff --git a/extra/iputils/iputils.post-install b/extra/iputils/iputils.post-install deleted file mode 100644 index 99b57c4635..0000000000 --- a/extra/iputils/iputils.post-install +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -busybox --install -s |
