Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libsexy: ChangeLog libsexy-0.1.11-r2.ebuild
Date: Thu, 25 Feb 2010 20:50:58
Message-Id: E1Nkkff-0004Hs-69@stork.gentoo.org
1 grobian 10/02/25 20:50:55
2
3 Modified: ChangeLog
4 Added: libsexy-0.1.11-r2.ebuild
5 Log:
6 Revbump for EAPI-3 bump, necessary for fixing bug #306357, fix out of Prefix installation
7 (Portage version: 2.2.00.15444-prefix/cvs/Darwin powerpc)
8
9 Revision Changes Path
10 1.42 x11-libs/libsexy/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libsexy/ChangeLog?rev=1.42&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libsexy/ChangeLog?rev=1.42&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libsexy/ChangeLog?r1=1.41&r2=1.42
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libsexy/ChangeLog,v
19 retrieving revision 1.41
20 retrieving revision 1.42
21 diff -u -r1.41 -r1.42
22 --- ChangeLog 17 Feb 2010 12:55:40 -0000 1.41
23 +++ ChangeLog 25 Feb 2010 20:50:54 -0000 1.42
24 @@ -1,6 +1,13 @@
25 # ChangeLog for x11-libs/libsexy
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libsexy/ChangeLog,v 1.41 2010/02/17 12:55:40 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libsexy/ChangeLog,v 1.42 2010/02/25 20:50:54 grobian Exp $
29 +
30 +*libsexy-0.1.11-r2 (25 Feb 2010)
31 +
32 + 25 Feb 2010; Fabian Groffen <grobian@g.o>
33 + +libsexy-0.1.11-r2.ebuild:
34 + Revbump for EAPI-3 bump, necessary for fixing bug #306357, fix out of
35 + Prefix installation
36
37 17 Feb 2010; Samuli Suominen <ssuominen@g.o>
38 libsexy-0.1.11-r1.ebuild:
39
40
41
42 1.1 x11-libs/libsexy/libsexy-0.1.11-r2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libsexy/libsexy-0.1.11-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libsexy/libsexy-0.1.11-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libsexy-0.1.11-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libsexy/libsexy-0.1.11-r2.ebuild,v 1.1 2010/02/25 20:50:54 grobian Exp $
52
53 EAPI=3
54 inherit autotools eutils
55
56 DESCRIPTION="Sexy GTK+ Widgets"
57 HOMEPAGE="http://www.chipx86.com/wiki/Libsexy"
58 SRC_URI="http://releases.chipx86.com/${PN}/${PN}/${P}.tar.bz2"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
63 IUSE="doc"
64
65 RDEPEND=">=dev-libs/glib-2.6:2
66 >=x11-libs/gtk+-2.6:2
67 dev-libs/libxml2
68 >=x11-libs/pango-1.4.0
69 >=app-text/iso-codes-0.49"
70 DEPEND="${RDEPEND}
71 >=dev-lang/perl-5
72 >=dev-util/pkgconfig-0.19
73 dev-util/gtk-doc-am
74 doc? ( >=dev-util/gtk-doc-1.4 )"
75
76 src_prepare() {
77 epatch "${FILESDIR}"/${P}-fix-null-list.patch
78
79 sed -i \
80 -e 's:noinst_PROGRAMS:check_PROGRAMS:' \
81 tests/Makefile.am || die
82
83 eautoreconf
84 }
85
86 src_configure() {
87 econf \
88 --disable-dependency-tracking \
89 $(use_enable doc gtk-doc) \
90 --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
91 }
92
93 src_install() {
94 emake DESTDIR="${D}" install || die
95 dodoc AUTHORS ChangeLog NEWS
96 }