From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- dev-util/ftnchek/Manifest | 1 + dev-util/ftnchek/ftnchek-3.3.1-r1.ebuild | 42 ++++++++++++++++++++++++++++++++ dev-util/ftnchek/metadata.xml | 7 ++++++ 3 files changed, 50 insertions(+) create mode 100644 dev-util/ftnchek/Manifest create mode 100644 dev-util/ftnchek/ftnchek-3.3.1-r1.ebuild create mode 100644 dev-util/ftnchek/metadata.xml (limited to 'dev-util/ftnchek') diff --git a/dev-util/ftnchek/Manifest b/dev-util/ftnchek/Manifest new file mode 100644 index 000000000000..9689477d1384 --- /dev/null +++ b/dev-util/ftnchek/Manifest @@ -0,0 +1 @@ +DIST ftnchek-3.3.1.tar.gz 1048638 SHA256 d92212dc0316e4ae711f7480d59e16095c75e19aff6e0095db2209e7d31702d4 SHA512 14c698a6d936ffcd1966822f3b307fc2a70ffd5d58dcff27e10a9491562cff12ef75d98c0e67a7053e106df4f6b4d920e8164950778c5e13e7c15543fa2ecc41 WHIRLPOOL bab1d6e4b0214bb99d55aa4e4964d7fbf03b070e51aeb306204d62ab97220edb36792aa7333fff3779dd459ccd7db68dcd1d36982c7aa962d4dea0f636f76bda diff --git a/dev-util/ftnchek/ftnchek-3.3.1-r1.ebuild b/dev-util/ftnchek/ftnchek-3.3.1-r1.ebuild new file mode 100644 index 000000000000..8347727de84d --- /dev/null +++ b/dev-util/ftnchek/ftnchek-3.3.1-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="2" + +inherit autotools + +DESCRIPTION="Static analyzer a la 'lint' for Fortran 77" +HOMEPAGE="http://www.dsm.fordham.edu/~ftnchek/" +SRC_URI="http://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} +} diff --git a/dev-util/ftnchek/metadata.xml b/dev-util/ftnchek/metadata.xml new file mode 100644 index 000000000000..d9cd2cad66c2 --- /dev/null +++ b/dev-util/ftnchek/metadata.xml @@ -0,0 +1,7 @@ + + + + +maintainer-needed@gentoo.org + + -- cgit v1.2.3-65-gdbad