diff options
author | 2011-06-16 01:33:17 +0000 | |
---|---|---|
committer | 2011-06-16 01:33:17 +0000 | |
commit | ebfedfb4dbf4cddd8e947d1d03facbb245f81468 (patch) | |
tree | 86da5bdb9a42fe57bba07a800b79da6d01e6d5ef /sys-apps/policycoreutils | |
parent | Masked sec-policy/selinux-policykit for removal, bug #371441 (diff) | |
download | gentoo-2-ebfedfb4dbf4cddd8e947d1d03facbb245f81468.tar.gz gentoo-2-ebfedfb4dbf4cddd8e947d1d03facbb245f81468.tar.bz2 gentoo-2-ebfedfb4dbf4cddd8e947d1d03facbb245f81468.zip |
Drop use_nls dependency on gettext, bug #29681
(Portage version: 2.1.9.42/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/policycoreutils')
-rw-r--r-- | sys-apps/policycoreutils/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/policycoreutils/policycoreutils-2.0.82.ebuild | 11 |
2 files changed, 12 insertions, 6 deletions
diff --git a/sys-apps/policycoreutils/ChangeLog b/sys-apps/policycoreutils/ChangeLog index 17b224a299fc..bca9b1500663 100644 --- a/sys-apps/policycoreutils/ChangeLog +++ b/sys-apps/policycoreutils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/policycoreutils # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/policycoreutils/ChangeLog,v 1.82 2011/05/28 05:27:06 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/policycoreutils/ChangeLog,v 1.83 2011/06/16 01:33:17 blueness Exp $ + + 16 Jun 2011; Anthony G. Basile <blueness@gentoo.org> + policycoreutils-2.0.82.ebuild: + Drop use_nls dependency on gettext. Its mandatory. See bug #29681. + Also put gettext in COMMON_DEPS, it is more than a RDEPEND. 28 May 2011; Anthony G. Basile <blueness@gentoo.org> policycoreutils-2.0.82.ebuild: diff --git a/sys-apps/policycoreutils/policycoreutils-2.0.82.ebuild b/sys-apps/policycoreutils/policycoreutils-2.0.82.ebuild index 817b51fa5e79..db29aeb4fd2e 100644 --- a/sys-apps/policycoreutils/policycoreutils-2.0.82.ebuild +++ b/sys-apps/policycoreutils/policycoreutils-2.0.82.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/policycoreutils/policycoreutils-2.0.82.ebuild,v 1.3 2011/05/28 05:27:06 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/policycoreutils/policycoreutils-2.0.82.ebuild,v 1.4 2011/06/16 01:33:17 blueness Exp $ EAPI="2" PYTHON_DEPEND="2" @@ -15,6 +15,8 @@ SEMNG_VER="2.0.45" SELNX_VER="2.0.94" SEPOL_VER="2.0.41" +IUSE="" + DESCRIPTION="SELinux core utilities" HOMEPAGE="http://userspace.selinuxproject.org" SRC_URI="http://userspace.selinuxproject.org/releases/20100525/devel/${P}.tar.gz @@ -23,7 +25,6 @@ SRC_URI="http://userspace.selinuxproject.org/releases/20100525/devel/${P}.tar.gz LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 x86" -IUSE="nls" COMMON_DEPS=">=sys-libs/libselinux-${SELNX_VER}[python] >=sys-libs/glibc-2.4 @@ -32,15 +33,15 @@ COMMON_DEPS=">=sys-libs/libselinux-${SELNX_VER}[python] sys-libs/pam >=sys-libs/libsemanage-${SEMNG_VER}[python] sys-libs/libcap-ng - >=sys-libs/libsepol-${SEPOL_VER}" + >=sys-libs/libsepol-${SEPOL_VER} + sys-devel/gettext" # pax-utils for scanelf used by rlpkg RDEPEND="${COMMON_DEPS} dev-python/sepolgen app-misc/pax-utils" -DEPEND="${COMMON_DEPS} - nls? ( sys-devel/gettext )" +DEPEND="${COMMON_DEPS}" S2=${WORKDIR}/policycoreutils-extra |