Gentoo Archives: gentoo-commits

From: "Andrey Grozin (grozin)" <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-visualization/extrema: ChangeLog extrema-4.4.3.ebuild extrema-4.3.6.ebuild
Date: Wed, 10 Feb 2010 16:50:39
Message-Id: E1NfFlr-0000kK-5p@stork.gentoo.org
1 grozin 10/02/10 16:50:35
2
3 Modified: ChangeLog
4 Added: extrema-4.4.3.ebuild
5 Removed: extrema-4.3.6.ebuild
6 Log:
7 Version bump
8 (Portage version: 2.2_rc62/cvs/Linux i686)
9
10 Revision Changes Path
11 1.8 sci-visualization/extrema/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/extrema/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/extrema/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/extrema/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/extrema/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 7 Jan 2010 02:06:02 -0000 1.7
24 +++ ChangeLog 10 Feb 2010 16:50:34 -0000 1.8
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sci-visualization/extrema
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/extrema/ChangeLog,v 1.7 2010/01/07 02:06:02 bicatali Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/extrema/ChangeLog,v 1.8 2010/02/10 16:50:34 grozin Exp $
30 +
31 +*extrema-4.4.3 (10 Feb 2010)
32 +
33 + 10 Feb 2010; Andrey Grozin <grozin@g.o> -extrema-4.3.6.ebuild,
34 + +extrema-4.4.3.ebuild:
35 + Version bump
36
37 07 Jan 2010; Sébastien Fabbro <bicatali@g.o> extrema-4.4.2.ebuild:
38 Fixed possible sandbox violation (bug #299954)
39
40
41
42 1.1 sci-visualization/extrema/extrema-4.4.3.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/extrema/extrema-4.4.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/extrema/extrema-4.4.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: extrema-4.4.3.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.3.ebuild,v 1.1 2010/02/10 16:50:34 grozin 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_prepare() {
72 sed -i \
73 -e 's/$(pkgdatadir)/$(DESTDIR)$(pkgdatadir)/g' \
74 src/Makefile.in || die
75 }
76
77 src_configure() {
78 # extrema cannot be compiled with versions of minuit
79 # available in portage
80 econf --enable-shared
81 }
82
83 src_install() {
84 emake DESTDIR="${D}" install || die "emake install failed"
85
86 make_desktop_entry ${PN}
87 dodir /usr/share/icons/hicolor
88 tar xjf extrema_icons.tar.bz2 -C "${D}usr/share/icons/hicolor"
89 dosym /usr/share/icons/hicolor/48x48/apps/extrema.png /usr/share/pixmaps/extrema.png
90
91 dodoc AUTHORS ChangeLog || die "dodoc failed"
92 if use doc; then
93 insinto /usr/share/doc/${PF}
94 doins doc/*.pdf || die
95 fi
96
97 if use examples; then
98 insinto /usr/share/doc/${PF}/examples
99 doins Scripts/*.pcm Scripts/*.dat || die
100 fi
101 }
102
103 pkg_postinst() {
104 fdo-mime_desktop_database_update
105 }
106
107 pkg_postrm() {
108 fdo-mime_desktop_database_update
109 }