aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/xl2tpd/xl2tpd.inc
blob: 5649f97ae4b2558f81868e6a617ab06e045116e9 (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
DEPENDS += "virtual/libc ppp"
DESCRIPTION = " version of the Layer 2 Tunneling Protocol (L2TP) daemon"
LICENSE = "GPLv2"
HOMEPAGE = "http://www.xelerance.com/software/xl2tpd/"
SECTION = "network"

INC_PR  = "r1"

PACKAGE_ARCH = "${MACHINE_ARCH}"

SRC_URI = "http://www.xelerance.com/software/xl2tpd/xl2tpd-${PV}.tar.gz"

S = "${WORKDIR}/xl2tpd-${PV}"

do_compile () {
	oe_runmake CFLAGS="${CFLAGS} -DLINUX" LDFLAGS="${LDFLAGS}" PREFIX="/usr" KERNELSRC=${STAGING_KERNEL_DIR} all
}

do_install () { 
	oe_runmake PREFIX="${D}${prefix}" install

        install -d ${D}${sysconfdir}/init.d
        touch ${D}${sysconfdir}/xl2tpd.conf
        install -m 0755 debian/xl2tpd.init ${D}${sysconfdir}/init.d/xl2tpd
	install -d ${D}${sysconfdir}/default
	install -m 0644 debian/xl2tpd.default ${D}${sysconfdir}/default/xl2tpd
}

CONFFILES_${PN} += "${sysconfdir}/xl2tpd.conf ${sysconfdir}/default/xl2tpd"
FILES_${PN} += "${bindir} ${sbindir}"
FILES_${PN}-doc += "${sharedir}"