From 9d16731a9fff59f15b84eaf253e022c2447530e1 Mon Sep 17 00:00:00 2001 From: Nicolás Reynolds Date: Fri, 1 Apr 2011 16:29:01 -0300 Subject: inadyn-opendns-1.99-3 --- social/inadyn-opendns/PKGBUILD | 32 +++++++++++++++++++++++ social/inadyn-opendns/inadyn-opendns.install | 17 +++++++++++++ social/inadyn-opendns/inadyn.rc-script | 38 ++++++++++++++++++++++++++++ 3 files changed, 87 insertions(+) create mode 100644 social/inadyn-opendns/PKGBUILD create mode 100644 social/inadyn-opendns/inadyn-opendns.install create mode 100644 social/inadyn-opendns/inadyn.rc-script (limited to 'social') diff --git a/social/inadyn-opendns/PKGBUILD b/social/inadyn-opendns/PKGBUILD new file mode 100644 index 000000000..75e8dc1ae --- /dev/null +++ b/social/inadyn-opendns/PKGBUILD @@ -0,0 +1,32 @@ +# Contributor: Bug +# Maintainer: Bug +pkgname=inadyn-opendns +pkgver=1.99 +pkgrel=3 +pkgdesc="Simple dynamic DNS client with SSL support" +arch=('i686') +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/social/inadyn-opendns/inadyn-opendns.install b/social/inadyn-opendns/inadyn-opendns.install new file mode 100644 index 000000000..e1a842430 --- /dev/null +++ b/social/inadyn-opendns/inadyn-opendns.install @@ -0,0 +1,17 @@ +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/social/inadyn-opendns/inadyn.rc-script b/social/inadyn-opendns/inadyn.rc-script new file mode 100644 index 000000000..2ee29d59e --- /dev/null +++ b/social/inadyn-opendns/inadyn.rc-script @@ -0,0 +1,38 @@ +#!/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 + -- cgit v1.2.3-54-g00ecf