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