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.0.41.ebuild
Date: Sat, 05 Feb 2011 11:18:14
Message-Id: 20110205111803.DCA4420054@flycatcher.gentoo.org
1 blueness 11/02/05 11:18:03
2
3 Modified: ChangeLog
4 Added: libsepol-2.0.41.ebuild
5 Log:
6 New upstream release.
7
8 (Portage version: 2.1.9.25/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.36 sys-libs/libsepol/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/ChangeLog?rev=1.36&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/ChangeLog?rev=1.36&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/ChangeLog?r1=1.35&r2=1.36
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v
20 retrieving revision 1.35
21 retrieving revision 1.36
22 diff -u -r1.35 -r1.36
23 --- ChangeLog 23 Sep 2009 21:16:53 -0000 1.35
24 +++ ChangeLog 5 Feb 2011 11:18:03 -0000 1.36
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sys-libs/libsepol
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v 1.35 2009/09/23 21:16:53 patrick Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v 1.36 2011/02/05 11:18:03 blueness Exp $
31 +
32 +*libsepol-2.0.41 (05 Feb 2011)
33 +
34 + 05 Feb 2011; Anthony G. Basile <blueness@g.o>
35 + +libsepol-2.0.41.ebuild:
36 + New upstream release.
37
38 23 Sep 2009; Patrick Lauer <patrick@g.o> libsepol-2.0.32.ebuild,
39 libsepol-2.0.37.ebuild:
40
41
42
43 1.1 sys-libs/libsepol/libsepol-2.0.41.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/libsepol-2.0.41.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/libsepol-2.0.41.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libsepol-2.0.41.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/libsepol-2.0.41.ebuild,v 1.1 2011/02/05 11:18:03 blueness Exp $
53
54 IUSE=""
55
56 inherit multilib eutils
57
58 DESCRIPTION="SELinux binary policy representation library"
59 HOMEPAGE="http://userspace.selinuxproject.org"
60 SRC_URI="http://userspace.selinuxproject.org/releases/20100525/devel/${P}.tar.gz"
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
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_unpack() {
73 unpack ${A}
74 cd "${S}"
75
76 # fix up paths for multilib
77 sed -i -e "/^LIBDIR/s/lib/$(get_libdir)/" src/Makefile \
78 || die "Fix for multilib LIBDIR failed."
79 sed -i -e "/^SHLIBDIR/s/lib/$(get_libdir)/" src/Makefile \
80 || die "Fix for multilib SHLIBDIR failed."
81 }
82
83 src_compile() {
84 emake || die
85 }
86
87 src_install() {
88 make DESTDIR="${D}" install
89 }