Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-visualization/extrema: extrema-4.4.2.ebuild ChangeLog
Date: Wed, 06 Jan 2010 04:13:31
Message-Id: E1NSNGy-0004xh-3q@stork.gentoo.org
1 bicatali 10/01/06 04:13:28
2
3 Modified: ChangeLog
4 Added: extrema-4.4.2.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.6 sci-visualization/extrema/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/extrema/ChangeLog?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/extrema/ChangeLog?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/extrema/ChangeLog?r1=1.5&r2=1.6
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/extrema/ChangeLog,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- ChangeLog 6 Dec 2008 17:04:22 -0000 1.5
23 +++ ChangeLog 6 Jan 2010 04:13:27 -0000 1.6
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sci-visualization/extrema
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/extrema/ChangeLog,v 1.5 2008/12/06 17:04:22 grozin Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/extrema/ChangeLog,v 1.6 2010/01/06 04:13:27 bicatali Exp $
30 +
31 +*extrema-4.4.2 (06 Jan 2010)
32 +
33 + 06 Jan 2010; Sébastien Fabbro <bicatali@g.o>
34 + +extrema-4.4.2.ebuild:
35 + Version bump
36
37 06 Dec 2008; Andrey Grozin <grozin@g.o> -files/extrema-4.3.5.patch,
38 -extrema-4.3.5.ebuild, extrema-4.3.6.ebuild:
39
40
41
42 1.1 sci-visualization/extrema/extrema-4.4.2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/extrema/extrema-4.4.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/extrema/extrema-4.4.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: extrema-4.4.2.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-visualization/extrema/extrema-4.4.2.ebuild,v 1.1 2010/01/06 04:13:27 bicatali Exp $
52
53 EAPI=2
54 WX_GTK_VER="2.8"
55 inherit eutils fdo-mime wxwidgets
56
57 DESCRIPTION="Interactive data analysis and visualization tool"
58 HOMEPAGE="http://exsitewebware.com/extrema/"
59 SLOT="0"
60 LICENSE="GPL-2"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="doc examples"
63 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
64
65 # File collision, see bug #249423
66 RDEPEND="!sci-chemistry/psi
67 >=x11-libs/wxGTK-2.8.7
68 dev-util/desktop-file-utils"
69 DEPEND="${RDEPEND}"
70
71 src_configure() {
72 # extrema cannot be compiled with versions of minuit
73 # available in portage
74 econf --enable-shared
75 }
76
77 src_install() {
78 emake DESTDIR="${D}" install || die "emake install failed"
79
80 make_desktop_entry ${PN}
81 dodir /usr/share/icons/hicolor
82 tar xjf extrema_icons.tar.bz2 -C "${D}usr/share/icons/hicolor"
83 dosym /usr/share/icons/hicolor/48x48/apps/extrema.png /usr/share/pixmaps/extrema.png
84
85 dodoc AUTHORS ChangeLog || die "dodoc failed"
86 if use doc; then
87 insinto /usr/share/doc/${PF}
88 doins doc/*.pdf || die
89 fi
90
91 if use examples; then
92 insinto /usr/share/doc/${PF}/examples
93 doins Scripts/*.pcm Scripts/*.dat || die
94 fi
95 }
96
97 pkg_postinst() {
98 fdo-mime_desktop_database_update
99 }
100
101 pkg_postrm() {
102 fdo-mime_desktop_database_update
103 }