diff options
Diffstat (limited to 'meta/recipes-support/libcap')
-rw-r--r-- | meta/recipes-support/libcap/libcap.inc | 34 | ||||
-rw-r--r-- | meta/recipes-support/libcap/libcap_2.19.bb | 3 |
2 files changed, 37 insertions, 0 deletions
diff --git a/meta/recipes-support/libcap/libcap.inc b/meta/recipes-support/libcap/libcap.inc new file mode 100644 index 0000000000..16eaae690c --- /dev/null +++ b/meta/recipes-support/libcap/libcap.inc | |||
@@ -0,0 +1,34 @@ | |||
1 | DESCRIPTION = "support for getting/setting POSIX.1e capabilities" | ||
2 | HOMEPAGE = "http://sites.google.com/site/fullycapable/" | ||
3 | |||
4 | # no specific GPL version required | ||
5 | LICENSE = "BSD | GPL" | ||
6 | LIC_FILES_CHKSUM = "file://License;md5=731de803c1ccbcb05a9b3523279c8d7f" | ||
7 | |||
8 | DEPENDS = "libpam attr perl-native" | ||
9 | |||
10 | SRC_URI = "${KERNELORG_MIRROR}/pub/linux/libs/security/linux-privs/libcap2/${BPN}-${PV}.tar.bz2" | ||
11 | |||
12 | inherit lib_package | ||
13 | |||
14 | do_configure() { | ||
15 | # libcap uses := for compilers, fortunately, it gives us a hint | ||
16 | # on what should be replaced with ?= | ||
17 | sed -e 's,:=,?=,g' -i Make.Rules | ||
18 | sed -e 's,BUILD_CFLAGS ?=,BUILD_CFLAGS := $(BUILD_CFLAGS),' -i Make.Rules | ||
19 | } | ||
20 | |||
21 | EXTRA_OEMAKE = "LIBATTR=yes PAM_CAP=yes INDENT= lib=lib" | ||
22 | EXTRA_OEMAKE_virtclass-native = "LIBATTR=no PAM_CAP=no INDENT= lib=lib" | ||
23 | |||
24 | do_compile() { | ||
25 | oe_runmake | ||
26 | } | ||
27 | |||
28 | do_install() { | ||
29 | oe_runmake install DESTDIR="${D}" | ||
30 | } | ||
31 | |||
32 | # pam files | ||
33 | FILES_${PN} += "${libdir}/security/*.so" | ||
34 | FILES_${PN}-dbg += "${libdir}/security/.debug/*.so" | ||
diff --git a/meta/recipes-support/libcap/libcap_2.19.bb b/meta/recipes-support/libcap/libcap_2.19.bb new file mode 100644 index 0000000000..eb861535e9 --- /dev/null +++ b/meta/recipes-support/libcap/libcap_2.19.bb | |||
@@ -0,0 +1,3 @@ | |||
1 | require libcap.inc | ||
2 | |||
3 | PR = "r1" | ||