Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/wxmacmolplt: ChangeLog wxmacmolplt-7.4-r1.ebuild wxmacmolplt-7.4.ebuild wxmacmolplt-7.3.ebuild wxmacmolplt-7.3-r1.ebuild
Date: Fri, 25 Jun 2010 17:21:45
Message-Id: 20100625172142.868782CF64@corvid.gentoo.org
1 jlec 10/06/25 17:21:42
2
3 Modified: ChangeLog
4 Added: wxmacmolplt-7.4-r1.ebuild
5 Removed: wxmacmolplt-7.4.ebuild wxmacmolplt-7.3.ebuild
6 wxmacmolplt-7.3-r1.ebuild
7 Log:
8 Removed old, fixes for gl handling and flash support
9 (Portage version: 2.2_rc67/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.7 sci-chemistry/wxmacmolplt/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/wxmacmolplt/ChangeLog?rev=1.7&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/wxmacmolplt/ChangeLog?rev=1.7&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/wxmacmolplt/ChangeLog?r1=1.6&r2=1.7
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/wxmacmolplt/ChangeLog,v
21 retrieving revision 1.6
22 retrieving revision 1.7
23 diff -u -r1.6 -r1.7
24 --- ChangeLog 25 Jun 2010 09:57:43 -0000 1.6
25 +++ ChangeLog 25 Jun 2010 17:21:42 -0000 1.7
26 @@ -1,6 +1,14 @@
27 # ChangeLog for sci-chemistry/wxmacmolplt
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/wxmacmolplt/ChangeLog,v 1.6 2010/06/25 09:57:43 jlec Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/wxmacmolplt/ChangeLog,v 1.7 2010/06/25 17:21:42 jlec Exp $
31 +
32 +*wxmacmolplt-7.4-r1 (25 Jun 2010)
33 +
34 + 25 Jun 2010; Justin Lecher <jlec@g.o> -wxmacmolplt-7.3.ebuild,
35 + -wxmacmolplt-7.3-r1.ebuild, -wxmacmolplt-7.4.ebuild,
36 + +wxmacmolplt-7.4-r1.ebuild, +files/wxmacmolplt-7.4-flash.patch,
37 + +files/wxmacmolplt-7.4-glew.patch:
38 + Removed old, fixes for gl handling and flash support
39
40 25 Jun 2010; Justin Lecher <jlec@g.o> wxmacmolplt-7.4.ebuild:
41 Restrict ming to <0.4
42
43
44
45 1.1 sci-chemistry/wxmacmolplt/wxmacmolplt-7.4-r1.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/wxmacmolplt/wxmacmolplt-7.4-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/wxmacmolplt/wxmacmolplt-7.4-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: wxmacmolplt-7.4-r1.ebuild
51 ===================================================================
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/wxmacmolplt/wxmacmolplt-7.4-r1.ebuild,v 1.1 2010/06/25 17:21:42 jlec Exp $
55
56 EAPI="2"
57 WX_GTK_VER=2.8
58
59 inherit base eutils autotools wxwidgets
60
61 DESCRIPTION="Chemical 3D graphics program with GAMESS input builder"
62 HOMEPAGE="http://www.scl.ameslab.gov/MacMolPlt/"
63 SRC_URI="http://www.scl.ameslab.gov/MacMolPlt/download/${P}.tar.gz"
64
65 LICENSE="GPL-2"
66 KEYWORDS="~amd64 ~x86"
67 SLOT="0"
68 IUSE="flash"
69
70 RDEPEND="
71 >=media-libs/glew-1.5.3
72 media-libs/mesa
73 x11-libs/wxGTK:2.8[X,opengl]
74 flash? ( <media-libs/ming-0.4 )"
75 DEPEND="${RDEPEND}
76 dev-util/pkgconfig"
77
78 src_prepare() {
79 epatch "${FILESDIR}"/${P}-glew.patch
80 epatch "${FILESDIR}"/${P}-flash.patch
81 sed -i -e "/^dist_doc_DATA/d" Makefile.am \
82 || die "Failed to disable installation of LICENSE file"
83 eautoreconf
84 }
85
86 src_configure() {
87 econf $(use_with flash ming)
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install || die "install failed"
92 doicon resources/${PN}.png || die
93 make_desktop_entry ${PN} wxMacMolPlt ${PN} "Science;Education"
94 }