diff options
author | 2005-05-05 21:22:16 +0000 | |
---|---|---|
committer | 2005-05-05 21:22:16 +0000 | |
commit | c655cad6b52fe51d4d94f933df5eb5c4f069526c (patch) | |
tree | 5c6ceddbe9284d3d1f959c7f5b4f7cab6cf251f3 /dev-libs | |
parent | Stable on alpha. (diff) | |
download | gentoo-2-c655cad6b52fe51d4d94f933df5eb5c4f069526c.tar.gz gentoo-2-c655cad6b52fe51d4d94f933df5eb5c4f069526c.tar.bz2 gentoo-2-c655cad6b52fe51d4d94f933df5eb5c4f069526c.zip |
Fixed BUG#91502 and removed obsolete old version.
(Portage version: 2.0.51.19)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libf2c/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/libf2c/files/digest-libf2c-20021004 | 1 | ||||
-rw-r--r-- | dev-libs/libf2c/libf2c-20021004-r1.ebuild | 5 | ||||
-rw-r--r-- | dev-libs/libf2c/libf2c-20021004.ebuild | 32 |
4 files changed, 8 insertions, 36 deletions
diff --git a/dev-libs/libf2c/ChangeLog b/dev-libs/libf2c/ChangeLog index 00bc6fc437b9..98961b5a0dba 100644 --- a/dev-libs/libf2c/ChangeLog +++ b/dev-libs/libf2c/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/libf2c # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libf2c/ChangeLog,v 1.16 2005/02/17 21:55:21 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libf2c/ChangeLog,v 1.17 2005/05/05 21:22:16 kugelfang Exp $ + + 05 May 2005; Danny van Dyk <kugelfang@gentoo.org> + libf2c-20021004-r1.ebuild, -libf2c-20021004.ebuild: + Removed libf2c-20021004. Fixed DEPEND in -r1, (thx to Jeremy Warren). 17 Feb 2005; Bryan Østergaard <kloeri@gentoo.org> libf2c-20021004-r1.ebuild: diff --git a/dev-libs/libf2c/files/digest-libf2c-20021004 b/dev-libs/libf2c/files/digest-libf2c-20021004 deleted file mode 100644 index ff8b0164d2d2..000000000000 --- a/dev-libs/libf2c/files/digest-libf2c-20021004 +++ /dev/null @@ -1 +0,0 @@ -MD5 64b87b3804fad207aa476894e00cd496 libf2c.zip 123393 diff --git a/dev-libs/libf2c/libf2c-20021004-r1.ebuild b/dev-libs/libf2c/libf2c-20021004-r1.ebuild index ebbf9102fb57..90ced4485332 100644 --- a/dev-libs/libf2c/libf2c-20021004-r1.ebuild +++ b/dev-libs/libf2c/libf2c-20021004-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libf2c/libf2c-20021004-r1.ebuild,v 1.10 2005/02/17 21:55:21 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libf2c/libf2c-20021004-r1.ebuild,v 1.11 2005/05/05 21:22:16 kugelfang Exp $ inherit gcc eutils @@ -13,7 +13,8 @@ SLOT="0" KEYWORDS="x86 amd64 ppc ppc64 sparc ~alpha" IUSE="" -DEPEND="virtual/libc" +DEPEND="virtual/libc + app-arch/unzip" S=${WORKDIR}/${PN} diff --git a/dev-libs/libf2c/libf2c-20021004.ebuild b/dev-libs/libf2c/libf2c-20021004.ebuild deleted file mode 100644 index 99dbc21aadd9..000000000000 --- a/dev-libs/libf2c/libf2c-20021004.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libf2c/libf2c-20021004.ebuild,v 1.13 2005/01/10 19:55:03 corsair Exp $ - -inherit gcc - -DESCRIPTION="Library that converts FORTRAN to C source." -HOMEPAGE="ftp://ftp.netlib.org/f2c/index.html" -SRC_URI="ftp://ftp.netlib.org/f2c/${PN}.zip" - -LICENSE="libf2c" -SLOT="0" -KEYWORDS="x86 -amd64" -IUSE="" - -DEPEND="virtual/libc" - -S=${WORKDIR}/${PN} - -src_compile() { - emake -f makefile.u \ - CFLAGS="${CFLAGS}" \ - CC="$(gcc-getCC)" \ - || die -} - -src_install () { - dolib.a libf2c.a - insinto /usr/include - doins f2c.h - dodoc README Notice -} |