diff options
author | Paweł Hajdan <phajdan.jr@gentoo.org> | 2012-12-30 18:30:00 +0000 |
---|---|---|
committer | Paweł Hajdan <phajdan.jr@gentoo.org> | 2012-12-30 18:30:00 +0000 |
commit | 3dbd7ad545ef7c0c37747ade6e2148e09add9b12 (patch) | |
tree | 3d9dd5b414fed82febf2a495ab2ae5d90b0b4052 /sci-mathematics/spin | |
parent | m68k stable (diff) | |
download | gentoo-2-3dbd7ad545ef7c0c37747ade6e2148e09add9b12.tar.gz gentoo-2-3dbd7ad545ef7c0c37747ade6e2148e09add9b12.tar.bz2 gentoo-2-3dbd7ad545ef7c0c37747ade6e2148e09add9b12.zip |
Version bump. Fix bug #439352 by flameeyes (cc called directly). Remove old.
(Portage version: 2.1.11.31/cvs/Linux i686, signed Manifest commit with key 30427902)
Diffstat (limited to 'sci-mathematics/spin')
-rw-r--r-- | sci-mathematics/spin/ChangeLog | 8 | ||||
-rw-r--r-- | sci-mathematics/spin/spin-6.2.3.ebuild (renamed from sci-mathematics/spin/spin-6.1.0.ebuild) | 21 |
2 files changed, 18 insertions, 11 deletions
diff --git a/sci-mathematics/spin/ChangeLog b/sci-mathematics/spin/ChangeLog index 524d5080ecbd..e6c1e6262797 100644 --- a/sci-mathematics/spin/ChangeLog +++ b/sci-mathematics/spin/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-mathematics/spin # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/spin/ChangeLog,v 1.8 2012/05/21 13:05:22 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/spin/ChangeLog,v 1.9 2012/12/30 18:30:00 phajdan.jr Exp $ + +*spin-6.2.3 (30 Dec 2012) + + 30 Dec 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> -spin-6.1.0.ebuild, + +spin-6.2.3.ebuild: + Version bump. Fix bug #439352 by flameeyes (cc called directly). Remove old. *spin-6.2.1 (21 May 2012) diff --git a/sci-mathematics/spin/spin-6.1.0.ebuild b/sci-mathematics/spin/spin-6.2.3.ebuild index 1fbd1fe8a6a1..5c6d08f0a161 100644 --- a/sci-mathematics/spin/spin-6.1.0.ebuild +++ b/sci-mathematics/spin/spin-6.2.3.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/spin/spin-6.1.0.ebuild,v 1.1 2011/05/05 11:16:02 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/spin/spin-6.2.3.ebuild,v 1.1 2012/12/30 18:30:00 phajdan.jr Exp $ -EAPI="2" +EAPI="5" -inherit eutils versionator +inherit eutils toolchain-funcs versionator MY_PV=$(replace_all_version_separators '') MY_P="${PN}${MY_PV}" @@ -29,19 +29,20 @@ RDEPEND="sys-devel/gcc S="${WORKDIR}/Spin/Src${PV}" src_prepare() { - epatch "${FILESDIR}/${PN}-6.0.1-makefile.patch" + epatch "${FILESDIR}/${PN}-6.2.1-makefile.patch" } src_compile() { - emake -j1 || die + tc-export CC + default } src_install() { - dobin spin || die - doman ../Man/spin.1 || die - dodoc ../Doc/* || die + dobin spin + doman ../Man/spin.1 + dodoc ../Doc/* if use tk; then - newbin "${WORKDIR}/Spin/iSpin/ispin.tcl" ispin || die + newbin "${WORKDIR}/Spin/iSpin/ispin.tcl" ispin make_desktop_entry ispin fi } |