summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2015-05-27 17:27:48 +0000
committerJustin Lecher <jlec@gentoo.org>2015-05-27 17:27:48 +0000
commit25f77b6d0eb0b7b6841e5531952600df72c26d35 (patch)
tree45701d1503e6d9582685b934d169751ca169207a /dev-libs/libf2c
parentDrop old (diff)
downloadgentoo-2-25f77b6d0eb0b7b6841e5531952600df72c26d35.tar.gz
gentoo-2-25f77b6d0eb0b7b6841e5531952600df72c26d35.tar.bz2
gentoo-2-25f77b6d0eb0b7b6841e5531952600df72c26d35.zip
Drop old
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
Diffstat (limited to 'dev-libs/libf2c')
-rw-r--r--dev-libs/libf2c/ChangeLog5
-rw-r--r--dev-libs/libf2c/libf2c-20110801-r3.ebuild58
2 files changed, 4 insertions, 59 deletions
diff --git a/dev-libs/libf2c/ChangeLog b/dev-libs/libf2c/ChangeLog
index 1d532e395ee1..634406149422 100644
--- a/dev-libs/libf2c/ChangeLog
+++ b/dev-libs/libf2c/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libf2c
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libf2c/ChangeLog,v 1.67 2015/05/27 11:21:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libf2c/ChangeLog,v 1.68 2015/05/27 17:27:48 jlec Exp $
+
+ 27 May 2015; Justin Lecher <jlec@gentoo.org> -libf2c-20110801-r3.ebuild:
+ Drop old
27 May 2015; Agostino Sarubbo <ago@gentoo.org> libf2c-20110801-r4.ebuild:
Stable for x86, wrt bug #542232
diff --git a/dev-libs/libf2c/libf2c-20110801-r3.ebuild b/dev-libs/libf2c/libf2c-20110801-r3.ebuild
deleted file mode 100644
index b0ca1595b1c7..000000000000
--- a/dev-libs/libf2c/libf2c-20110801-r3.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libf2c/libf2c-20110801-r3.ebuild,v 1.5 2013/06/25 12:48:23 ago Exp $
-
-EAPI=4
-
-inherit eutils multilib toolchain-funcs
-
-DESCRIPTION="Library that converts FORTRAN to C source"
-HOMEPAGE="http://www.netlib.org/f2c/"
-SRC_URI="${HOMEPAGE}/${PN}.zip -> ${P}.zip"
-
-LICENSE="HPND"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE="static-libs"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
- app-arch/unzip"
-
-S="${WORKDIR}"
-
-src_prepare() {
- epatch \
- "${FILESDIR}"/20051004-add-ofiles-dep.patch \
- "${FILESDIR}"/20090407-link-shared-libf2c-correctly.patch \
- "${FILESDIR}"/${P}-main.patch\
- "${FILESDIR}"/${P}-64bit-long.patch
- sed -i -e "s/ld /$(tc-getLD) /" makefile.u || die
-}
-
-src_compile() {
- emake \
- -f makefile.u \
- libf2c.so \
- CFLAGS="${CFLAGS} -fPIC" \
- CC="$(tc-getCC)"
-
- # Clean up files so we can recompile without PIC for the static lib
- if use static-libs; then
- rm *.o || die "clean failed"
- emake \
- -f makefile.u \
- all \
- CFLAGS="${CFLAGS}" \
- CC="$(tc-getCC)"
- fi
-}
-
-src_install () {
- dolib libf2c.so.2
- dosym libf2c.so.2 /usr/$(get_libdir)/libf2c.so
- use static-libs && dolib.a libf2c.a
- insinto /usr/include
- doins f2c.h
- dodoc README Notice
-}