diff options
author | Michael Mason <ms13sp@gmail.com> | 2010-03-30 15:15:18 +0000 |
---|---|---|
committer | Michael Mason <ms13sp@gmail.com> | 2010-03-30 15:15:18 +0000 |
commit | 3beeaef56aeb6a5731185d9d26a8b5230d59a661 (patch) | |
tree | 6ed5a7c260437886727613b2d9189f5cd2fc9a1d /testing/rtapd | |
parent | 75d7d985d22cb30d79c0f0b1dc187d2b01fcfbfc (diff) | |
download | aports-3beeaef56aeb6a5731185d9d26a8b5230d59a661.tar.bz2 aports-3beeaef56aeb6a5731185d9d26a8b5230d59a661.tar.xz |
testing/rtapd added. Makefile support postgres
Diffstat (limited to 'testing/rtapd')
-rw-r--r-- | testing/rtapd/APKBUILD | 41 | ||||
-rw-r--r-- | testing/rtapd/Makefile.patch | 13 | ||||
-rw-r--r-- | testing/rtapd/rtapd.confd | 1 | ||||
-rw-r--r-- | testing/rtapd/rtapd.initd | 20 |
4 files changed, 75 insertions, 0 deletions
diff --git a/testing/rtapd/APKBUILD b/testing/rtapd/APKBUILD new file mode 100644 index 0000000000..f568fb7601 --- /dev/null +++ b/testing/rtapd/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Michael Mason <ms13sp@gmail.com> +# Maintainer: Michael Mason <ms13sp@gmail.com> +pkgname=rtapd +_altpkgname="rtnppd" +_builddir="$pkgname" +pkgver=1.7 +pkgrel=0 +pkgdesc="daemon for routing packets to rtnppd" +url="http://sourceforge.net/projects/rtnppd/" +license="GPL" +depends="" +makedepends="postgresql-dev" +install= +subpackages="" +source="http://downloads.sourceforge.net/$_altpkgname/$pkgname-$pkgver.tar.gz + Makefile.patch + $pkgname.initd + $pkgname.confd" + +build() { + cd "$srcdir"/"$_builddir" + echo "Applying Patch" + patch -p1 < ../Makefile.patch || return 1 + make || return 1 +} +package() { + cd "$srcdir"/"$_builddir" + #make DESTDIR="$pkgdir" install + install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname + install -m644 -D "$srcdir"/$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname + install -m755 -D ./rtapd "$pkgdir"/usr/sbin/rtapd + install -m755 -D ./vsnppd "$pkgdir"/usr/sbin/vsnppd + install -m644 -D ./rtapd.conf "$pkgdir"/etc/rtnppd/rtapd.conf + install -m644 -D ./tap_dev.conf "$pkgdir"/etc/rtnppd/tap_dev.conf + install -m644 -D ./tap_route.conf "$pkgdir"/etc/rtnppd/tag_route.conf +} + +md5sums="f3354efde507d29813754c8f4af7fa02 rtapd-1.7.tar.gz +7ea62a8bb13e2069164d8639b8c02aad Makefile.patch +bd5aa6b7477064be5966962b90be55b5 rtapd.initd +4378fc49b27dcc6ab7f2316ea2453338 rtapd.confd" diff --git a/testing/rtapd/Makefile.patch b/testing/rtapd/Makefile.patch new file mode 100644 index 0000000000..197cce501d --- /dev/null +++ b/testing/rtapd/Makefile.patch @@ -0,0 +1,13 @@ +--- rtapd.orig/Makefile Tue Mar 30 15:10:02 2010 ++++ rtapd/Makefile Tue Mar 30 15:10:11 2010 +@@ -23,8 +23,8 @@ + + # Use PostgreSQL-server (with includes in /usr/include/pgsql + # and libs in /usr/lib +-#CFLAGS = -DUSE_POSTGRESQL -I/usr/include/pgsql +-#LIBS = -lpq ++CFLAGS = -DUSE_POSTGRESQL -I/usr/include/pgsql ++LIBS = -lpq + + PREFIX = /usr/local + INCLUDES = -I./ diff --git a/testing/rtapd/rtapd.confd b/testing/rtapd/rtapd.confd new file mode 100644 index 0000000000..4c0047b10d --- /dev/null +++ b/testing/rtapd/rtapd.confd @@ -0,0 +1 @@ +#RTAPD_OPTS="" diff --git a/testing/rtapd/rtapd.initd b/testing/rtapd/rtapd.initd new file mode 100644 index 0000000000..01fce242a6 --- /dev/null +++ b/testing/rtapd/rtapd.initd @@ -0,0 +1,20 @@ +#!/sbin/runscript +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +DAEMON=/usr/sbin/rtapd +USER=rtnppd + +start() { + ebegin "Starting $(basename $DAEMON)" + start-stop-daemon --start --user ${USER} --exec ${DAEMON} \ + -- -C /etc/rtnppd/rtapd.conf ${RTAPD_OPTS} + eend $? +} + +stop() { + ebegin "Stopping $(basename $DAEMON)" + start-stop-daemon --stop --exec ${DAEMON} + eend $? +} |