Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/betagarden:master commit in: x11-libs/libGLw/
Date: Sun, 04 Mar 2012 09:38:25
Message-Id: 1330853480.bc00f67506c222b39896e867f1f0c64794c68433.jlec@gentoo
1 commit: bc00f67506c222b39896e867f1f0c64794c68433
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 4 09:31:20 2012 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 4 09:31:20 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=bc00f675
7
8 Add git snapshot version
9
10 (Portage version: 2.2.0_alpha89/git/Linux x86_64, signed Manifest commit with key 70EB7916)
11
12 ---
13 x11-libs/libGLw/ChangeLog | 5 ++++
14 x11-libs/libGLw/libGLw-1.0.0_pre120304.ebuild | 33 +++++++++++++++++++++++++
15 2 files changed, 38 insertions(+), 0 deletions(-)
16
17 diff --git a/x11-libs/libGLw/ChangeLog b/x11-libs/libGLw/ChangeLog
18 index 0a7de4b..2af9698 100644
19 --- a/x11-libs/libGLw/ChangeLog
20 +++ b/x11-libs/libGLw/ChangeLog
21 @@ -2,6 +2,11 @@
22 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
23 # $Header: $
24
25 +*libGLw-1.0.0_pre120304 (04 Mar 2012)
26 +
27 + 04 Mar 2012; Justin Lecher <jlec@g.o> +libGLw-1.0.0_pre120304.ebuild:
28 + Add git snapshot version
29 +
30 *libGLw-9999 (14 Feb 2012)
31
32 14 Feb 2012; Justin Lecher <jlec@g.o> -libGLw-1.0.0.ebuild,
33
34 diff --git a/x11-libs/libGLw/libGLw-1.0.0_pre120304.ebuild b/x11-libs/libGLw/libGLw-1.0.0_pre120304.ebuild
35 new file mode 100644
36 index 0000000..c0095be
37 --- /dev/null
38 +++ b/x11-libs/libGLw/libGLw-1.0.0_pre120304.ebuild
39 @@ -0,0 +1,33 @@
40 +# Copyright 1999-2012 Gentoo Foundation
41 +# Distributed under the terms of the GNU General Public License v2
42 +# $Header: $
43 +
44 +EAPI=4
45 +
46 +AUTOTOOLS_AUTORECONF=true
47 +
48 +inherit autotools-utils
49 +
50 +DESCRIPTION="Mesa GLw library"
51 +HOMEPAGE="http://mesa3d.sourceforge.net/"
52 +SRC_URI="http:/dev.gentoo.org/~jlec/distfiles/${P}.tar.xz"
53 +
54 +SLOT="0"
55 +LICENSE="MIT"
56 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
57 +IUSE="+motif static-libs"
58 +
59 +RDEPEND="
60 + !media-libs/mesa[motif]
61 + virtual/opengl
62 + x11-libs/libX11
63 + x11-libs/libXt"
64 +DEPEND="${RDEPEND}
65 + dev-util/pkgconfig"
66 +
67 +src_configure() {
68 + local myeconfargs=(
69 + --enable-motif
70 + )
71 + autotools-utils_src_configure
72 +}