diff options
-rw-r--r-- | testing/xl2tpd/APKBUILD | 47 | ||||
-rw-r--r-- | testing/xl2tpd/options.l2tp | 17 | ||||
-rw-r--r-- | testing/xl2tpd/xl2tpd.confd | 5 | ||||
-rw-r--r-- | testing/xl2tpd/xl2tpd.initd | 20 |
4 files changed, 89 insertions, 0 deletions
diff --git a/testing/xl2tpd/APKBUILD b/testing/xl2tpd/APKBUILD new file mode 100644 index 0000000000..a548c72fc3 --- /dev/null +++ b/testing/xl2tpd/APKBUILD @@ -0,0 +1,47 @@ +# Contributor: Danilo Godec <danilo.godec@agenda.si> +# Maintainer: +pkgname=xl2tpd +pkgver=1.3.0 +pkgrel=0 +pkgdesc="Layer 2 Tunnelling Protocol Daemon (RFC 2661)" +url="http://www.xelerance.com/services/software/xl2tpd/" +arch="all" +license="GPL" +depends="" +depends_dev="libpcap-dev" +makedepends="$depends_dev" +install="" +subpackages="$pkgname-doc" +source="http://www.xelerance.com/wp-content/uploads/software/$pkgname/$pkgname-$pkgver.tar.gz xl2tpd.confd xl2tpd.initd options.l2tp" + +_builddir="$srcdir"/$pkgname-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + make PREFIX=/usr || return 1 +} + +package() { + cd "$_builddir" + make PREFIX=/usr DESTDIR="$pkgdir" install + install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE + install -Dm644 examples/xl2tpd.conf "$pkgdir"/etc/xl2tpd/xl2tpd.conf + install -Dm755 "$srcdir"/xl2tpd.initd "$pkgdir"/etc/init.d/xl2tpd + install -Dm644 "$srcdir"/xl2tpd.confd "$pkgdir"/etc/conf.d/xl2tpd + install -Dm644 "$srcdir"/options.l2tp "$pkgdir"/etc/ppp/options.l2tp + install -dm755 "$pkgdir"/var/run/xl2tpd +} + +md5sums="28264284552c442b24cf421755a2bb48 xl2tpd-1.3.0.tar.gz +0032d104bd2d993b8a514c2f898d1dd9 xl2tpd.confd +77e4364f4e726549b6e74aec2b1ccd39 xl2tpd.initd +8f1a2896d08b6353424013cf7247dc7d options.l2tp" diff --git a/testing/xl2tpd/options.l2tp b/testing/xl2tpd/options.l2tp new file mode 100644 index 0000000000..425a56e087 --- /dev/null +++ b/testing/xl2tpd/options.l2tp @@ -0,0 +1,17 @@ +ipcp-accept-local +ipcp-accept-remote +ms-dns 192.168.1.1 +ms-dns 192.168.1.3 +ms-wins 192.168.1.2 +ms-wins 192.168.1.4 +noccp +auth +crtscts +idle 1800 +mtu 1410 +mru 1410 +nodefaultroute +debug +lock +proxyarp +connect-delay 5000 diff --git a/testing/xl2tpd/xl2tpd.confd b/testing/xl2tpd/xl2tpd.confd new file mode 100644 index 0000000000..d89a1f3d6b --- /dev/null +++ b/testing/xl2tpd/xl2tpd.confd @@ -0,0 +1,5 @@ +# Config file for /etc/init.d/xl2tpd + +# Any extra options you want to pass to xl2tpd +# on start-up should be put here. +XL2TPD_OPTS="" diff --git a/testing/xl2tpd/xl2tpd.initd b/testing/xl2tpd/xl2tpd.initd new file mode 100644 index 0000000000..d56e1671e8 --- /dev/null +++ b/testing/xl2tpd/xl2tpd.initd @@ -0,0 +1,20 @@ +#!/sbin/runscript + +depend() { + need net +} + +start() { + ebegin "Starting xl2tpd" + start-stop-daemon --start --quiet --exec /usr/sbin/xl2tpd -- ${XL2TPD_OPTS} + eend $? +} + +stop() { + ebegin "Stopping xl2tpd" + start-stop-daemon --stop --quiet --pidfile /var/run/xl2tpd.pid + result=$? + start-stop-daemon --stop --quiet --exec /usr/sbin/xl2tpd-control + result=$(( $result + $? )) + eend $result +} |