Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/gle: ChangeLog gle-3.1.0-r2.ebuild gle-3.1.0-r1.ebuild
Date: Wed, 05 Jan 2011 10:37:52
Message-Id: 20110105103739.2E38020057@flycatcher.gentoo.org
1 xarthisius 11/01/05 10:37:39
2
3 Modified: ChangeLog
4 Added: gle-3.1.0-r2.ebuild
5 Removed: gle-3.1.0-r1.ebuild
6 Log:
7 Properly fix as-needed issues, fix man pages, migrate to autotools-utils.eclass. Drop old
8
9 (Portage version: 2.2.0_alpha10_p22/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.35 media-libs/gle/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gle/ChangeLog?rev=1.35&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gle/ChangeLog?rev=1.35&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gle/ChangeLog?r1=1.34&r2=1.35
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-libs/gle/ChangeLog,v
21 retrieving revision 1.34
22 retrieving revision 1.35
23 diff -u -r1.34 -r1.35
24 --- ChangeLog 5 Jan 2011 08:48:20 -0000 1.34
25 +++ ChangeLog 5 Jan 2011 10:37:38 -0000 1.35
26 @@ -1,6 +1,14 @@
27 # ChangeLog for media-libs/gle
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gle/ChangeLog,v 1.34 2011/01/05 08:48:20 scarabeus Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gle/ChangeLog,v 1.35 2011/01/05 10:37:38 xarthisius Exp $
31 +
32 +*gle-3.1.0-r2 (05 Jan 2011)
33 +
34 + 05 Jan 2011; Kacper Kowalik <xarthisius@g.o> -gle-3.1.0-r1.ebuild,
35 + +gle-3.1.0-r2.ebuild, -files/gle-3.1.0-autotools.patch,
36 + +files/gle-3.1.0-autotools-r1.patch:
37 + Properly fix as-needed issues, fix man pages, migrate to
38 + autotools-utils.eclass. Drop old
39
40 05 Jan 2011; Tomáš Chvátal <scarabeus@g.o> gle-3.0.1-r2.ebuild:
41 Fix implicit RDEPEND assignment.
42
43
44
45 1.1 media-libs/gle/gle-3.1.0-r2.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gle/gle-3.1.0-r2.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gle/gle-3.1.0-r2.ebuild?rev=1.1&content-type=text/plain
49
50 Index: gle-3.1.0-r2.ebuild
51 ===================================================================
52 # Copyright 1999-2011 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/media-libs/gle/gle-3.1.0-r2.ebuild,v 1.1 2011/01/05 10:37:39 xarthisius Exp $
55
56 EAPI=3
57
58 inherit autotools autotools-utils multilib
59
60 DESCRIPTION="GL extrusion library"
61 HOMEPAGE="http://www.linas.org/gle"
62 SRC_URI="http://www.linas.org/gle/pub/${P}.tar.gz"
63
64 LICENSE="Artistic GPL-2"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
67 IUSE="static-libs"
68
69 RDEPEND="virtual/opengl
70 media-libs/freeglut
71 app-admin/eselect-opengl"
72 DEPEND="${RDEPEND}
73 dev-util/pkgconfig"
74
75 PATCHES=( "${FILESDIR}/${P}-autotools-r1.patch" )
76 DOCS=( AUTHORS README )
77 HTML_DOCS=( doc/html/ )
78
79 src_prepare() {
80 sed -i -e 's:malloc.h:stdlib.h:g' src/* || die #130340
81 autotools-utils_src_prepare
82 eautoreconf
83 }
84
85 src_configure() {
86 myeconfargs=(
87 --with-x
88 --x-libraries=/usr/$(get_libdir)/opengl/xorg-x11
89 )
90 autotools-utils_src_configure
91 }
92
93 src_install() {
94 autotools-utils_src_install
95 (cd man; for i in *.man; do newman ${i} ${i/.man/.3}; done)
96 }