summaryrefslogtreecommitdiff
path: root/pcr/aiccu
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2015-04-29 01:39:06 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2015-04-29 01:39:06 -0500
commit0220842121c5fa8ffac398aa03ae2dd0600f3414 (patch)
treee60f7464d7b9b0d60acb4394648b8fc3b3a347a6 /pcr/aiccu
parentdae971ac95e073d00717b164371b0f2658e43ec4 (diff)
downloadabslibre-0220842121c5fa8ffac398aa03ae2dd0600f3414.tar.gz
abslibre-0220842121c5fa8ffac398aa03ae2dd0600f3414.tar.bz2
abslibre-0220842121c5fa8ffac398aa03ae2dd0600f3414.zip
Removing packages. This packages are in community repo
Diffstat (limited to 'pcr/aiccu')
-rw-r--r--pcr/aiccu/PKGBUILD33
-rw-r--r--pcr/aiccu/aiccu.rc.d60
2 files changed, 0 insertions, 93 deletions
diff --git a/pcr/aiccu/PKGBUILD b/pcr/aiccu/PKGBUILD
deleted file mode 100644
index 55ccfb2c0..000000000
--- a/pcr/aiccu/PKGBUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-pkgname=aiccu
-pkgver=20070115
-pkgrel=7
-pkgdesc="SixXS Automatic IPv6 Connectivity Client Utility - AICCU"
-arch=('i686' 'x86_64' 'mips64el')
-url="http://www.sixxs.net/tools/aiccu/"
-license=('BSD')
-depends=('gnutls' 'iproute2')
-makedepends=('glibc' 'libgpg-error' 'libtasn1' 'libgcrypt' 'zlib')
-backup=(etc/aiccu.conf)
-source=(http://www.sixxs.net/archive/sixxs/aiccu/unix/${pkgname}_${pkgver}.tar.gz
- aiccu.rc.d)
-md5sums=('c9bcc83644ed788e22a7c3f3d4021350'
- '9eb63ae132d4835a822ea925c6440b04')
-
-build() {
- cd "$srcdir/$pkgname"
-
- sed -i 's|Installing Debian-style init.d||' Makefile
-
- LDFLAGS="" make
- make DESTDIR="$pkgdir" install
-}
-
-package() {
- cd "$srcdir/$pkgname"
-
- install -D -m600 doc/aiccu.conf "$pkgdir/etc/aiccu.conf"
- install -D -m755 "$srcdir/aiccu.rc.d" "$pkgdir/etc/rc.d/aiccu"
- install -D -m444 doc/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
- rm -fr "$pkgdir/etc/init.d"
-}
diff --git a/pcr/aiccu/aiccu.rc.d b/pcr/aiccu/aiccu.rc.d
deleted file mode 100644
index b0ca08fce..000000000
--- a/pcr/aiccu/aiccu.rc.d
+++ /dev/null
@@ -1,60 +0,0 @@
-#!/bin/bash
-
-daemon_name=aiccu
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-get_pid() {
- pidof $daemon_name
-}
-
-case "$1" in
- start)
- stat_busy "Starting $daemon_name daemon"
-
- PID=`get_pid`
- if [ -z "$PID" ]; then
- [ -f /var/run/$daemon_name.pid ] && rm -f /var/run/$daemon_name.pid
- # RUN
- $daemon_name start > /dev/null
- #
- if [ $? -gt 0 ]; then
- stat_fail
- exit 1
- else
- echo `get_pid` > /var/run/$daemon_name.pid
- add_daemon $daemon_name
- stat_done
- fi
- else
- stat_fail
- exit 1
- fi
- ;;
-
- stop)
- stat_busy "Stopping $daemon_name daemon"
- PID=`get_pid`
- # RUN
- $daemon_name stop
- #
- if [ $? -gt 0 ]; then
- stat_fail
- exit 1
- else
- rm -f /var/run/$daemon_name.pid &> /dev/null
- rm_daemon $daemon_name
- stat_done
- fi
- ;;
-
- restart)
- $0 stop
- sleep 3
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0