Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/wxmacmolplt/
Date: Sun, 28 Oct 2012 21:06:03
Message-Id: 1351458238.5ba6526e789af2d14754a47f24c7e336cc420e12.jlec@gentoo
1 commit: 5ba6526e789af2d14754a47f24c7e336cc420e12
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 28 21:03:58 2012 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 28 21:03:58 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=5ba6526e
7
8 sci-chemistry/wxmacmolplt: Fix prefix awareness; correct desktop file creation
9
10 Package-Manager: portage-2.2.0_alpha142
11
12 ---
13 sci-chemistry/wxmacmolplt/ChangeLog | 4 ++++
14 sci-chemistry/wxmacmolplt/metadata.xml | 10 +++++-----
15 sci-chemistry/wxmacmolplt/wxmacmolplt-7.4.3.ebuild | 10 +++++-----
16 3 files changed, 14 insertions(+), 10 deletions(-)
17
18 diff --git a/sci-chemistry/wxmacmolplt/ChangeLog b/sci-chemistry/wxmacmolplt/ChangeLog
19 index c858c58..916fc27 100644
20 --- a/sci-chemistry/wxmacmolplt/ChangeLog
21 +++ b/sci-chemistry/wxmacmolplt/ChangeLog
22 @@ -2,6 +2,10 @@
23 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
24 # $Header: $
25
26 + 28 Oct 2012; Justin Lecher <jlec@g.o> wxmacmolplt-7.4.3.ebuild,
27 + metadata.xml:
28 + Fix prefix awareness; correct desktop file creation
29 +
30 *wxmacmolplt-7.4.3 (22 Oct 2012)
31
32 22 Oct 2012; Reinis Danne <rei4dan@×××××.com> +wxmacmolplt-7.4.3.ebuild,
33
34 diff --git a/sci-chemistry/wxmacmolplt/metadata.xml b/sci-chemistry/wxmacmolplt/metadata.xml
35 index fb69a7d..37abac1 100644
36 --- a/sci-chemistry/wxmacmolplt/metadata.xml
37 +++ b/sci-chemistry/wxmacmolplt/metadata.xml
38 @@ -1,11 +1,11 @@
39 <?xml version="1.0" encoding="UTF-8"?>
40 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
41 <pkgmetadata>
42 -<herd>sci-chemistry</herd>
43 -<longdescription>
44 + <herd>sci-chemistry</herd>
45 + <longdescription>
46 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.
47 </longdescription>
48 -<use>
49 - <flag name='flash'>Add support for flash movie generation using <pkg>media-libs/ming</pkg></flag>
50 -</use>
51 + <use>
52 + <flag name="flash">Add support for flash movie generation using <pkg>media-libs/ming</pkg></flag>
53 + </use>
54 </pkgmetadata>
55
56 diff --git a/sci-chemistry/wxmacmolplt/wxmacmolplt-7.4.3.ebuild b/sci-chemistry/wxmacmolplt/wxmacmolplt-7.4.3.ebuild
57 index 8b300c9..233dac1 100644
58 --- a/sci-chemistry/wxmacmolplt/wxmacmolplt-7.4.3.ebuild
59 +++ b/sci-chemistry/wxmacmolplt/wxmacmolplt-7.4.3.ebuild
60 @@ -2,7 +2,7 @@
61 # Distributed under the terms of the GNU General Public License v2
62 # $Header: $
63
64 -EAPI="5"
65 +EAPI=5
66 WX_GTK_VER=2.8
67
68 inherit base eutils autotools wxwidgets
69 @@ -17,7 +17,7 @@ SLOT="0"
70 IUSE="flash"
71
72 RDEPEND="
73 - >=media-libs/glew-1.5.3
74 + media-libs/glew
75 media-libs/mesa
76 x11-libs/wxGTK:2.8[X,opengl]
77 flash? ( media-libs/ming )"
78 @@ -38,7 +38,7 @@ src_configure() {
79 }
80
81 src_install() {
82 - emake DESTDIR="${ED}" install || die "install failed"
83 - doicon resources/${PN}.png || die
84 - make_desktop_entry ${PN} wxMacMolPlt ${PN} "Science;Education"
85 + default
86 + doicon resources/${PN}.png
87 + make_desktop_entry ${PN} wxMacMolPlt ${PN} "Science;DataVisualization;"
88 }