diff options
author | 2007-07-13 15:35:24 +0000 | |
---|---|---|
committer | 2007-07-13 15:35:24 +0000 | |
commit | 70ff27f07d1ca715b77ac8faf0664b7bc68d62f9 (patch) | |
tree | 2e8307ecefdf74deecc41fa62a4e12e399d7d5cd /sci-mathematics | |
parent | Remove hal from use.mask, as we have linux26-headers since a long time ago (diff) | |
download | gentoo-2-70ff27f07d1ca715b77ac8faf0664b7bc68d62f9.tar.gz gentoo-2-70ff27f07d1ca715b77ac8faf0664b7bc68d62f9.tar.bz2 gentoo-2-70ff27f07d1ca715b77ac8faf0664b7bc68d62f9.zip |
Removed old versions and got rid of the libtermcap-compat dependency (see bug #103105).
(Portage version: 2.1.3_rc7)
Diffstat (limited to 'sci-mathematics')
10 files changed, 19 insertions, 159 deletions
diff --git a/sci-mathematics/octave-forge/ChangeLog b/sci-mathematics/octave-forge/ChangeLog index d113938b3d89..43119efe38bc 100644 --- a/sci-mathematics/octave-forge/ChangeLog +++ b/sci-mathematics/octave-forge/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sci-mathematics/octave-forge # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave-forge/ChangeLog,v 1.22 2007/04/13 13:51:01 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave-forge/ChangeLog,v 1.23 2007/07/13 15:35:23 markusle Exp $ + + 13 Jul 2007; Markus Dittrich <markusle@gentoo.org> + -octave-forge-2004.11.16-r1.ebuild, -octave-forge-2005.06.13.ebuild, + octave-forge-2006.01.28.ebuild, octave-forge-2006.03.17.ebuild, + octave-forge-2006.03.17-r1.ebuild: + Removed old versions and got rid of the libtermcap-compat + dependency (see bug #103105). *octave-forge-2006.03.17-r1 (13 Apr 2007) diff --git a/sci-mathematics/octave-forge/files/digest-octave-forge-2004.11.16-r1 b/sci-mathematics/octave-forge/files/digest-octave-forge-2004.11.16-r1 deleted file mode 100644 index 446856307aef..000000000000 --- a/sci-mathematics/octave-forge/files/digest-octave-forge-2004.11.16-r1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 a8e52c27159a110a26ab57c10d3883b0 octave-forge-2004.11.16.tar.gz 3639093 -RMD160 9356864920a5a4d4a4c1786c3ea74be0ec1e760d octave-forge-2004.11.16.tar.gz 3639093 -SHA256 772773a0a593e768d151079a4bec74831c1c4f2adb1d27308723b866dbbc2c90 octave-forge-2004.11.16.tar.gz 3639093 diff --git a/sci-mathematics/octave-forge/files/digest-octave-forge-2005.06.13 b/sci-mathematics/octave-forge/files/digest-octave-forge-2005.06.13 deleted file mode 100644 index b4be12d7a256..000000000000 --- a/sci-mathematics/octave-forge/files/digest-octave-forge-2005.06.13 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 cf82a74d27636abf07f1732b4851f2e2 octave-forge-2005.06.13.tar.gz 3680082 -RMD160 4666543da2a542fd9a0f8b1c7c95be70824cff81 octave-forge-2005.06.13.tar.gz 3680082 -SHA256 8e74a675e97ce3a028533c47d07603ffa4f962fef902f0a5c347858aa13baa62 octave-forge-2005.06.13.tar.gz 3680082 diff --git a/sci-mathematics/octave-forge/octave-forge-2004.11.16-r1.ebuild b/sci-mathematics/octave-forge/octave-forge-2004.11.16-r1.ebuild deleted file mode 100644 index c6d3208b53fb..000000000000 --- a/sci-mathematics/octave-forge/octave-forge-2004.11.16-r1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave-forge/octave-forge-2004.11.16-r1.ebuild,v 1.6 2007/07/13 05:28:09 mr_bones_ Exp $ - -inherit eutils - -DESCRIPTION="A collection of custom scripts, functions and extensions for GNU Octave" -HOMEPAGE="http://octave.sourceforge.net/" -SRC_URI="mirror://sourceforge/octave/${P}.tar.gz" - -LICENSE="as-is" -KEYWORDS="~x86 ~ppc ~sparc ~amd64" -SLOT="0" -IUSE="ginac qhull" - -DEPEND=">=sci-mathematics/octave-2.1.62 - >=sys-apps/sed-4 - sys-libs/libtermcap-compat - !amd64? ( ginac? ( sci-mathematics/ginac ) ) - qhull? ( >=media-libs/qhull-3.1-r1 )" - -src_unpack() { - unpack ${A} - cd ${S} - epatch ${FILESDIR}/${PN}-mex.patch - - # make it compile when X isn't installed. The source file there really - # doesn't need X at all. - # 02 Feb 2005, Robin H. Johnson <robbat2@gentoo.org> - sed -e '/#include <X11/d' -i ${S}/main/audio/aurecord.cc -} - -src_compile() { - econf || die "econf failed" - - # this must be done before the *PATH variables are changed - cd extra/graceplot && make grace_octave_path.m - cd ${S} - - # The *PATH variables need to be changed, or they will - # cause Portage access violations. They cannot be easily set just using - # arguments passed to ./configure (at least, they can not easily be set - # correctly) - echo -en "Modifying paths..." - for path in M O X ALTM ALTO; do - sed -i "s|^\(${path}PATH = \)|\1${D}|" Makeconf || \ - die "failed to modify ${path}PATH" - done - echo -e "done.\n" - - emake || die "emake failed" -} - -src_install() { - make DESTDIR="${D}" install || die "install failed" - - # strip the fudged install paths - sed -i "s|${D}||g" ${D}/usr/bin/mex || die "sed failed" - - dodoc AUTHORS COPYING* ChangeLog INDEX RELEASE-NOTES TODO -} - -pkg_postinst() { - einfo "If you do not have GiNaC and Qhull installed, octave-forge did not" - einfo "compile itself with support for the geometry and symbolic math" - einfo "extensions. If you would like these features, please emerge ginac" - einfo "and/or qhull and then re-emerge octave-forge. Alternately, you can" - einfo "specify USE='ginac qhull' and re-emerge octave-forge; in that case" - einfo "the ebuild will automatically install the additional packages." -} diff --git a/sci-mathematics/octave-forge/octave-forge-2004.11.16-r2.ebuild b/sci-mathematics/octave-forge/octave-forge-2004.11.16-r2.ebuild index eb0f37798771..45415058e829 100644 --- a/sci-mathematics/octave-forge/octave-forge-2004.11.16-r2.ebuild +++ b/sci-mathematics/octave-forge/octave-forge-2004.11.16-r2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave-forge/octave-forge-2004.11.16-r2.ebuild,v 1.3 2007/07/13 05:28:09 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave-forge/octave-forge-2004.11.16-r2.ebuild,v 1.4 2007/07/13 15:35:23 markusle Exp $ inherit eutils diff --git a/sci-mathematics/octave-forge/octave-forge-2005.06.13-r1.ebuild b/sci-mathematics/octave-forge/octave-forge-2005.06.13-r1.ebuild index 34df48a2093b..246f9064e8f9 100644 --- a/sci-mathematics/octave-forge/octave-forge-2005.06.13-r1.ebuild +++ b/sci-mathematics/octave-forge/octave-forge-2005.06.13-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave-forge/octave-forge-2005.06.13-r1.ebuild,v 1.3 2007/07/13 05:28:09 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave-forge/octave-forge-2005.06.13-r1.ebuild,v 1.4 2007/07/13 15:35:23 markusle Exp $ inherit eutils diff --git a/sci-mathematics/octave-forge/octave-forge-2005.06.13.ebuild b/sci-mathematics/octave-forge/octave-forge-2005.06.13.ebuild deleted file mode 100644 index b8a3769b03ab..000000000000 --- a/sci-mathematics/octave-forge/octave-forge-2005.06.13.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave-forge/octave-forge-2005.06.13.ebuild,v 1.5 2007/07/13 05:28:09 mr_bones_ Exp $ - -inherit eutils - -DESCRIPTION="A collection of custom scripts, functions and extensions for GNU Octave" -HOMEPAGE="http://octave.sourceforge.net/" -SRC_URI="mirror://sourceforge/octave/${P}.tar.gz" - -LICENSE="as-is" -KEYWORDS="~x86 ~ppc ~sparc ~amd64" -SLOT="0" -IUSE="ginac qhull" - -DEPEND="=sci-mathematics/octave-2.1.69* - >=sys-apps/sed-4 - sys-libs/libtermcap-compat - !amd64? ( ginac? ( sci-mathematics/ginac ) ) - qhull? ( >=media-libs/qhull-3.1-r1 )" - -src_unpack() { - unpack ${A} - cd ${S} - epatch ${FILESDIR}/${PN}-mex.patch - epatch ${FILESDIR}/${PN}-randmtzig.patch - - # make it compile when X isn't installed. The source file there really - # doesn't need X at all. - # 02 Feb 2005, Robin H. Johnson <robbat2@gentoo.org> - sed -e '/#include <X11/d' -i ${S}/main/audio/aurecord.cc -} - -src_compile() { - econf --enable-shared || die "econf failed" - - # this must be done before the *PATH variables are changed - cd extra/graceplot && make grace_octave_path.m - cd ${S} - - # The *PATH variables need to be changed, or they will - # cause Portage access violations. They cannot be easily set just using - # arguments passed to ./configure (at least, they can not easily be set - # correctly) - echo -en "Modifying paths..." - for path in M O X ALTM ALTO; do - sed -i "s|^\(${path}PATH = \)|\1${D}|" Makeconf || \ - die "failed to modify ${path}PATH" - done - echo -e "done.\n" - - emake || die "emake failed" -} - -src_install() { - make DESTDIR="${D}" install || die "install failed" - - # strip the fudged install paths - sed -i "s|${D}||g" ${D}/usr/bin/mex || die "sed failed" - - dodoc AUTHORS COPYING* ChangeLog INDEX RELEASE-NOTES TODO -} - -pkg_postinst() { - einfo "If you do not have GiNaC and Qhull installed, octave-forge did not" - einfo "compile itself with support for the geometry and symbolic math" - einfo "extensions. If you would like these features, please emerge ginac" - einfo "and/or qhull and then re-emerge octave-forge. Alternately, you can" - einfo "specify USE='ginac qhull' and re-emerge octave-forge; in that case" - einfo "the ebuild will automatically install the additional packages." -} diff --git a/sci-mathematics/octave-forge/octave-forge-2006.01.28.ebuild b/sci-mathematics/octave-forge/octave-forge-2006.01.28.ebuild index 63c96ee9b509..c9c01d78e33c 100644 --- a/sci-mathematics/octave-forge/octave-forge-2006.01.28.ebuild +++ b/sci-mathematics/octave-forge/octave-forge-2006.01.28.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave-forge/octave-forge-2006.01.28.ebuild,v 1.5 2007/07/13 05:28:09 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave-forge/octave-forge-2006.01.28.ebuild,v 1.6 2007/07/13 15:35:23 markusle Exp $ inherit eutils @@ -21,7 +21,7 @@ DEPEND="~sci-mathematics/octave-2.1.72 dev-libs/libpcre sys-libs/readline sys-apps/texinfo - sys-libs/libtermcap-compat + sys-libs/ncurses virtual/lapack virtual/blas X? ( || ( x11-libs/libX11 virtual/x11 ) ) diff --git a/sci-mathematics/octave-forge/octave-forge-2006.03.17-r1.ebuild b/sci-mathematics/octave-forge/octave-forge-2006.03.17-r1.ebuild index 4186b6b94d7a..dfa3ddbe9f0e 100644 --- a/sci-mathematics/octave-forge/octave-forge-2006.03.17-r1.ebuild +++ b/sci-mathematics/octave-forge/octave-forge-2006.03.17-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave-forge/octave-forge-2006.03.17-r1.ebuild,v 1.2 2007/07/13 05:28:09 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave-forge/octave-forge-2006.03.17-r1.ebuild,v 1.3 2007/07/13 15:35:23 markusle Exp $ inherit eutils @@ -21,7 +21,7 @@ DEPEND=">=sci-mathematics/octave-2.1.72 dev-libs/libpcre sys-libs/readline sys-apps/texinfo - sys-libs/libtermcap-compat + sys-libs/ncurses virtual/lapack virtual/blas sci-calculators/units diff --git a/sci-mathematics/octave-forge/octave-forge-2006.03.17.ebuild b/sci-mathematics/octave-forge/octave-forge-2006.03.17.ebuild index 5700e3083c0d..e1e5066e77e2 100644 --- a/sci-mathematics/octave-forge/octave-forge-2006.03.17.ebuild +++ b/sci-mathematics/octave-forge/octave-forge-2006.03.17.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave-forge/octave-forge-2006.03.17.ebuild,v 1.7 2007/07/13 05:28:09 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave-forge/octave-forge-2006.03.17.ebuild,v 1.8 2007/07/13 15:35:23 markusle Exp $ inherit eutils @@ -21,7 +21,7 @@ DEPEND=">=sci-mathematics/octave-2.1.72 dev-libs/libpcre sys-libs/readline sys-apps/texinfo - sys-libs/libtermcap-compat + sys-libs/ncurses virtual/lapack virtual/blas X? ( || ( x11-libs/libX11 virtual/x11 ) ) |