* [gentoo-commits] gentoo-x86 commit in sys-apps/policycoreutils: ChangeLog policycoreutils-2.0.69-r2.ebuild
@ 2011-02-05 11:23 Anthony G. Basile (blueness)
0 siblings, 0 replies; only message in thread
From: Anthony G. Basile (blueness) @ 2011-02-05 11:23 UTC (permalink / raw
To: gentoo-commits
blueness 11/02/05 11:23:24
Modified: ChangeLog
Added: policycoreutils-2.0.69-r2.ebuild
Log:
Fixed bug #300613
(Portage version: 2.1.9.25/cvs/Linux x86_64)
Revision Changes Path
1.78 sys-apps/policycoreutils/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/policycoreutils/ChangeLog?rev=1.78&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/policycoreutils/ChangeLog?rev=1.78&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/policycoreutils/ChangeLog?r1=1.77&r2=1.78
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/policycoreutils/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog 4 Apr 2010 21:56:32 -0000 1.77
+++ ChangeLog 5 Feb 2011 11:23:24 -0000 1.78
@@ -1,6 +1,13 @@
# ChangeLog for sys-apps/policycoreutils
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/policycoreutils/ChangeLog,v 1.77 2010/04/04 21:56:32 arfrever Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/policycoreutils/ChangeLog,v 1.78 2011/02/05 11:23:24 blueness Exp $
+
+*policycoreutils-2.0.69-r2 (05 Feb 2011)
+
+ 05 Feb 2011; Anthony G. Basile <blueness@gentoo.org>
+ +policycoreutils-2.0.69-r2.ebuild,
+ +files/policycoreutils-2.0.69-setfiles.diff:
+ Fixed bug #300613
04 Apr 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
policycoreutils-2.0.55.ebuild, policycoreutils-2.0.69.ebuild,
1.1 sys-apps/policycoreutils/policycoreutils-2.0.69-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/policycoreutils/policycoreutils-2.0.69-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/policycoreutils/policycoreutils-2.0.69-r2.ebuild?rev=1.1&content-type=text/plain
Index: policycoreutils-2.0.69-r2.ebuild
===================================================================
# 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.69-r2.ebuild,v 1.1 2011/02/05 11:23:24 blueness Exp $
IUSE="nls"
inherit eutils python
EXTRAS_VER="1.20"
SEMNG_VER="2.0.33"
SELNX_VER="2.0"
BUGFIX_PATCH="${FILESDIR}/policycoreutils-2.0.69-setfiles.diff"
DESCRIPTION="SELinux core utilities"
HOMEPAGE="http://userspace.selinuxproject.org"
SRC_URI="http://userspace.selinuxproject.org/releases/current/devel/${P}.tar.gz
mirror://gentoo/policycoreutils-extra-${EXTRAS_VER}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
COMMON_DEPS=">=sys-libs/libselinux-${SELNX_VER}
>=sys-libs/glibc-2.4
>=sys-process/audit-1.5.1
>=sys-libs/libcap-1.10-r10
sys-libs/pam
>=sys-libs/libsemanage-${SEMNG_VER}"
# pax-utils for scanelf used by rlpkg
RDEPEND="${COMMON_DEPS}
dev-python/sepolgen
app-misc/pax-utils"
DEPEND="${COMMON_DEPS}
nls? ( sys-devel/gettext )"
S2=${WORKDIR}/policycoreutils-extra
src_unpack() {
unpack ${A}
cd "${S}"
[ ! -z "${BUGFIX_PATCH}" ] && epatch "${BUGFIX_PATCH}"
# rlpkg is more useful than fixfiles
sed -i -e '/^all/s/fixfiles//' "${S}/scripts/Makefile" \
|| die "fixfiles sed 1 failed"
sed -i -e '/fixfiles/d' "${S}/scripts/Makefile" \
|| die "fixfiles sed 2 failed"
local SUBDIRS="`cd ${S} && find -type d | cut -d/ -f2`"
if ! useq nls; then
for i in ${SUBDIRS}; do
# disable locale stuff
sed -i -e s/-DUSE_NLS// "${S}/${i}/Makefile" \
|| die "${i} NLS sed failed"
done
fi
# Gentoo Fixes
for i in ${SUBDIRS}; do
# add in CFLAGS
sed -i -e "s:-Wall:-Wall ${CFLAGS}:g" "${S}/${i}/Makefile" \
|| die "${i} Makefile CFLAGS fix failed."
done
}
src_compile() {
einfo "Compiling policycoreutils"
emake -C "${S}" PYLIBVER="python$(python_get_version)" AUDIT_LOG_PRIV=y || die
einfo "Compiling policycoreutils-extra"
emake -C "${S2}" || die
}
src_install() {
python_need_rebuild
einfo "Installing policycoreutils"
make DESTDIR="${D}" -C "${S}" PYLIBVER="python$(python_get_version)" AUDIT_LOG_PRIV=y install || die
einfo "Installing policycoreutils-extra"
make DESTDIR="${D}" -C "${S2}" install || die
# remove redhat-style init script
rm -fR "${D}/etc/rc.d"
# compatibility symlinks
dosym /sbin/setfiles /usr/sbin/setfiles
dosym /lib/rc/runscript_selinux.so /lib/rcscripts/runscript_selinux.so
if has_version '<sys-libs/pam-0.99'; then
# install compat pam.d entries
# for older pam
make DESTDIR="${D}" -C "${S2}/pam.d" install || die
fi
}
pkg_postinst() {
python_mod_optimize $(python_get_sitedir)
}
pkg_postrm() {
python_mod_cleanup $(python_get_sitedir)
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-02-05 11:23 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-05 11:23 [gentoo-commits] gentoo-x86 commit in sys-apps/policycoreutils: ChangeLog policycoreutils-2.0.69-r2.ebuild Anthony G. Basile (blueness)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox