Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/keyutils: ChangeLog keyutils-1.5.3.ebuild
Date: Fri, 02 Sep 2011 17:41:41
Message-Id: 20110902174130.970962004C@flycatcher.gentoo.org
1 vapier 11/09/02 17:41:30
2
3 Modified: ChangeLog
4 Added: keyutils-1.5.3.ebuild
5 Log:
6 Version bump #381467 by teidakankan. Fixes rpath issues #328467 by William Throwe and multilib issues #339173 by Matt McAdoo.
7
8 (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.26 sys-apps/keyutils/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/keyutils/ChangeLog?rev=1.26&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/keyutils/ChangeLog?rev=1.26&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/keyutils/ChangeLog?r1=1.25&r2=1.26
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/keyutils/ChangeLog,v
20 retrieving revision 1.25
21 retrieving revision 1.26
22 diff -u -r1.25 -r1.26
23 --- ChangeLog 8 Jul 2011 19:41:49 -0000 1.25
24 +++ ChangeLog 2 Sep 2011 17:41:30 -0000 1.26
25 @@ -1,6 +1,13 @@
26 # ChangeLog for sys-apps/keyutils
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/keyutils/ChangeLog,v 1.25 2011/07/08 19:41:49 mattst88 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/keyutils/ChangeLog,v 1.26 2011/09/02 17:41:30 vapier Exp $
30 +
31 +*keyutils-1.5.3 (02 Sep 2011)
32 +
33 + 02 Sep 2011; Mike Frysinger <vapier@g.o> +keyutils-1.5.3.ebuild,
34 + +files/keyutils-1.5.3-makefile-fixup.patch:
35 + Version bump #381467 by teidakankan. Fixes rpath issues #328467 by William
36 + Throwe and multilib issues #339173 by Matt McAdoo.
37
38 08 Jul 2011; Matt Turner <mattst88@g.o> keyutils-1.4-r1.ebuild:
39 Added ~mips, bug 201744
40
41
42
43 1.1 sys-apps/keyutils/keyutils-1.5.3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/keyutils/keyutils-1.5.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/keyutils/keyutils-1.5.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: keyutils-1.5.3.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-apps/keyutils/keyutils-1.5.3.ebuild,v 1.1 2011/09/02 17:41:30 vapier Exp $
53
54 EAPI="3"
55
56 inherit multilib eutils toolchain-funcs
57
58 DESCRIPTION="Linux Key Management Utilities"
59 HOMEPAGE="http://people.redhat.com/dhowells/keyutils/"
60 SRC_URI="http://people.redhat.com/dhowells/${PN}/${P}.tar.bz2"
61
62 LICENSE="GPL-2 LGPL-2.1"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux"
65 IUSE=""
66
67 DEPEND="!prefix? ( >=sys-kernel/linux-headers-2.6.11 )"
68
69 src_prepare() {
70 epatch "${FILESDIR}"/${PN}-1.5.3-makefile-fixup.patch
71 sed -i \
72 -e '1iRPATH=' \
73 -e '/^C.*FLAGS/s|:=|+=|' \
74 -e 's:-Werror::' \
75 -e '/^BUILDFOR/s:=.*:=:' \
76 -e "/^LIBDIR/s:=.*:=/usr/$(get_libdir):" \
77 -e '/^USRLIBDIR/s:=.*:=$(LIBDIR):' \
78 Makefile || die
79 }
80
81 src_configure() {
82 tc-export CC
83 }
84
85 src_install() {
86 emake DESTDIR="${ED}" install || die
87 dodoc README
88 gen_usr_ldscript -a keyutils
89 }