Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 678598
Collapse All | Expand All

(-)a/dev-util/ftnchek/ftnchek-3.3.1-r2.ebuild (+47 lines)
Line 0 Link Here
1
# Copyright 1999-2019 Gentoo Authors
2
# Distributed under the terms of the GNU General Public License v2
3
4
EAPI=7
5
6
inherit autotools
7
8
DESCRIPTION="Static analyzer a la 'lint' for Fortran 77"
9
HOMEPAGE="https://www.dsm.fordham.edu/~ftnchek/"
10
SRC_URI="https://www.dsm.fordham.edu/~${PN}/download/${P}.tar.gz"
11
12
LICENSE="MIT"
13
SLOT="0"
14
KEYWORDS="~amd64 ~ppc ~x86"
15
16
src_prepare() {
17
	default
18
	mv configure.{in,ac} || die
19
	mv dcl2inc.{man,1} || die
20
21
	#1 Do not strip
22
	#2 CFLAGS is used internally, so append to it
23
	sed -i Makefile.in \
24
		-e '/-$(STRIP)/d' \
25
		-e 's|CFLAGS\([[:space:]]*\)=|CFLAGS\1+=|' \
26
		|| die "sed Makefile.in"
27
28
	#1 Respect CFLAGS
29
	#2 Respect LDFLAGS
30
	sed -i configure.ac \
31
		-e 's|OPT=".*"|OPT=""|g' \
32
		-e '/^LDFLAGS=/d' \
33
		|| die "sed configure.ac"
34
35
	eautoreconf
36
}
37
38
src_install() {
39
	dobin ${PN} dcl2inc
40
	doman ${PN}.1 dcl2inc.1
41
	insinto /usr/share/${PN}
42
	doins dcl2inc.awk
43
	doins -r test
44
	dodoc FAQ PATCHES README ToDo
45
	docinto html
46
	dodoc -r html/*
47
}

Return to bug 678598