diff options
author | Andrey Grozin <grozin@gentoo.org> | 2008-12-06 17:04:22 +0000 |
---|---|---|
committer | Andrey Grozin <grozin@gentoo.org> | 2008-12-06 17:04:22 +0000 |
commit | 98cf26225ae70e7b997a067bc939cbe4b2d73e18 (patch) | |
tree | bcc8b78ac5e0f222b639290dfec3480bee5dfea1 /sci-visualization/extrema | |
parent | Check if /etc/conf.d/iscsid exists and INITIATOR_FILENAME isn't empty. Thanks... (diff) | |
download | gentoo-2-98cf26225ae70e7b997a067bc939cbe4b2d73e18.tar.gz gentoo-2-98cf26225ae70e7b997a067bc939cbe4b2d73e18.tar.bz2 gentoo-2-98cf26225ae70e7b997a067bc939cbe4b2d73e18.zip |
Fixing file collision with sci-chemistry/psi, bug #249423.
(Portage version: 2.2_rc17/cvs/Linux 2.6.26-tuxonice i686)
Diffstat (limited to 'sci-visualization/extrema')
-rw-r--r-- | sci-visualization/extrema/ChangeLog | 6 | ||||
-rw-r--r-- | sci-visualization/extrema/extrema-4.3.5.ebuild | 61 | ||||
-rw-r--r-- | sci-visualization/extrema/extrema-4.3.6.ebuild | 8 | ||||
-rw-r--r-- | sci-visualization/extrema/files/extrema-4.3.5.patch | 10 |
4 files changed, 10 insertions, 75 deletions
diff --git a/sci-visualization/extrema/ChangeLog b/sci-visualization/extrema/ChangeLog index 88d594f3db12..ece989354bf0 100644 --- a/sci-visualization/extrema/ChangeLog +++ b/sci-visualization/extrema/ChangeLog @@ -1,6 +1,10 @@ # 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.4 2008/06/02 10:23:51 grozin Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/extrema/ChangeLog,v 1.5 2008/12/06 17:04:22 grozin Exp $ + + 06 Dec 2008; Andrey Grozin <grozin@gentoo.org> -files/extrema-4.3.5.patch, + -extrema-4.3.5.ebuild, extrema-4.3.6.ebuild: + Fixing file collision with sci-chemistry/psi, bug #249423. *extrema-4.3.6 (02 Jun 2008) diff --git a/sci-visualization/extrema/extrema-4.3.5.ebuild b/sci-visualization/extrema/extrema-4.3.5.ebuild deleted file mode 100644 index b5fb114faea8..000000000000 --- a/sci-visualization/extrema/extrema-4.3.5.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# 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.5.ebuild,v 1.3 2008/05/15 12:21:37 rich0 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_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}.patch -} - -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 -} diff --git a/sci-visualization/extrema/extrema-4.3.6.ebuild b/sci-visualization/extrema/extrema-4.3.6.ebuild index 096dab5b6a44..21cf27663019 100644 --- a/sci-visualization/extrema/extrema-4.3.6.ebuild +++ b/sci-visualization/extrema/extrema-4.3.6.ebuild @@ -1,6 +1,6 @@ # 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 $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/extrema/extrema-4.3.6.ebuild,v 1.2 2008/12/06 17:04:22 grozin Exp $ WX_GTK_VER="2.8" inherit eutils fdo-mime wxwidgets @@ -12,13 +12,15 @@ LICENSE="GPL-2" KEYWORDS="~amd64 ~x86" IUSE="doc examples" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" -DEPEND=">=x11-libs/wxGTK-2.8.7 +# File collision, see bug #249423 +DEPEND="!sci-chemistry/psi + >=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" + econf --enable-shared emake || die "emake failed" } diff --git a/sci-visualization/extrema/files/extrema-4.3.5.patch b/sci-visualization/extrema/files/extrema-4.3.5.patch deleted file mode 100644 index dfed80a3011d..000000000000 --- a/sci-visualization/extrema/files/extrema-4.3.5.patch +++ /dev/null @@ -1,10 +0,0 @@ -diff -U2 -r extrema-4.3.5.orig/Scripts/waterpipes.pcm extrema-4.3.5/Scripts/waterpipes.pcm ---- extrema-4.3.5.orig/Scripts/waterpipes.pcm 2007-11-02 03:48:32.000000000 +0600 -+++ extrema-4.3.5/Scripts/waterpipes.pcm 2008-05-11 12:18:25.000000000 +0700 -@@ -24,5 +24,5 @@ - ! - ! --FILE = 'HOUSES.DAT' -+FILE = 'houses.dat' - LENGTH_GOAL = 5 ! try to achieve this goal - READ\-MESSAGES FILE X Y ! read in the house positions |