From 46771a85b0cd8edeab2b2bb2b79754fb797f24b2 Mon Sep 17 00:00:00 2001 From: Kevin Tian Date: Tue, 3 Aug 2010 15:53:38 +0800 Subject: pam: rename to libpam and add core config files So far pam is not really functional as there no pam config files exists, here we borrow from openembedded to setup core /etc/pam.d to make it functional: * change 'pam' to 'libpam' following Debian naming convention, and change (R)DEPENDS in other recipes * borrow openembedded libpam-base-files with changes: - rename to libpam-runtime to follow Debian naming - only keep common-* core files which can be traced back to Debian libpam-runtime-1.0.1 for license track. Other service specific files (such as atd, cron, ...) are removed because either they may contaminate the license or it's right thing to have their own packages providing them - use same libpam recipe instead of creating a new. This way other /etc/ stuff are all contained by libpam-runtime * like openembedded, we package each pam plugin into seperate package now, with some differnce though: - Some ${sbindir} binaries are bound to specific PAM plugin. So better to package them together with corresponding plugin package - populate_sysroot_prepend is invoked before actual populate_sysroot, at that time ${D} binaries haven't been tripped. So it's difficult to specify -dev for those plugin pacakges from _prepend which are simply empty. actually one -dev/-doc per recipe is one good exercise here. Signed-off-by: Kevin Tian --- meta/packages/libcap/libcap.inc | 3 +-- meta/packages/libcap/libcap_2.19.bb | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'meta/packages/libcap') diff --git a/meta/packages/libcap/libcap.inc b/meta/packages/libcap/libcap.inc index 7bdecd78a3..16eaae690c 100644 --- a/meta/packages/libcap/libcap.inc +++ b/meta/packages/libcap/libcap.inc @@ -5,8 +5,7 @@ HOMEPAGE = "http://sites.google.com/site/fullycapable/" LICENSE = "BSD | GPL" LIC_FILES_CHKSUM = "file://License;md5=731de803c1ccbcb05a9b3523279c8d7f" -DEPENDS = "pam attr perl-native" -PR = "r0" +DEPENDS = "libpam attr perl-native" SRC_URI = "${KERNELORG_MIRROR}/pub/linux/libs/security/linux-privs/libcap2/${BPN}-${PV}.tar.bz2" diff --git a/meta/packages/libcap/libcap_2.19.bb b/meta/packages/libcap/libcap_2.19.bb index 474d060562..eb861535e9 100644 --- a/meta/packages/libcap/libcap_2.19.bb +++ b/meta/packages/libcap/libcap_2.19.bb @@ -1,3 +1,3 @@ require libcap.inc -PR = "r0" +PR = "r1" -- cgit 1.2.3-korg