Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/structure-synth: metadata.xml ChangeLog structure-synth-1.5.0.ebuild
Date: Sat, 28 May 2011 09:21:43
Message-Id: 20110528092133.4B03320054@flycatcher.gentoo.org
1 radhermit 11/05/28 09:21:33
2
3 Added: metadata.xml ChangeLog structure-synth-1.5.0.ebuild
4 Log:
5 Initial import.
6
7 (Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 media-gfx/structure-synth/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/structure-synth/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/structure-synth/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>graphics</herd>
21 </pkgmetadata>
22
23
24
25 1.1 media-gfx/structure-synth/ChangeLog
26
27 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/structure-synth/ChangeLog?rev=1.1&view=markup
28 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/structure-synth/ChangeLog?rev=1.1&content-type=text/plain
29
30 Index: ChangeLog
31 ===================================================================
32 # ChangeLog for media-gfx/structure-synth
33 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
34 # $Header: /var/cvsroot/gentoo-x86/media-gfx/structure-synth/ChangeLog,v 1.1 2011/05/28 09:21:33 radhermit Exp $
35
36 *structure-synth-1.5.0 (28 May 2011)
37
38 28 May 2011; Tim Harder <radhermit@g.o> +structure-synth-1.5.0.ebuild,
39 +metadata.xml:
40 Initial import.
41
42
43
44
45 1.1 media-gfx/structure-synth/structure-synth-1.5.0.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/structure-synth/structure-synth-1.5.0.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/structure-synth/structure-synth-1.5.0.ebuild?rev=1.1&content-type=text/plain
49
50 Index: structure-synth-1.5.0.ebuild
51 ===================================================================
52 # Copyright 1999-2011 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/media-gfx/structure-synth/structure-synth-1.5.0.ebuild,v 1.1 2011/05/28 09:21:33 radhermit Exp $
55
56 EAPI=4
57
58 inherit eutils qt4-r2
59
60 MY_P="StructureSynth-Source-v${PV}"
61 DESCRIPTION="A program to generate 3D structures by specifying a design grammar"
62 HOMEPAGE="http://structuresynth.sourceforge.net/"
63 SRC_URI="mirror://sourceforge/structuresynth/${MY_P}.zip"
64
65 LICENSE="|| ( LGPL-2.1 GPL-3 )"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 RDEPEND="virtual/opengl
71 x11-libs/qt-core:4
72 x11-libs/qt-gui:4
73 x11-libs/qt-opengl:4
74 x11-libs/qt-script:4"
75 DEPEND="${RDEPEND}
76 app-arch/unzip"
77
78 S="${WORKDIR}/Structure Synth Source Code"
79
80 src_prepare() {
81 qmake -project -o ${PN}.pro -after "CONFIG+=opengl" \
82 -after "QT+=xml opengl script" || die "qmake failed"
83 }
84
85 src_install() {
86 dobin ${PN}
87 dodoc roadmap.txt changelog.txt bugs.txt
88 domenu ${PN}.desktop
89 newicon images/structuresynth.png ${PN}.png
90 }