diff options
author | Xin Ouyang <Xin.Ouyang@windriver.com> | 2012-02-28 16:07:37 +0800 |
---|---|---|
committer | Xin Ouyang <Xin.Ouyang@windriver.com> | 2012-02-28 16:07:37 +0800 |
commit | 64c9a63c630539978d788b19196623db6c772eb6 (patch) | |
tree | c7f83700d06745170c78ec3a55992683525c618d | |
parent | 3eefcf57f76ccc640f3801628b38b2e304d9114c (diff) | |
download | meta-selinux-64c9a63c630539978d788b19196623db6c772eb6.tar.gz |
libcap-ng: Add new version 0.6.6
-rw-r--r-- | recipes-security/libcap-ng/libcap-ng_0.6.6.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/recipes-security/libcap-ng/libcap-ng_0.6.6.bb b/recipes-security/libcap-ng/libcap-ng_0.6.6.bb new file mode 100644 index 0000000..6954d05 --- /dev/null +++ b/recipes-security/libcap-ng/libcap-ng_0.6.6.bb | |||
@@ -0,0 +1,31 @@ | |||
1 | SUMMARY = "An alternate posix capabilities library" | ||
2 | DESCRIPTION = "The libcap-ng library is intended to make programming \ | ||
3 | with POSIX capabilities much easier than the traditional libcap library. \ | ||
4 | It includes utilities that can analyze all currently running \ | ||
5 | applications to locate applications that may have too many privileges." | ||
6 | HOMEPAGE = "http://freecode.com/projects/libcap-ng" | ||
7 | SECTION = "base" | ||
8 | PR = "r1" | ||
9 | LICENSE = "GPLv2+ & LGPLv2.1+" | ||
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ | ||
11 | file://COPYING.LIB;md5=e3eda01d9815f8d24aae2dbd89b68b06" | ||
12 | |||
13 | SRC_URI = "http://people.redhat.com/sgrubb/libcap-ng/libcap-ng-${PV}.tar.gz \ | ||
14 | file://python.patch" | ||
15 | |||
16 | inherit lib_package | ||
17 | inherit autotools | ||
18 | |||
19 | SRC_URI[md5sum] = "eb71f967cecb44b4342baac98ef8cb0f" | ||
20 | SRC_URI[sha256sum] = "89589a29a6b19068edd650dd4f626c10e84bfe63eacae7b1fd1f98f3ac8ea00d" | ||
21 | |||
22 | DEPENDS += "python" | ||
23 | |||
24 | EXTRA_OEMAKE += "PYLIBVER='python${PYTHON_BASEVERSION}' PYINC='${STAGING_INCDIR}/${PYLIBVER}'" | ||
25 | |||
26 | PACKAGES += "${PN}-python" | ||
27 | |||
28 | FILES_${PN}-dbg += "${libdir}/python${PYTHON_BASEVERSION}/*/.debug" | ||
29 | FILES_${PN}-python = "${libdir}/python${PYTHON_BASEVERSION}" | ||
30 | |||
31 | BBCLASSEXTEND = "native" | ||