summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2015-05-07 10:16:50 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2015-05-07 10:16:50 -0500
commitbc321c1598cda8ba08c7de864d8ad979561a992b (patch)
tree3e54f52d0512d370b65b1038d0410190184a7763
parentee9535b6f6ca5d1655e608ca2344f4a59483f357 (diff)
Removing inadyn-opendns: source code does not exist
-rw-r--r--pcr/inadyn-opendns/PKGBUILD32
-rw-r--r--pcr/inadyn-opendns/inadyn-opendns.install17
-rw-r--r--pcr/inadyn-opendns/inadyn.rc-script38
3 files changed, 0 insertions, 87 deletions
diff --git a/pcr/inadyn-opendns/PKGBUILD b/pcr/inadyn-opendns/PKGBUILD
deleted file mode 100644
index dd361e00c..000000000
--- a/pcr/inadyn-opendns/PKGBUILD
+++ /dev/null
@@ -1,32 +0,0 @@
-# Contributor (Arch): Bug <Bug2000@gmail.com>
-# Maintainer (Arch): Bug <Bug2000@gmail.com>
-pkgname=inadyn-opendns
-pkgver=1.99
-pkgrel=4
-pkgdesc="Simple dynamic DNS client with SSL support"
-arch=('i686' 'x86_64' 'mips64el')
-url="http://www.opendns.com/account/dynamic_dns/downloads"
-license=('GPL')
-makedepends=('unzip')
-depends=('curl')
-conflicts=('inadyn')
-provides=('inadyn')
-backup=('etc/inadyn.conf')
-install='inadyn-opendns.install'
-source=("http://www.opendns.com/support/ddns_files/inadyn.source.v$pkgver.zip"
- 'inadyn.rc-script')
-md5sums=('0f2cf9c3ea3482c03e1c42f8480f1c55'
- '73c61f9939546c28119242a1e12ffcff')
-
-build() {
- cd "$srcdir/inadyn.source.v$pkgver"
-
- make || return 1
-
- install -Dm755 bin/linux/inadyn $pkgdir/usr/sbin/inadyn
- install -Dm644 man/inadyn.8 $pkgdir/usr/share/man/man8/inadyn.8
- install -Dm644 man/inadyn.conf.5 $pkgdir/usr/share/man/man5/inadyn.conf.5
- install -Dm644 readme.html $pkgdir/usr/share/doc/inadyn/readme.html
- install -Dm755 $srcdir/inadyn.rc-script $pkgdir/etc/rc.d/inadyn
- install -Dm644 inadyn.conf $pkgdir/etc/inadyn.conf
-}
diff --git a/pcr/inadyn-opendns/inadyn-opendns.install b/pcr/inadyn-opendns/inadyn-opendns.install
deleted file mode 100644
index e1a842430..000000000
--- a/pcr/inadyn-opendns/inadyn-opendns.install
+++ /dev/null
@@ -1,17 +0,0 @@
-post_install() {
-/bin/true
-echo Please remember to change the /etc/inadyn.conf file for your settings.
-}
-
-post_upgrade() {
-/bin/true
-}
-
-pre_remove() {
-/bin/true
-}
-
-op=$1
-shift
-
-$op "$@" \ No newline at end of file
diff --git a/pcr/inadyn-opendns/inadyn.rc-script b/pcr/inadyn-opendns/inadyn.rc-script
deleted file mode 100644
index 2ee29d59e..000000000
--- a/pcr/inadyn-opendns/inadyn.rc-script
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=`pidof -o %PPID /usr/sbin/inadyn`
-case "$1" in
- start)
- stat_busy "Starting INADYN Daemon"
- [ -z "$PID" ] && /usr/sbin/inadyn --background --input_file /etc/inadyn.conf >>/var/log/inadyn 2>&1
- if [ $? -gt 0 ]; then
- stat_fail
- else
- PID=`pidof -o %PPID /usr/sbin/inadyn`
- echo $PID >/var/run/inadyn.pid
- add_daemon inadyn
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping INADYN Daemon"
- [ ! -z "$PID" ] && kill $PID &>/dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon inadyn
- stat_done
- fi
- ;;
- restart)
- $0 stop
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0
-