Gentoo Archives: gentoo-commits

From: "Federico Ferri (mescalinum)" <mescalinum@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-tcltk/togl: ChangeLog togl-2.0-r1.ebuild
Date: Fri, 04 Sep 2009 01:15:01
Message-Id: E1MjSCr-0003PF-I5@stork.gentoo.org
1 mescalinum 09/09/04 06:23:33
2
3 Modified: ChangeLog
4 Added: togl-2.0-r1.ebuild
5 Log:
6 revbump (pick from sci overlay)
7 (Portage version: 2.2_rc38/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 dev-tcltk/togl/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/togl/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/togl/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/togl/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/togl/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 18 May 2009 05:30:50 -0000 1.2
23 +++ ChangeLog 4 Sep 2009 06:23:33 -0000 1.3
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-tcltk/togl
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/togl/ChangeLog,v 1.2 2009/05/18 05:30:50 mescalinum Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/togl/ChangeLog,v 1.3 2009/09/04 06:23:33 mescalinum Exp $
29 +
30 +*togl-2.0-r1 (04 Sep 2009)
31 +
32 + 04 Sep 2009; Federico Ferri <mescalinum@g.o> +togl-2.0-r1.ebuild:
33 + revbump (pick from sci overlay)
34
35 18 May 2009; Federico Ferri <mescalinum@g.o> togl-2.0.ebuild:
36 add ~x86 keyword, bug #270222
37
38
39
40 1.1 dev-tcltk/togl/togl-2.0-r1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/togl/togl-2.0-r1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/togl/togl-2.0-r1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: togl-2.0-r1.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-tcltk/togl/togl-2.0-r1.ebuild,v 1.1 2009/09/04 06:23:33 mescalinum Exp $
50
51 EAPI="2"
52
53 MY_P="Togl${PV}"
54
55 DESCRIPTION="A Tk widget for OpenGL rendering"
56 HOMEPAGE="http://togl.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/${PN}/${MY_P}-src.tar.gz"
58
59 LICENSE="BSD"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="debug +threads"
63
64 RDEPEND="dev-lang/tk
65 virtual/opengl"
66 DEPEND="${RDEPEND}"
67
68 # tests directory is missing
69 RESTRICT="test"
70
71 S="${WORKDIR}"/${MY_P}
72
73 src_configure() {
74 econf \
75 $(use_enable debug symbols) \
76 $(use_enable amd64 64bit) \
77 $(use_enable threads)
78 }
79
80 src_install() {
81 emake DESTDIR="${D}" install || die "failed to install"
82 dohtml doc/* || die "no html"
83 dodoc README* || die "no README"
84 }