Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libstroke: ChangeLog libstroke-0.5.1.ebuild
Date: Wed, 01 Dec 2010 22:09:29
Message-Id: 20101201220917.7C86A20054@flycatcher.gentoo.org
1 flameeyes 10/12/01 22:09:17
2
3 Modified: ChangeLog libstroke-0.5.1.ebuild
4 Log:
5 Patch the build system so that it can build with modern automake, allowing for this to be built with libtool-2.4. Also fix quoting of $FILESDIR and properly set RDEPEND/DEPEND.
6
7 (Portage version: 2.2.0_alpha6/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.25 dev-libs/libstroke/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libstroke/ChangeLog?rev=1.25&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libstroke/ChangeLog?rev=1.25&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libstroke/ChangeLog?r1=1.24&r2=1.25
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libstroke/ChangeLog,v
19 retrieving revision 1.24
20 retrieving revision 1.25
21 diff -u -r1.24 -r1.25
22 --- ChangeLog 19 Sep 2007 09:24:33 -0000 1.24
23 +++ ChangeLog 1 Dec 2010 22:09:17 -0000 1.25
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-libs/libstroke
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libstroke/ChangeLog,v 1.24 2007/09/19 09:24:33 calchan Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libstroke/ChangeLog,v 1.25 2010/12/01 22:09:17 flameeyes Exp $
30 +
31 + 01 Dec 2010; Diego E. Pettenò <flameeyes@g.o> libstroke-0.5.1.ebuild,
32 + +files/libstroke-0.5.1-autotools.patch:
33 + Patch the build system so that it can build with modern automake, allowing
34 + for this to be built with libtool-2.4. Also fix quoting of $FILESDIR and
35 + properly set RDEPEND/DEPEND.
36
37 19 Sep 2007; Denis Dupeyron <calchan@g.o> metadata.xml,
38 libstroke-0.5.1.ebuild:
39
40
41
42 1.23 dev-libs/libstroke/libstroke-0.5.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libstroke/libstroke-0.5.1.ebuild?rev=1.23&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libstroke/libstroke-0.5.1.ebuild?rev=1.23&content-type=text/plain
46 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libstroke/libstroke-0.5.1.ebuild?r1=1.22&r2=1.23
47
48 Index: libstroke-0.5.1.ebuild
49 ===================================================================
50 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libstroke/libstroke-0.5.1.ebuild,v
51 retrieving revision 1.22
52 retrieving revision 1.23
53 diff -u -r1.22 -r1.23
54 --- libstroke-0.5.1.ebuild 19 Sep 2007 09:24:33 -0000 1.22
55 +++ libstroke-0.5.1.ebuild 1 Dec 2010 22:09:17 -0000 1.23
56 @@ -1,8 +1,7 @@
57 -# Copyright 1999-2007 Gentoo Foundation
58 +# Copyright 1999-2010 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libstroke/libstroke-0.5.1.ebuild,v 1.22 2007/09/19 09:24:33 calchan Exp $
61 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libstroke/libstroke-0.5.1.ebuild,v 1.23 2010/12/01 22:09:17 flameeyes Exp $
62
63 -WANT_AUTOMAKE=1.4
64 inherit eutils autotools
65
66 DESCRIPTION="A Stroke and Gesture recognition Library"
67 @@ -14,14 +13,16 @@
68 KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
69 IUSE=""
70
71 +RDEPEND="x11-libs/libX11"
72 DEPEND="x11-proto/xproto
73 - x11-libs/libX11"
74 + ${RDEPEND}"
75
76 src_unpack() {
77 unpack "${A}"
78 cd "${S}"
79 - epatch ${FILESDIR}/${P}-m4_syntax.patch
80 - epatch ${FILESDIR}/${P}-no_gtk1.patch
81 + epatch "${FILESDIR}"/${P}-m4_syntax.patch
82 + epatch "${FILESDIR}"/${P}-no_gtk1.patch
83 + epatch "${FILESDIR}"/${P}-autotools.patch
84 eautoreconf || die 'eautoreconf failed'
85 }