blob: 3ae5f0fc4d931af8490f929d10b5aec59e033ec2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Contributor: Danilo Godec <danilo.godec@agenda.si>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=xl2tpd
pkgver=1.3.1
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="https://wl500g.googlecode.com/svn-history/r3419/branches/sdk560/$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="cf61576fef5c2d6c68279a408ec1f0d5 xl2tpd-1.3.1.tar.gz
0032d104bd2d993b8a514c2f898d1dd9 xl2tpd.confd
77e4364f4e726549b6e74aec2b1ccd39 xl2tpd.initd
8f1a2896d08b6353424013cf7247dc7d options.l2tp"
|