Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/libsepol: ChangeLog libsepol-2.1.0.ebuild
Date: Wed, 03 Aug 2011 09:27:44
Message-Id: 20110803092733.127E92004C@flycatcher.gentoo.org
1 blueness 11/08/03 09:27:33
2
3 Modified: ChangeLog
4 Added: libsepol-2.1.0.ebuild
5 Log:
6 Bump to 20110727 SELinux userspace release
7
8 (Portage version: 2.1.10.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.42 sys-libs/libsepol/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/ChangeLog?rev=1.42&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/ChangeLog?rev=1.42&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/ChangeLog?r1=1.41&r2=1.42
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v
20 retrieving revision 1.41
21 retrieving revision 1.42
22 diff -u -r1.41 -r1.42
23 --- ChangeLog 15 Jul 2011 21:03:08 -0000 1.41
24 +++ ChangeLog 3 Aug 2011 09:27:32 -0000 1.42
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-libs/libsepol
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v 1.41 2011/07/15 21:03:08 blueness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v 1.42 2011/08/03 09:27:32 blueness Exp $
30 +
31 +*libsepol-2.1.0 (03 Aug 2011)
32 +
33 + 03 Aug 2011; Anthony G. Basile <blueness@g.o> +libsepol-2.1.0.ebuild:
34 + Bump to 20110727 SELinux userspace release
35
36 *libsepol-2.0.42 (15 Jul 2011)
37
38
39
40
41 1.1 sys-libs/libsepol/libsepol-2.1.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/libsepol-2.1.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/libsepol-2.1.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libsepol-2.1.0.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/libsepol-2.1.0.ebuild,v 1.1 2011/08/03 09:27:32 blueness Exp $
51
52 EAPI="2"
53
54 inherit multilib toolchain-funcs
55
56 DESCRIPTION="SELinux binary policy representation library"
57 HOMEPAGE="http://userspace.selinuxproject.org"
58 SRC_URI="http://userspace.selinuxproject.org/releases/20110727/devel/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE=""
64
65 DEPEND=""
66 RDEPEND=""
67
68 # tests are not meant to be run outside of the
69 # full SELinux userland repo
70 RESTRICT="test"
71
72 src_prepare() {
73 # fix up paths for multilib
74 sed -i -e "/^LIBDIR/s/lib/$(get_libdir)/" src/Makefile \
75 || die "Fix for multilib LIBDIR failed."
76 sed -i -e "/^SHLIBDIR/s/lib/$(get_libdir)/" src/Makefile \
77 || die "Fix for multilib SHLIBDIR failed."
78 }
79
80 src_compile() {
81 emake AR="$(tc-getAR)" CC="$(tc-getCC)" || die
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" install || die
86 }