Gentoo Archives: gentoo-commits

From: "Markus Ullmann (jokey)" <jokey@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/bugle: ChangeLog bugle-0.0.20080803.ebuild
Date: Mon, 25 Aug 2008 21:19:26
Message-Id: E1KXjT9-00063h-Iy@stork.gentoo.org
1 jokey 08/08/25 21:19:23
2
3 Modified: ChangeLog
4 Added: bugle-0.0.20080803.ebuild
5 Log:
6 Version bump wrt bug #235492 thanks to Dennis Schridde for the notification
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.26-gentoo i686)
8
9 Revision Changes Path
10 1.8 dev-util/bugle/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/bugle/ChangeLog?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/bugle/ChangeLog?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/bugle/ChangeLog?r1=1.7&r2=1.8
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/bugle/ChangeLog,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- ChangeLog 10 Aug 2008 13:08:26 -0000 1.7
23 +++ ChangeLog 25 Aug 2008 21:19:23 -0000 1.8
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-util/bugle
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/bugle/ChangeLog,v 1.7 2008/08/10 13:08:26 jokey Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/bugle/ChangeLog,v 1.8 2008/08/25 21:19:23 jokey Exp $
29 +
30 +*bugle-0.0.20080803 (25 Aug 2008)
31 +
32 + 25 Aug 2008; Markus Ullmann <jokey@g.o> +bugle-0.0.20080803.ebuild:
33 + Version bump wrt bug #235492 thanks to Dennis Schridde for the
34 + notification
35
36 *bugle-0.0.20080303 (10 Aug 2008)
37
38
39
40
41 1.1 dev-util/bugle/bugle-0.0.20080803.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/bugle/bugle-0.0.20080803.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/bugle/bugle-0.0.20080803.ebuild?rev=1.1&content-type=text/plain
45
46 Index: bugle-0.0.20080803.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/bugle/bugle-0.0.20080803.ebuild,v 1.1 2008/08/25 21:19:23 jokey Exp $
51
52 inherit toolchain-funcs
53
54 DESCRIPTION="A tool for OpenGL debugging"
55 HOMEPAGE="http://www.opengl.org/sdk/tools/BuGLe/"
56 SRC_URI="mirror://sourceforge/bugle/${P}.tar.bz2"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86"
61 IUSE="ffmpeg gtk readline"
62
63 DEPEND="ffmpeg? ( media-video/ffmpeg )
64 gtk? ( >=x11-libs/gtk+-2.4.0 >=x11-libs/gtkglext-1.0.0 )
65 readline? ( sys-libs/readline )
66 virtual/opengl
67 sys-libs/ncurses"
68 RDEPEND="${DEPEND}"
69
70 src_compile() {
71 if [ "$(gcc-version)" == "4.0" ]; then
72 die "BuGLe doesn't work with gcc-4.0. Use gcc-3.x or >=gcc-4.1."
73 fi
74
75 econf \
76 $(use_with ffmpeg) \
77 $(use_with readline) \
78 $(use_with gtk) \
79 $(use_with gtk gtkglext) \
80 || die "econf failed"
81 emake || die "emake failed"
82 }
83
84 src_install() {
85 dodoc README TODO TROUBLESHOOTING FAQ doc/*.{txt,html}
86 docinto examples
87 dodoc doc/examples/*
88 emake DESTDIR="${D}" install || die "emake install failed"
89 }
90
91 pkg_postinst() {
92 elog "See man 3 bugle for an introduction to BuGLe."
93 }