Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/stfl: stfl-0.22.ebuild ChangeLog
Date: Wed, 11 Jan 2012 14:02:17
Message-Id: 20120111140201.138642004B@flycatcher.gentoo.org
1 radhermit 12/01/11 14:02:01
2
3 Modified: stfl-0.22.ebuild ChangeLog
4 Log:
5 Link ruby lib against shared lib.
6
7 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 dev-libs/stfl/stfl-0.22.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/stfl/stfl-0.22.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/stfl/stfl-0.22.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/stfl/stfl-0.22.ebuild?r1=1.2&r2=1.3
15
16 Index: stfl-0.22.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/stfl/stfl-0.22.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- stfl-0.22.ebuild 11 Jan 2012 12:43:35 -0000 1.2
23 +++ stfl-0.22.ebuild 11 Jan 2012 14:02:00 -0000 1.3
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/stfl/stfl-0.22.ebuild,v 1.2 2012/01/11 12:43:35 radhermit Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/stfl/stfl-0.22.ebuild,v 1.3 2012/01/11 14:02:00 radhermit Exp $
29
30 EAPI="4"
31 SUPPORT_PYTHON_ABIS="1"
32 @@ -41,11 +41,12 @@
33 Makefile || die "sed failed"
34
35 if ! use static-libs ; then
36 - sed -i -e "/install .* libstfl.a/d" Makefile
37 + sed -i -e "/install .* libstfl.a/d" Makefile || die
38 fi
39
40 epatch "${FILESDIR}"/${PN}-0.21-python.patch
41 epatch "${FILESDIR}"/${P}-soname-symlink.patch
42 + epatch "${FILESDIR}"/${P}-ruby-sharedlib.patch
43
44 if use perl ; then
45 echo "FOUND_PERL5=1" >> Makefile.cfg
46 @@ -62,6 +63,8 @@
47 echo "FOUND_PYTHON=0" >> Makefile.cfg
48 }
49
50 +src_configure() { :; }
51 +
52 src_compile() {
53 emake CC="$(tc-getCC)"
54
55
56
57
58 1.35 dev-libs/stfl/ChangeLog
59
60 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/stfl/ChangeLog?rev=1.35&view=markup
61 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/stfl/ChangeLog?rev=1.35&content-type=text/plain
62 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/stfl/ChangeLog?r1=1.34&r2=1.35
63
64 Index: ChangeLog
65 ===================================================================
66 RCS file: /var/cvsroot/gentoo-x86/dev-libs/stfl/ChangeLog,v
67 retrieving revision 1.34
68 retrieving revision 1.35
69 diff -u -r1.34 -r1.35
70 --- ChangeLog 11 Jan 2012 12:43:35 -0000 1.34
71 +++ ChangeLog 11 Jan 2012 14:02:00 -0000 1.35
72 @@ -1,6 +1,10 @@
73 # ChangeLog for dev-libs/stfl
74 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
75 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/stfl/ChangeLog,v 1.34 2012/01/11 12:43:35 radhermit Exp $
76 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/stfl/ChangeLog,v 1.35 2012/01/11 14:02:00 radhermit Exp $
77 +
78 + 11 Jan 2012; Tim Harder <radhermit@g.o> stfl-0.22.ebuild,
79 + +files/stfl-0.22-ruby-sharedlib.patch:
80 + Link ruby lib against shared lib.
81
82 11 Jan 2012; Tim Harder <radhermit@g.o> stfl-0.22.ebuild:
83 Fix building ruby support (bug #395569) and update to EAPI 4.