diff options
author | Andrey Grozin <grozin@gentoo.org> | 2008-06-02 10:23:51 +0000 |
---|---|---|
committer | Andrey Grozin <grozin@gentoo.org> | 2008-06-02 10:23:51 +0000 |
commit | 736828cba6d12bac421b7ebc61ba39f57eb251a1 (patch) | |
tree | d038aff94d96d536ed3f197cff9d7c1503246c68 /sci-visualization | |
parent | alpha/ia64/sparc stable wrt #223965 (diff) | |
download | gentoo-2-736828cba6d12bac421b7ebc61ba39f57eb251a1.tar.gz gentoo-2-736828cba6d12bac421b7ebc61ba39f57eb251a1.tar.bz2 gentoo-2-736828cba6d12bac421b7ebc61ba39f57eb251a1.zip |
Version bump
(Portage version: 2.1.4.4)
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/extrema/ChangeLog | 7 | ||||
-rw-r--r-- | sci-visualization/extrema/extrema-4.3.6.ebuild | 55 |
2 files changed, 61 insertions, 1 deletions
diff --git a/sci-visualization/extrema/ChangeLog b/sci-visualization/extrema/ChangeLog index 2ae0d085d427..88d594f3db12 100644 --- a/sci-visualization/extrema/ChangeLog +++ b/sci-visualization/extrema/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-visualization/extrema # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/extrema/ChangeLog,v 1.3 2008/05/15 12:21:37 rich0 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/extrema/ChangeLog,v 1.4 2008/06/02 10:23:51 grozin Exp $ + +*extrema-4.3.6 (02 Jun 2008) + + 02 Jun 2008; Andrey Grozin <grozin@gentoo.org> +extrema-4.3.6.ebuild: + Version bump 15 May 2008; Richard Freeman <rich0@gentoo.org> extrema-4.3.5.ebuild: keyword ~amd64 - 220169 diff --git a/sci-visualization/extrema/extrema-4.3.6.ebuild b/sci-visualization/extrema/extrema-4.3.6.ebuild new file mode 100644 index 000000000000..096dab5b6a44 --- /dev/null +++ b/sci-visualization/extrema/extrema-4.3.6.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/extrema/extrema-4.3.6.ebuild,v 1.1 2008/06/02 10:23:51 grozin Exp $ + +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/${PN}/${P}.tar.gz" +DEPEND=">=x11-libs/wxGTK-2.8.7 + dev-util/desktop-file-utils" + +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/*.pdf + fi + + if use examples; then + dodir /usr/share/doc/${PF}/examples + insinto /usr/share/doc/${PF}/examples + doins Scripts/*.pcm Scripts/*.dat + fi +} + +pkg_postinst() { + fdo-mime_desktop_database_update +} + +pkg_postrm() { + fdo-mime_desktop_database_update +} |