diff options
author | Sven Vermeulen <swift@gentoo.org> | 2014-11-14 19:15:41 +0000 |
---|---|---|
committer | Sven Vermeulen <swift@gentoo.org> | 2014-11-14 19:15:41 +0000 |
commit | cb772fff6fc18ea78e7fbdf239e4749e559205b8 (patch) | |
tree | da958ab6062e57f03079d240e4d045e75af3509f /sys-libs/libsepol | |
parent | Cleanup old. (diff) | |
download | gentoo-2-cb772fff6fc18ea78e7fbdf239e4749e559205b8.tar.gz gentoo-2-cb772fff6fc18ea78e7fbdf239e4749e559205b8.tar.bz2 gentoo-2-cb772fff6fc18ea78e7fbdf239e4749e559205b8.zip |
Bump to rc6
(Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0x2EDD52403B68AF47)
Diffstat (limited to 'sys-libs/libsepol')
-rw-r--r-- | sys-libs/libsepol/ChangeLog | 7 | ||||
-rw-r--r-- | sys-libs/libsepol/libsepol-2.4_rc6.ebuild | 43 |
2 files changed, 49 insertions, 1 deletions
diff --git a/sys-libs/libsepol/ChangeLog b/sys-libs/libsepol/ChangeLog index 3a02276003b5..c7e305939a70 100644 --- a/sys-libs/libsepol/ChangeLog +++ b/sys-libs/libsepol/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/libsepol # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v 1.70 2014/10/29 17:32:26 swift Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v 1.71 2014/11/14 19:15:41 swift Exp $ + +*libsepol-2.4_rc6 (14 Nov 2014) + + 14 Nov 2014; Sven Vermeulen <swift@gentoo.org> +libsepol-2.4_rc6.ebuild: + Bump to rc6 *libsepol-2.4_rc5 (29 Oct 2014) diff --git a/sys-libs/libsepol/libsepol-2.4_rc6.ebuild b/sys-libs/libsepol/libsepol-2.4_rc6.ebuild new file mode 100644 index 000000000000..86297fbd39d7 --- /dev/null +++ b/sys-libs/libsepol/libsepol-2.4_rc6.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/libsepol-2.4_rc6.ebuild,v 1.1 2014/11/14 19:15:41 swift Exp $ + +EAPI="4" + +inherit multilib toolchain-funcs eutils multilib-minimal + +MY_P="${P//_/-}" + +DESCRIPTION="SELinux binary policy representation library" +HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki" +SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/20140826/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="" + +S="${WORKDIR}/${MY_P}" + +# tests are not meant to be run outside of the +# full SELinux userland repo +RESTRICT="test" + +src_prepare() { + epatch_user + multilib_copy_sources +} + +multilib_src_compile() { + tc-export RANLIB; + LIBDIR="\$(PREFIX)/$(get_libdir)" SHLIBDIR="\$(DESTDIR)/$(get_libdir)" \ + emake AR="$(tc-getAR)" CC="$(tc-getCC)" +} + +multilib_src_install() { + LIBDIR="\$(PREFIX)/$(get_libdir)" SHLIBDIR="\$(DESTDIR)/$(get_libdir)" \ + emake DESTDIR="${D}" install +} |