summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-11-06 10:33:24 +0100
committerMichał Górny <mgorny@gentoo.org>2019-11-06 10:33:24 +0100
commit8271f9d5a6ae102e197f58c87e9555e54bf50ea1 (patch)
tree0b7c74484991117dc851a9b496744f7c9a52cd0a
parentdev-libs/luise-bin: Drop old (EAPI 0) (diff)
downloadgentoo-8271f9d5a6ae102e197f58c87e9555e54bf50ea1.tar.gz
gentoo-8271f9d5a6ae102e197f58c87e9555e54bf50ea1.tar.bz2
gentoo-8271f9d5a6ae102e197f58c87e9555e54bf50ea1.zip
dev-lang/cfortran: Drop old (EAPI 0)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--dev-lang/cfortran/cfortran-4.4-r2.ebuild39
1 files changed, 0 insertions, 39 deletions
diff --git a/dev-lang/cfortran/cfortran-4.4-r2.ebuild b/dev-lang/cfortran/cfortran-4.4-r2.ebuild
deleted file mode 100644
index 6b13ce659408..000000000000
--- a/dev-lang/cfortran/cfortran-4.4-r2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils
-
-DEB_PR="14"
-
-DESCRIPTION="Header file allowing to call Fortran routines from C and C++"
-SRC_URI="mirror://debian/pool/main/c/${PN}/${PN}_${PV}.orig.tar.gz
- mirror://debian/pool/main/c/${PN}/${PN}_${PV}-${DEB_PR}.diff.gz"
-HOMEPAGE="https://www-zeus.desy.de/~burow/cfortran/"
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x86-macos"
-LICENSE="LGPL-2"
-IUSE="examples"
-SLOT="0"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${WORKDIR}"/${PN}_${PV}-${DEB_PR}.diff
- if use examples; then
- tar xfz cfortran.examples.tar.gz
- mv eg examples
- ln -sfn sz1.c examples/sz1/sz1.C
- ln -sfn pz.c examples/pz/pz.C
- fi
-}
-
-src_install() {
- insinto /usr/include/cfortran
- doins cfortran.h || die
- dosym cfortran/cfortran.h /usr/include/cfortran.h || die
- dodoc cfortran.doc debian/{NEWS,changelog,copyright}
- insinto /usr/share/doc/${PF}
- doins cfortran.html index.htm cfortest.c cfortex.f
- use examples && doins -r examples
-}