summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2019-03-07 20:42:23 +0300
committerMikle Kolyada <zlogene@gentoo.org>2019-03-07 20:42:23 +0300
commitba85cf889b56a11f004065d335d741bab218d147 (patch)
tree3115956a2653277abae16a4d58ee4265f7537176
parentdev-util/ftnchek: x86 stable wrt bug #679470 (diff)
downloadgentoo-ba85cf889b56a11f004065d335d741bab218d147.tar.gz
gentoo-ba85cf889b56a11f004065d335d741bab218d147.tar.bz2
gentoo-ba85cf889b56a11f004065d335d741bab218d147.zip
dev-util/ftnchek: Drop old
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
-rw-r--r--dev-util/ftnchek/ftnchek-3.3.1-r1.ebuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/dev-util/ftnchek/ftnchek-3.3.1-r1.ebuild b/dev-util/ftnchek/ftnchek-3.3.1-r1.ebuild
deleted file mode 100644
index 9ef2be707e2d..000000000000
--- a/dev-util/ftnchek/ftnchek-3.3.1-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit autotools
-
-DESCRIPTION="Static analyzer a la 'lint' for Fortran 77"
-HOMEPAGE="https://www.dsm.fordham.edu/~ftnchek/"
-SRC_URI="https://www.dsm.fordham.edu/~${PN}/download/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
-IUSE=""
-
-src_prepare() {
- #1 Do not strip
- #2 CFLAGS is used internally, so append to it
- sed -i Makefile.in \
- -e '/-$(STRIP)/d' \
- -e 's|CFLAGS\([[:space:]]*\)=|CFLAGS\1+=|' \
- || die "sed Makefile.in"
-
- #1 Respect CFLAGS
- #2 Respect LDFLAGS
- sed -i configure.in \
- -e 's|OPT=".*"|OPT=""|g' \
- -e '/^LDFLAGS=/d' \
- || die "sed configure.in"
-
- eautoreconf
-}
-
-src_install() {
- einstall || die
- dodoc FAQ PATCHES README ToDo
- dohtml html/*
- dodir /usr/share/${PN}
- cp -r test "${D}"/usr/share/${PN}
-}