diff options
author | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
commit | 1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch) | |
tree | 0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-networking/recipes-protocols/xl2tpd/xl2tpd.inc | |
download | meta-openembedded-daisy-140929.tar.gz |
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-networking/recipes-protocols/xl2tpd/xl2tpd.inc')
-rw-r--r-- | meta-networking/recipes-protocols/xl2tpd/xl2tpd.inc | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/meta-networking/recipes-protocols/xl2tpd/xl2tpd.inc b/meta-networking/recipes-protocols/xl2tpd/xl2tpd.inc new file mode 100644 index 0000000000..f4ea2b8266 --- /dev/null +++ b/meta-networking/recipes-protocols/xl2tpd/xl2tpd.inc | |||
@@ -0,0 +1,40 @@ | |||
1 | SUMMARY = "Xelerance version of the Layer 2 Tunneling Protocol (L2TP) daemon" | ||
2 | HOMEPAGE = "http://www.xelerance.com/software/xl2tpd/" | ||
3 | SECTION = "network" | ||
4 | DEPENDS = "ppp virtual/kernel" | ||
5 | |||
6 | LICENSE = "GPLv2" | ||
7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=0636e73ff0215e8d672dc4c32c317bb3" | ||
8 | |||
9 | INC_PR = "r0" | ||
10 | |||
11 | SRC_URI = "git://github.com/xelerance/xl2tpd.git" | ||
12 | |||
13 | S = "${WORKDIR}/git" | ||
14 | |||
15 | inherit update-rc.d | ||
16 | |||
17 | do_compile () { | ||
18 | oe_runmake CFLAGS="${CFLAGS} -DLINUX" LDFLAGS="${LDFLAGS}" PREFIX="${prefix}" KERNELSRC=${STAGING_KERNEL_DIR} all | ||
19 | } | ||
20 | |||
21 | do_install () { | ||
22 | oe_runmake PREFIX="${D}${prefix}" install | ||
23 | |||
24 | install -d ${D}${sysconfdir}/init.d | ||
25 | touch ${D}${sysconfdir}/xl2tpd.conf | ||
26 | install -m 0755 debian/xl2tpd.init ${D}${sysconfdir}/init.d/xl2tpd | ||
27 | sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${sysconfdir}/init.d/xl2tpd | ||
28 | sed -i 's!/etc/!${sysconfdir}/!g' ${D}${sysconfdir}/init.d/xl2tpd | ||
29 | sed -i 's!/var/!${localstatedir}/!g' ${D}${sysconfdir}/init.d/xl2tpd | ||
30 | sed -i 's!^PATH=.*!PATH=${base_sbindir}:${base_bindir}:${sbindir}:${bindir}!' ${D}${sysconfdir}/init.d/xl2tpd | ||
31 | |||
32 | install -d ${D}${sysconfdir}/default | ||
33 | install -m 0644 debian/xl2tpd.default ${D}${sysconfdir}/default/xl2tpd | ||
34 | } | ||
35 | |||
36 | CONFFILES_${PN} += "${sysconfdir}/xl2tpd.conf ${sysconfdir}/default/xl2tpd" | ||
37 | |||
38 | INITSCRIPT_PACKAGES = "${PN}" | ||
39 | INITSCRIPT_NAME_${PN} = "xl2tpd" | ||
40 | |||