Gentoo Archives: gentoo-commits

From: "Ryan Hill (dirtyepic)" <dirtyepic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/wxsvg: ChangeLog wxsvg-1.0.2-r1.ebuild
Date: Sat, 20 Feb 2010 05:31:01
Message-Id: E1Nihvf-0007HM-O4@stork.gentoo.org
1 dirtyepic 10/02/20 05:30:59
2
3 Modified: ChangeLog
4 Added: wxsvg-1.0.2-r1.ebuild
5 Log:
6 Add support for building against system expat. (bug #249625 by Diego)
7 (Portage version: 2.2_rc63/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.14 media-libs/wxsvg/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/wxsvg/ChangeLog?rev=1.14&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/wxsvg/ChangeLog?rev=1.14&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/wxsvg/ChangeLog?r1=1.13&r2=1.14
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/wxsvg/ChangeLog,v
19 retrieving revision 1.13
20 retrieving revision 1.14
21 diff -u -r1.13 -r1.14
22 --- ChangeLog 7 Feb 2010 09:51:24 -0000 1.13
23 +++ ChangeLog 20 Feb 2010 05:30:58 -0000 1.14
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/wxsvg
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/wxsvg/ChangeLog,v 1.13 2010/02/07 09:51:24 dirtyepic Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/wxsvg/ChangeLog,v 1.14 2010/02/20 05:30:58 dirtyepic Exp $
29 +
30 +*wxsvg-1.0.2-r1 (20 Feb 2010)
31 +
32 + 20 Feb 2010; Ryan Hill <dirtyepic@g.o> +wxsvg-1.0.2-r1.ebuild,
33 + +files/wxsvg-1.0.2-external-expat.patch:
34 + Add support for building against system expat. (bug #249625 by Diego)
35
36 *wxsvg-1.0.2 (07 Feb 2010)
37
38
39
40
41 1.1 media-libs/wxsvg/wxsvg-1.0.2-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/wxsvg/wxsvg-1.0.2-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/wxsvg/wxsvg-1.0.2-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: wxsvg-1.0.2-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/wxsvg/wxsvg-1.0.2-r1.ebuild,v 1.1 2010/02/20 05:30:59 dirtyepic Exp $
51
52 EAPI=2
53 WX_GTK_VER="2.8"
54
55 inherit autotools eutils wxwidgets
56
57 MY_P=${P}_1
58
59 DESCRIPTION="C++ library to create, manipulate and render SVG files."
60 HOMEPAGE="http://wxsvg.sourceforge.net/"
61 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
62
63 LICENSE="wxWinLL-3"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~x86"
66 IUSE=""
67
68 S=${WORKDIR}/${MY_P}
69
70 RDEPEND="x11-libs/wxGTK:2.8[X]
71 >=dev-libs/expat-2.0.1-r3
72 >=dev-libs/glib-2.12
73 >=dev-libs/libxml2-2.6.26
74 >=media-libs/fontconfig-2.4
75 >=media-libs/freetype-2.2.0
76 >=media-libs/libart_lgpl-2.3.17
77 >=media-video/ffmpeg-0.4.9_p20080326
78 >=x11-libs/pango-1.14.9"
79 DEPEND="${RDEPEND}
80 dev-util/pkgconfig"
81
82 src_prepare() {
83 epatch "${FILESDIR}"/${P}-external-expat.patch
84 eautoreconf
85 }
86
87 src_configure() {
88 econf --with-sys-expat || die "econf failed"
89 }
90
91 src_install() {
92 emake DESTDIR="${D}" install || die "emake install failed"
93 dodoc AUTHORS ChangeLog TODO
94 }