aboutsummaryrefslogtreecommitdiff
blob: 2161455dac199d0783820acc6d72b7c2e1f59b69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

WX_GTK_VER="2.8"
inherit eutils fdo-mime wxwidgets

DESCRIPTION="Interactive data analysis and visualization tool"
HOMEPAGE="http://exsitewebware.com/extrema/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples"
SRC_URI="mirror://sourceforge/extrema/${P}.tar.gz"
DEPEND=">=x11-libs/wxGTK-2.8.7
	dev-util/desktop-file-utils"

#### Remove the following line when moving this ebuild to the main tree!
RESTRICT=mirror

src_compile() {
	# extrema cannot be compiled with versions of minuit
	# available in portage
	econf --enable-shared || die "econf failed"
	emake || die "emake failed"
}

src_install() {
	# The upstream Makefile is mostly OK, but for a few files
	# cp to a hard-coded directory is used, ignoring $(DESTDIR)
	# This problem is solved by einstall
	einstall || die "einstall failed"

	make_desktop_entry ${PN}
	dodir /usr/share/icons/hicolor
	tar xjf extrema_icons.tar.bz2 -C "${D}usr/share/icons/hicolor"
	dosym /usr/share/icons/hicolor/48x48/apps/extrema.png /usr/share/pixmaps/extrema.png

	dodoc AUTHORS ChangeLog || die "dodoc failed"
	if use doc; then
		insinto /usr/share/doc/${PF}
		doins doc/*
	fi

	if use examples; then
		dodir /usr/share/doc/${PF}/examples
		insinto /usr/share/doc/${PF}/examples
		doins Scripts/*
	fi
}

pkg_postinst() {
	fdo-mime_desktop_database_update
}

pkg_postrm() {
	fdo-mime_desktop_database_update
}