diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2016-05-11 16:43:52 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-05-11 16:45:47 +0000 |
commit | 315ddd26b78d81b1c2f0c1d2a85da338b00fdb25 (patch) | |
tree | 47205a7adb60694996874da8c3fc720dcd920501 /unmaintained/wifidog | |
parent | aacae4a7b4456b75cbc938f7656cc7118b1e8646 (diff) | |
download | aports-315ddd26b78d81b1c2f0c1d2a85da338b00fdb25.tar.bz2 aports-315ddd26b78d81b1c2f0c1d2a85da338b00fdb25.tar.xz |
unmaintained/: Purge packages unmaintained since v3.0
Removes packages that have been in aports/unmaintained since the 3.0-stable
branch.
Alpine Linux v3.0 was released on 2014-06-04 and EOL on 2016-05-01, so
these packages have not been touched since at least 23 months.
The files can still be recovered from the 3.3-stable branch.
Diffstat (limited to 'unmaintained/wifidog')
-rw-r--r-- | unmaintained/wifidog/APKBUILD | 38 | ||||
-rwxr-xr-x | unmaintained/wifidog/wifidog.initd | 39 |
2 files changed, 0 insertions, 77 deletions
diff --git a/unmaintained/wifidog/APKBUILD b/unmaintained/wifidog/APKBUILD deleted file mode 100644 index caa4872051..0000000000 --- a/unmaintained/wifidog/APKBUILD +++ /dev/null @@ -1,38 +0,0 @@ -# Maintainer: Nathan Angelacos <nangel@alpinelinux.org> -pkgname=wifidog -pkgver=20090925 -pkgrel=2 -pkgdesc="Wifi Captive Portal" -url="http://dev.wifidog.org/" -arch="all" -license="GPL2" -depends= -makedepends= -subpackages="$pkgname-doc" -source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz - wifidog.initd" - -_httplib=/usr/lib - -_builddir="$srcdir/$pkgname-$pkgver" -build() { - cd "$_builddir" - ./configure --prefix=/usr --sysconfdir=/etc/wifidog || return 1 - make || return 1 -} - -package() { - cd "$_builddir" - make DESTDIR="$pkgdir/" install || return 1 - mkdir -p "$pkgdir"/etc/wifidog || return - cp "$_builddir"/wifidog.conf "$pkgdir"/etc/wifidog/wifidog.conf - cp "$_builddir"/wifidog-msg.html "$pkgdir"/etc/wifidog/wifidog-msg.html - rm -rf "$pkgdir"/usr/include || return 1 - rm "$pkgdir"/$_httplib/*.a || return 1 - install -Dm755 "$srcdir"/wifidog.initd "$pkgdir"/etc/init.d/wifidog \ - || return 1 - -} - -md5sums="e3ecacba67a91b6ea3c1072ba6c5a0b4 wifidog-20090925.tar.gz -410267a956ee1b12669353771fe3cafa wifidog.initd" diff --git a/unmaintained/wifidog/wifidog.initd b/unmaintained/wifidog/wifidog.initd deleted file mode 100755 index c5e3b37f08..0000000000 --- a/unmaintained/wifidog/wifidog.initd +++ /dev/null @@ -1,39 +0,0 @@ -#!/sbin/runscript -# Copyright 2012 Nathan Angelacos for Alpine Linux -# Distributed under the terms of the GNU General Public License v2 - -SVCDIR=${SVCDIR:-/etc/wifidog} -SVC=${SVCNAME#*.} -if [ -n "${SVC}" ] && [ ${SVCNAME} != "wifidog" ]; then - SVCPID="/var/run/wifidog.${SVC}.pid" -else - SVCPID="/var/run/wifidog.pid" -fi -SVCCONF="${SVCDIR}/${SVC}.conf" - -depend() { - need net - use dns -} - - -start() { - ebegin "Starting ${SVCNAME}" - - start-stop-daemon --start --exec /usr/bin/wifidog -b -m --pidfile "${SVCPID}" \ - -- -f -s -c ${SVCCONF} ${CONF} 2&>1 >/dev/null - if ! [ -d /proc/`cat ${SVCPID}` ]; then - rm -f "${SVCPID}" - eend 1 - return 1 - fi - eend 0 -} - -stop() { - ebegin "Stopping ${SVCNAME}" - start-stop-daemon --stop --quiet \ - --exec /usr/sbin/wifidog --pidfile "${SVCPID}" - eend $? -} - |