aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/lsh/lsh_1.5.5.bb
blob: 284a0100eb6bc0f3eb08e9fc8ad6172d880e23c5 (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
LICENSE = "GPL"
SECTION = "console/network"
DESCRIPTION = "lsh is a GNU GPL-licensed implementation of the SSH \
(version 2) protocol. It includes a server, a client, and some \
utility programs."
DEPENDS = "zlib gmp liboop"

SRC_URI = "http://www.lysator.liu.se/~nisse/archive/lsh-${PV}.tar.gz"
S = "${WORKDIR}/lsh-${PV}"

inherit autotools
configopts = "  --enable-debug-alloc    Enable memory allocation sanity checks \
		--enable-debug-trace    Enable tracing support \
		--enable-gcov           Instrument for gcov (requires a modern gcc) \
		--without-pty           Disable pty support \
		--disable-srp           Disable the (experimental) support for SRP \
		--disable-kerberos      Don't support kerberos \
		--disable-pam           Don't support PAM \
		--disable-datafellows-workarounds \
		--enable-initgroups-workaround \
		--disable-tcp-forward   Disable tcp forwarding \
		--disable-x11-forward   Disable x11 forwarding (proxy only) \
		--disable-agent-forward Disable auth-agent forwarding (proxy only) \
		--disable-ipv6          Disable IPv6 support \
		--disable-utmp          Disable utmp and wtmp support \
		--without-zlib          Don't use zlib compression \
		--with-tcpwrappers      Use tcp-wrappers for filtering connections \
		--with-sshd1=PROGRAM support fallback to SSH1 daemon \
		--with-scheme=PROGRAM Use a particular scheme implementation \
		--without-system-argp   Don't use the system's argp \
		--with-include-path     A colon-separated list of directories to search for \
		--with-lib-path         A colon-separated list of directories to search for \
		--with-x                use the X Window System"
EXTRA_OECONF = "--disable-srp --disable-kerberos --disable-pam \
		--without-x"
OpenEmbedded Core user contribution treesGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libiconv/libiconv_1.11.1.bb
blob: 055e20d4f1c361e9fc1afff2d649acf182dbc31c (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
DESCRIPTION = "GNU libiconv - libiconv is for you if your application needs to support \
multiple character encodings, but that support lacks from your system."
HOMEPAGE = "http://www.gnu.org/software/libiconv"
SECTION = "libs"
NOTES = "Needs to be stripped down to: ascii iso8859-1 eucjp iso-2022jp gb utf8"
PROVIDES = "virtual/libiconv"
PR = "r0"
LICENSE = "LGPL"
LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=9f604d8a4f8e74f4f5140845a21b6674 \
                    file://libcharset/COPYING.LIB;md5=9f604d8a4f8e74f4f5140845a21b6674"
SRC_URI = "${GNU_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz \
           file://autoconf.patch \
	   file://shared_preloadable_libiconv_linux.patch \
          "

SRC_URI[md5sum] = "d42b97f6ef5dd0ba4469d520ed732fed"
SRC_URI[sha256sum] = "e78c347a1a0cb15f2648519e9799151f4b4a934b61ad9ee7424478efe2b8257f"

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

inherit autotools pkgconfig gettext

python __anonymous() {
    if d.getVar("TCLIBC", True) == "eglibc":
        raise bb.parse.SkipPackage("libiconv is provided for use with uClibc only - eglibc already provides iconv")
}

EXTRA_OECONF += "--enable-shared --enable-static --enable-relocatable"

LEAD_SONAME = "libiconv.so"

do_configure_prepend () {
	rm -f m4/libtool.m4 libcharset/m4/libtool.m4
}