diff options
author | Xin Ouyang <Xin.Ouyang@windriver.com> | 2012-02-28 15:51:46 +0800 |
---|---|---|
committer | Xin Ouyang <Xin.Ouyang@windriver.com> | 2012-02-28 15:51:46 +0800 |
commit | 1b92df42bfc98d1109621a95bb70570a6bc74aef (patch) | |
tree | 736512bbdc788ed29d4c64ba42a6e9b430bf8628 | |
parent | 32fd61ab6dd5054f90eeac6130e9cf745afaa79d (diff) | |
download | meta-selinux-1b92df42bfc98d1109621a95bb70570a6bc74aef.tar.gz |
libcgroup: Add new version 0.38
-rw-r--r-- | recipes-core/libcgroup/libcgroup_0.38.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/recipes-core/libcgroup/libcgroup_0.38.bb b/recipes-core/libcgroup/libcgroup_0.38.bb new file mode 100644 index 0000000..7a31cf5 --- /dev/null +++ b/recipes-core/libcgroup/libcgroup_0.38.bb | |||
@@ -0,0 +1,33 @@ | |||
1 | SUMMARY = "Library to control and monitor control groups" | ||
2 | DESCRIPTION = "\ | ||
3 | Control Groups provide a mechanism for aggregating/partitioning sets of \ | ||
4 | tasks, and all their future children, into hierarchical groups with \ | ||
5 | specialized behaviour. \n\ | ||
6 | This package contains tools and a library to allow users and applications \ | ||
7 | to manipulate, control, administrate and monitor control groups and the \ | ||
8 | associated controllers. \ | ||
9 | " | ||
10 | SECTION = "libs" | ||
11 | LICENSE = "LGPLv2.1" | ||
12 | LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1" | ||
13 | |||
14 | inherit autotools pkgconfig | ||
15 | |||
16 | DEPENDS = "${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}" | ||
17 | |||
18 | SRC_URI = "${SOURCEFORGE_MIRROR}/project/libcg/libcgroup/v.038/libcgroup-${PV}.tar.bz2" | ||
19 | SRC_URI[md5sum] = "f0f7d4060bf36ccc19d75dbf4f1695db" | ||
20 | SRC_URI[sha256sum] = "5d36d1a48b95f62fe9fcdf74a5a4089512e5e43e6011aa1504fd6f2a0909867f" | ||
21 | |||
22 | EXTRA_OECONF = "${@base_contains('DISTRO_FEATURES', 'pam', '--enable-pam-module-dir=${base_libdir}/security --enable-pam=yes', '--enable-pam=no', d)}" | ||
23 | |||
24 | # http://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg21444.html | ||
25 | PARALLEL_MAKE = "" | ||
26 | |||
27 | PACKAGES =+ "cgroups-pam-plugin" | ||
28 | FILES_cgroups-pam-plugin = "${base_libdir}/security/pam_cgroup.so*" | ||
29 | |||
30 | # We really need the symlink so :( | ||
31 | ERROR_QA = "debug-deps dev-deps debug-files arch la2 pkgconfig la perms" | ||
32 | |||
33 | BBCLASSEXTEND = "native" | ||