diff options
-rw-r--r-- | community/dhcp-probe/APKBUILD (renamed from testing/dhcp-probe/APKBUILD) | 30 | ||||
-rw-r--r-- | community/dhcp-probe/dhcp-probe.confd (renamed from testing/dhcp-probe/dhcp-probe.confd) | 0 | ||||
-rw-r--r-- | community/dhcp-probe/dhcp-probe.initd (renamed from testing/dhcp-probe/dhcp-probe.initd) | 2 |
3 files changed, 15 insertions, 17 deletions
diff --git a/testing/dhcp-probe/APKBUILD b/community/dhcp-probe/APKBUILD index 74005a2e71..43780489bb 100644 --- a/testing/dhcp-probe/APKBUILD +++ b/community/dhcp-probe/APKBUILD @@ -3,7 +3,7 @@ pkgname=dhcp-probe _pkgname=dhcp_probe pkgver=1.3.0 -pkgrel=1 +pkgrel=2 pkgdesc="Allows network administrators to make calculations that will assist in subnetting a network" url="http://www.net.princeton.edu/software/dhcp_probe/" arch="all" @@ -16,33 +16,31 @@ subpackages="$pkgname-doc" source="http://www.net.princeton.edu/software/$_pkgname/$_pkgname-$pkgver.tar.gz $pkgname.initd $pkgname.confd" -_builddir="$srcdir"/$_pkgname-$pkgver -prepare() { - local i - cd "$_builddir" - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done -} +builddir="$srcdir"/$_pkgname-$pkgver + build() { - cd "$_builddir" + cd "$builddir" ./configure --prefix=/usr make || return 1 } package() { local f - cd "$_builddir" + cd "$builddir" make DESTDIR="$pkgdir" install mkdir -p "$srcdir"/etc/dhcp-probe install -Dm755 "$srcdir"/$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname || return 1 install -Dm755 "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname || return 1 - install -Dm755 "$_builddir"/extras/dhcp_probe.cf.sample "$pkgdir"/etc/dhcp-probe/dhcp_probe.cf || return 1 + install -Dm755 "$builddir"/extras/dhcp_probe.cf.sample "$pkgdir"/etc/dhcp-probe/dhcp_probe.cf || return 1 for f in dhcp_probe_notify dhcp_probe_notify2 mail-throttled; do - install -Dm755 "$_builddir"/extras/$f "$pkgdir"/etc/dhcp-probe/$f || return 1 + install -Dm755 "$builddir"/extras/$f "$pkgdir"/etc/dhcp-probe/$f || return 1 done } md5sums="8067e696fbd88120bdcc2ffef4b64da2 dhcp_probe-1.3.0.tar.gz -d69a227cd436b60f918633a7f7ac7034 dhcp-probe.initd +2a7a823651ab64c79654983c94edc347 dhcp-probe.initd 1ffbda883f84af0daf5a2992370de643 dhcp-probe.confd" +sha256sums="227cd6a82a7fa4d989994cb076f18092bc2c82592ceaeb31c4fdd09294b9265f dhcp_probe-1.3.0.tar.gz +af384ec0bc9c52c4da67bdc23c455ced8acebde45811c8f0ba2102ed22ad5589 dhcp-probe.initd +bb9bd5bc155c05a1e9516bd7319680881e6acc300205206c8b55b649072f3d01 dhcp-probe.confd" +sha512sums="d643012529ee5149adbc0c1f19f8e579c55201e86de2aec9b3313be9412db4e973162f864d1baaf79fa340b7bd9a7385f0f1406d1b616e801ced3c7bb387c854 dhcp_probe-1.3.0.tar.gz +3753d6b4c5780f42a4793dfa1f23df2c9a21fa56ca42083f60d23585d720e76cb96f4f38bfeb31cb2e599f3e5659ef7decec1c7c9b3c885db5abd65c4302c63c dhcp-probe.initd +0e500c4fc58892b70a85434d5dbba45e9ca89455223ac56e8dc544d5e16539bbd4cc63795de02096669951ad7b6a8a1606660a5ee7655f3f4375fa4c4d168b73 dhcp-probe.confd" diff --git a/testing/dhcp-probe/dhcp-probe.confd b/community/dhcp-probe/dhcp-probe.confd index 0dee6058cd..0dee6058cd 100644 --- a/testing/dhcp-probe/dhcp-probe.confd +++ b/community/dhcp-probe/dhcp-probe.confd diff --git a/testing/dhcp-probe/dhcp-probe.initd b/community/dhcp-probe/dhcp-probe.initd index ba08560b38..e5a596414d 100644 --- a/testing/dhcp-probe/dhcp-probe.initd +++ b/community/dhcp-probe/dhcp-probe.initd @@ -1,4 +1,4 @@ -#!/sbin/runscript +#!/sbin/openrc-run depend() { need net |