Gentoo Archives: gentoo-commits

From: "Alexey Shvetsov (alexxy)" <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/wxmacmolplt: metadata.xml ChangeLog wxmacmolplt-7.3.ebuild
Date: Sun, 01 Nov 2009 14:34:25
Message-Id: E1N4bVf-0005X6-Hd@stork.gentoo.org
1 alexxy 09/11/01 14:34:23
2
3 Added: metadata.xml ChangeLog wxmacmolplt-7.3.ebuild
4 Log:
5 [sci-chemistry/wxmacmolplt] Initial import #197131
6 (Portage version: 2.2_rc48/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 sci-chemistry/wxmacmolplt/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/wxmacmolplt/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/wxmacmolplt/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>sci-chemistry</herd>
20 <longdescription>
21 wxMacMolPlt is a program for plotting 3D molecular structures and normal modes (vibrations), various orbitals and electron density maps. It reads a variety of file formats including any GAMESS input, log or IRC file directly to create animations. It has a simple GAMESS input (.inp) builder and a primitive molecule builder.
22 </longdescription>
23 <use>
24 <flag name='flash'>Add support for flash movie generation using <pkg>media-libs/ming</pkg></flag>
25 </use>
26 </pkgmetadata>
27
28
29
30 1.1 sci-chemistry/wxmacmolplt/ChangeLog
31
32 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/wxmacmolplt/ChangeLog?rev=1.1&view=markup
33 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/wxmacmolplt/ChangeLog?rev=1.1&content-type=text/plain
34
35 Index: ChangeLog
36 ===================================================================
37 # ChangeLog for sci-chemistry/wxmacmolplt
38 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
39 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/wxmacmolplt/ChangeLog,v 1.1 2009/11/01 14:34:22 alexxy Exp $
40
41 *wxmacmolplt-7.3 (01 Nov 2009)
42
43 01 Nov 2009; Alexey Shvetsov <alexxy@g.o> +wxmacmolplt-7.3.ebuild,
44 +metadata.xml:
45 Initial import. Thanks to Reinis Danne
46
47
48
49
50 1.1 sci-chemistry/wxmacmolplt/wxmacmolplt-7.3.ebuild
51
52 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/wxmacmolplt/wxmacmolplt-7.3.ebuild?rev=1.1&view=markup
53 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/wxmacmolplt/wxmacmolplt-7.3.ebuild?rev=1.1&content-type=text/plain
54
55 Index: wxmacmolplt-7.3.ebuild
56 ===================================================================
57 # Copyright 1999-2009 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/wxmacmolplt/wxmacmolplt-7.3.ebuild,v 1.1 2009/11/01 14:34:22 alexxy Exp $
60
61 EAPI="2"
62
63 inherit base eutils
64
65 DESCRIPTION="Chemical 3D graphics program with GAMESS input builder"
66 HOMEPAGE="http://www.scl.ameslab.gov/~brett/MacMolPlt/"
67
68 SRC_URI="http://www.scl.ameslab.gov/~brett/MacMolPlt/download/${P}.tar.gz"
69 LICENSE="GPL-2"
70
71 KEYWORDS="~amd64 ~x86"
72 SLOT="0"
73
74 IUSE="flash"
75
76 DEPEND="x11-libs/wxGTK[opengl]
77 flash? ( media-libs/ming )"
78
79 RDEPEND="${DEPEND}"
80
81 src_configure() {
82 econf $(use_with flash ming)
83 }
84
85 src_install() {
86 emake DESTDIR="${D}" install || die "install failed"
87 doicon resources/${PN}.png
88 make_desktop_entry ${PN} wxMacMolPlt ${PN}.png "Science;Education"
89 }