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: gle-3.1.0-r1.ebuild gle-3.0.1-r2.ebuild ChangeLog
Date: Wed, 05 Jan 2011 07:14:44
Message-Id: 20110105071434.BC5BD20051@flycatcher.gentoo.org
1 xarthisius 11/01/05 07:14:34
2
3 Modified: gle-3.1.0-r1.ebuild gle-3.0.1-r2.ebuild ChangeLog
4 Log:
5 Add missing dies, make repoman happy
6
7 (Portage version: 2.2.0_alpha11/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.10 media-libs/gle/gle-3.1.0-r1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gle/gle-3.1.0-r1.ebuild?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gle/gle-3.1.0-r1.ebuild?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gle/gle-3.1.0-r1.ebuild?r1=1.9&r2=1.10
15
16 Index: gle-3.1.0-r1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/gle/gle-3.1.0-r1.ebuild,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- gle-3.1.0-r1.ebuild 2 Dec 2010 15:20:39 -0000 1.9
23 +++ gle-3.1.0-r1.ebuild 5 Jan 2011 07:14:34 -0000 1.10
24 @@ -1,6 +1,6 @@
25 -# Copyright 1999-2010 Gentoo Foundation
26 +# Copyright 1999-2011 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gle/gle-3.1.0-r1.ebuild,v 1.9 2010/12/02 15:20:39 flameeyes Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gle/gle-3.1.0-r1.ebuild,v 1.10 2011/01/05 07:14:34 xarthisius Exp $
30
31 inherit autotools multilib
32
33 @@ -17,6 +17,7 @@
34 virtual/glu
35 media-libs/freeglut
36 app-admin/eselect-opengl"
37 +RDEPEND="${DEPEND}"
38
39 src_unpack() {
40 unpack ${A}
41 @@ -24,10 +25,10 @@
42
43 # Replace inclusion of malloc.h with stdlib.h as needed by Mac OS X and
44 # FreeBSD. See bug #130340
45 - sed -i -e 's:malloc.h:stdlib.h:g' src/*
46 + sed -i -e 's:malloc.h:stdlib.h:g' src/* || die
47
48 # Don't build binary examples as they never get installed. See bug 141859
49 - sed -i -e 's:examples::' Makefile.am
50 + sed -i -e 's:examples::' Makefile.am || die
51
52 epatch "${FILESDIR}"/${P}-autotools.patch
53
54 @@ -35,18 +36,20 @@
55 }
56
57 src_compile() {
58 - econf --with-x --x-libraries=/usr/$(get_libdir)/opengl/xorg-x11 || die "econf failed"
59 + econf --with-x --x-libraries=/usr/$(get_libdir)/opengl/xorg-x11
60
61 if use doc; then
62 - sed -i -e 's:\$(datadir)/doc/gle:\$(datadir)/doc/${PF}:' doc/Makefile
63 - sed -i -e 's:\$(datadir)/doc/gle/html:\$(datadir)/doc/${PF}/html:' doc/html/Makefile
64 + sed -e 's:\$(datadir)/doc/gle:\$(datadir)/doc/${PF}:' \
65 + -i doc/Makefile || die
66 + sed -e 's:\$(datadir)/doc/gle/html:\$(datadir)/doc/${PF}/html:' \
67 + -i doc/html/Makefile || die
68 fi
69
70 - emake || die "emake failed"
71 + emake || die
72 }
73
74 src_install() {
75 - emake -j1 DESTDIR="${D}" install || die "emake install failed"
76 - dodoc AUTHORS ChangeLog NEWS README
77 + emake -j1 DESTDIR="${D}" install || die
78 + dodoc AUTHORS ChangeLog NEWS README || die
79 rm -rf "${D}"/usr/share/doc/gle
80 }
81
82
83
84 1.33 media-libs/gle/gle-3.0.1-r2.ebuild
85
86 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gle/gle-3.0.1-r2.ebuild?rev=1.33&view=markup
87 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gle/gle-3.0.1-r2.ebuild?rev=1.33&content-type=text/plain
88 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gle/gle-3.0.1-r2.ebuild?r1=1.32&r2=1.33
89
90 Index: gle-3.0.1-r2.ebuild
91 ===================================================================
92 RCS file: /var/cvsroot/gentoo-x86/media-libs/gle/gle-3.0.1-r2.ebuild,v
93 retrieving revision 1.32
94 retrieving revision 1.33
95 diff -u -r1.32 -r1.33
96 --- gle-3.0.1-r2.ebuild 16 Sep 2010 17:13:03 -0000 1.32
97 +++ gle-3.0.1-r2.ebuild 5 Jan 2011 07:14:34 -0000 1.33
98 @@ -1,6 +1,6 @@
99 -# Copyright 1999-2010 Gentoo Foundation
100 +# Copyright 1999-2011 Gentoo Foundation
101 # Distributed under the terms of the GNU General Public License v2
102 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gle/gle-3.0.1-r2.ebuild,v 1.32 2010/09/16 17:13:03 scarabeus Exp $
103 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gle/gle-3.0.1-r2.ebuild,v 1.33 2011/01/05 07:14:34 xarthisius Exp $
104
105 inherit eutils
106
107 @@ -16,6 +16,7 @@
108 DEPEND="virtual/opengl
109 virtual/glu
110 media-libs/freeglut"
111 +RDEPEND="${DEPEND}"
112
113 src_unpack() {
114 unpack ${A}
115 @@ -25,7 +26,7 @@
116
117 # Replace inclusion of malloc.h with stdlib.h as needed by Mac OS X and
118 # FreeBSD.
119 - sed -i -e 's:malloc.h:stdlib.h:g' ${S}/src/*
120 + sed -i -e 's:malloc.h:stdlib.h:g' "${S}"/src/*
121 }
122
123 src_compile() {
124
125
126
127 1.32 media-libs/gle/ChangeLog
128
129 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gle/ChangeLog?rev=1.32&view=markup
130 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gle/ChangeLog?rev=1.32&content-type=text/plain
131 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gle/ChangeLog?r1=1.31&r2=1.32
132
133 Index: ChangeLog
134 ===================================================================
135 RCS file: /var/cvsroot/gentoo-x86/media-libs/gle/ChangeLog,v
136 retrieving revision 1.31
137 retrieving revision 1.32
138 diff -u -r1.31 -r1.32
139 --- ChangeLog 2 Dec 2010 15:20:39 -0000 1.31
140 +++ ChangeLog 5 Jan 2011 07:14:34 -0000 1.32
141 @@ -1,6 +1,10 @@
142 # ChangeLog for media-libs/gle
143 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
144 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gle/ChangeLog,v 1.31 2010/12/02 15:20:39 flameeyes Exp $
145 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
146 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gle/ChangeLog,v 1.32 2011/01/05 07:14:34 xarthisius Exp $
147 +
148 + 05 Jan 2011; Kacper Kowalik <xarthisius@g.o> gle-3.0.1-r2.ebuild,
149 + gle-3.1.0-r1.ebuild:
150 + Add missing dies, make repoman happy
151
152 02 Dec 2010; Diego E. Pettenò <flameeyes@g.o> gle-3.1.0-r1.ebuild,
153 +files/gle-3.1.0-autotools.patch: