commit:     b2d6d5c661e5c5031a41f085404e8d01fa9e60a3
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 12 23:47:12 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Jun 12 23:49:47 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2d6d5c6

dev-libs/libcgroup: fix cgred service, bug #584962

Thanks Nicolas Porcel <nicolas06600 <AT> yahoo.fr>

Package-Manager: portage-2.2.28

 dev-libs/libcgroup/files/cgred.confd-r2     |  5 ++
 dev-libs/libcgroup/libcgroup-0.41-r4.ebuild | 93 +++++++++++++++++++++++++++++
 2 files changed, 98 insertions(+)

diff --git a/dev-libs/libcgroup/files/cgred.confd-r2 
b/dev-libs/libcgroup/files/cgred.confd-r2
new file mode 100644
index 0000000..cdc7a7c
--- /dev/null
+++ b/dev-libs/libcgroup/files/cgred.confd-r2
@@ -0,0 +1,5 @@
+# /etc/conf.d/cgred.conf: config file for /etc/init.d/cgred
+
+# Options to pass to cgrulesengd;
+# See the cgrulesengd(8) man page for more info.
+CGRED_OPTS="-n"

diff --git a/dev-libs/libcgroup/libcgroup-0.41-r4.ebuild 
b/dev-libs/libcgroup/libcgroup-0.41-r4.ebuild
new file mode 100644
index 0000000..d8a72b3
--- /dev/null
+++ b/dev-libs/libcgroup/libcgroup-0.41-r4.ebuild
@@ -0,0 +1,93 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit autotools eutils flag-o-matic linux-info pam
+
+DESCRIPTION="Tools and libraries to configure and manage kernel control groups"
+HOMEPAGE="http://libcg.sourceforge.net/";
+SRC_URI="mirror://sourceforge/project/libcg/${PN}/v${PV}/${P}.tar.bz2"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="+daemon elibc_musl pam static-libs +tools"
+
+RDEPEND="pam? ( virtual/pam )"
+
+DEPEND="
+       ${RDEPEND}
+       sys-devel/bison
+       sys-devel/flex
+       elibc_musl? ( sys-libs/fts-standalone )
+       "
+REQUIRED_USE="daemon? ( tools )"
+
+DOCS=(README_daemon README README_systemd INSTALL)
+pkg_setup() {
+       local CONFIG_CHECK="~CGROUPS"
+       if use daemon; then
+               CONFIG_CHECK="${CONFIG_CHECK} ~CONNECTOR ~PROC_EVENTS"
+       fi
+       linux-info_pkg_setup
+}
+
+src_prepare() {
+       epatch "${FILESDIR}"/${P}-replace_DECLS.patch
+       epatch "${FILESDIR}"/${P}-replace_INLCUDES.patch
+       epatch "${FILESDIR}"/${P}-reorder-headers.patch
+
+       # Change rules file location
+       sed -e 's:/etc/cgrules.conf:/etc/cgroup/cgrules.conf:' \
+               -i src/libcgroup-internal.h || die "sed failed"
+       sed -e 's:/etc/cgconfig.conf:/etc/cgroup/cgconfig.conf:' \
+               -i src/libcgroup-internal.h || die "sed failed"
+       sed -e 's:\(pam_cgroup_la_LDFLAGS.*\):\1\ -avoid-version:' \
+               -i src/pam/Makefile.am || die "sed failed"
+       sed -e 's#/var/run#/run#g' -i configure.in || die "sed failed"
+
+       eautoreconf
+}
+
+src_configure() {
+       local my_conf
+
+       if use pam; then
+               my_conf=" --enable-pam-module-dir=$(getpam_mod_dir) "
+       fi
+
+       use elibc_musl && append-ldflags "-lfts"
+       econf \
+               $(use_enable static-libs static) \
+               $(use_enable daemon) \
+               $(use_enable pam) \
+               $(use_enable tools) \
+               ${my_conf}
+}
+
+src_test() {
+       # Use mount cgroup to build directory
+       # sandbox restricted to trivial build,
+       # possible kill Diego tanderbox ;)
+       true
+}
+
+src_install() {
+       default
+       prune_libtool_files --all
+
+       insinto /etc/cgroup
+       doins samples/*.conf || die
+
+       if use tools; then
+               newconfd "${FILESDIR}"/cgconfig.confd-r1 cgconfig || die
+               newinitd "${FILESDIR}"/cgconfig.initd-r1 cgconfig || die
+       fi
+
+       if use daemon; then
+               newconfd "${FILESDIR}"/cgred.confd-r2 cgred || die
+               newinitd "${FILESDIR}"/cgred.initd-r1 cgred || die
+       fi
+}

Reply via email to