Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/ustr: ChangeLog ustr-1.0.4-r1.ebuild
Date: Sat, 05 Feb 2011 22:25:05
Message-Id: 20110205222454.AA7C120054@flycatcher.gentoo.org
1 arfrever 11/02/05 22:24:54
2
3 Modified: ChangeLog ustr-1.0.4-r1.ebuild
4 Log:
5 Fix installation with FEATURES="multilib-strict".
6
7 (Portage version: 2.2.0_alpha20/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 dev-libs/ustr/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ustr/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ustr/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ustr/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/ustr/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 2 Aug 2009 04:42:37 -0000 1.3
23 +++ ChangeLog 5 Feb 2011 22:24:54 -0000 1.4
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-libs/ustr
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ustr/ChangeLog,v 1.3 2009/08/02 04:42:37 pebenito Exp $
28 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ustr/ChangeLog,v 1.4 2011/02/05 22:24:54 arfrever Exp $
30 +
31 + 05 Feb 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
32 + ustr-1.0.4-r1.ebuild:
33 + Fix installation with FEATURES="multilib-strict".
34
35 *ustr-1.0.4-r1 (02 Aug 2009)
36
37
38
39
40 1.2 dev-libs/ustr/ustr-1.0.4-r1.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ustr/ustr-1.0.4-r1.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ustr/ustr-1.0.4-r1.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ustr/ustr-1.0.4-r1.ebuild?r1=1.1&r2=1.2
45
46 Index: ustr-1.0.4-r1.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/dev-libs/ustr/ustr-1.0.4-r1.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- ustr-1.0.4-r1.ebuild 2 Aug 2009 04:42:37 -0000 1.1
53 +++ ustr-1.0.4-r1.ebuild 5 Feb 2011 22:24:54 -0000 1.2
54 @@ -1,8 +1,10 @@
55 -# Copyright 1999-2009 Gentoo Foundation
56 +# Copyright 1999-2011 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ustr/ustr-1.0.4-r1.ebuild,v 1.1 2009/08/02 04:42:37 pebenito Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ustr/ustr-1.0.4-r1.ebuild,v 1.2 2011/02/05 22:24:54 arfrever Exp $
60
61 -inherit eutils
62 +EAPI="2"
63 +
64 +inherit multilib
65
66 DESCRIPTION="Low-overhead managed string library for C"
67 HOMEPAGE="http://www.and.org/ustr"
68 @@ -13,14 +15,18 @@
69 KEYWORDS="~amd64 ~x86"
70 IUSE=""
71
72 +DEPEND=""
73 +RDEPEND=""
74 +
75 src_compile() {
76 - make CC="$(tc-getCC)" CFLAGS="${CFLAGS}" HIDE= all-shared || die
77 + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" HIDE= all-shared || die
78 }
79
80 src_install() {
81 emake install DESTDIR="${D}" HIDE= \
82 + libdir="/usr/$(get_libdir)" \
83 mandir="/usr/share/man" \
84 SHRDIR="/usr/share/doc/${PF}" \
85 DOCSHRDIR="/usr/share/doc/${PF}" || die
86 - dodoc ChangeLog README README-DEVELOPERS AUTHORS NEWS TODO
87 + dodoc ChangeLog README README-DEVELOPERS AUTHORS NEWS TODO || die
88 }