summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-protocols/dante/dante_1.4.3.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-networking/recipes-protocols/dante/dante_1.4.3.bb')
-rw-r--r--meta-networking/recipes-protocols/dante/dante_1.4.3.bb49
1 files changed, 49 insertions, 0 deletions
diff --git a/meta-networking/recipes-protocols/dante/dante_1.4.3.bb b/meta-networking/recipes-protocols/dante/dante_1.4.3.bb
new file mode 100644
index 0000000000..746c08be6e
--- /dev/null
+++ b/meta-networking/recipes-protocols/dante/dante_1.4.3.bb
@@ -0,0 +1,49 @@
1SECTION = "console/utils"
2SUMMARY = "A free SOCKS server"
3DESCRIPTION = "Dante consists of a SOCKS server and a SOCKS client,\
4implementing RFC 1928 and related standards. It is a flexible product\
5that can be used to provide convenient and secure network\
6connectivity. Once installed, Dante can in most cases be made\
7transparent to clients, providing functionality somewhat similar to\
8what could be described as a non-transparent Layer 4 router."
9HOMEPAGE = "http://www.inet.no/dante/"
10
11LICENSE = "BSD-3-Clause"
12LIC_FILES_CHKSUM = "file://LICENSE;md5=edd508404db7339042dfc861a3a690ad"
13
14SRC_URI = "https://www.inet.no/dante/files/dante-${PV}.tar.gz \
15 "
16SRC_URI[sha256sum] = "418a065fe1a4b8ace8fbf77c2da269a98f376e7115902e76cda7e741e4846a5d"
17
18# without --without-gssapi, config.log will contain reference to /usr/lib
19# as a consequence of GSSAPI path being set to /usr by default.
20# --with-gssapi-path=PATH specify gssapi path
21# --without-gssapi disable gssapi support
22# --enable-release build prerelease as full release
23EXTRA_OECONF += "--without-gssapi --sbindir=${bindir}"
24
25DEPENDS += "flex-native bison-native libpam libtirpc"
26inherit autotools-brokensep features_check
27
28CFLAGS += "-I${STAGING_INCDIR}/tirpc"
29LIBS += "-ltirpc"
30
31REQUIRED_DISTRO_FEATURES = "pam"
32
33EXTRA_AUTORECONF = "-I ${S}"
34
35PACKAGECONFIG[libwrap] = ",--disable-libwrap,tcp-wrappers,libwrap"
36
37PACKAGECONFIG ??= ""
38
39do_install:append() {
40 install -d ${D}${sysconfdir}
41 cp ${S}/example/sock[sd].conf ${D}${sysconfdir}
42}
43
44PACKAGES =+ "${PN}-sockd ${PN}-libdsocks "
45
46FILES:${PN}-libdsocks = "${libdir}/libdsocks.so"
47FILES:${PN}-sockd = "${bindir}/sockd ${sysconfdir}/sockd.conf"
48
49INSANE_SKIP:${PN}-libdsocks = "dev-elf"