blob: 644be4335de4ad3d39567aefa2bee25990a48176 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libf2c/libf2c-20090407-r1.ebuild,v 1.2 2010/05/11 10:58:13 jlec Exp $
EAPI=2
inherit toolchain-funcs eutils
DESCRIPTION="Library that converts FORTRAN to C source."
HOMEPAGE="ftp://ftp.netlib.org/f2c/index.html"
# copy this one and rename it on the gentoo mirrors
#SRC_URI="ftp://ftp.netlib.org/f2c/${PN}.zip"
SRC_URI="mirror://gentoo/${P}.zip"
LICENSE="libf2c"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="static-libs"
RDEPEND=""
DEPEND="${RDEPEND}
app-arch/unzip"
S="${WORKDIR}/${PN}"
src_prepare() {
epatch "${FILESDIR}"/20051004-add-ofiles-dep.patch
epatch "${FILESDIR}"/${PV}-link-shared-libf2c-correctly.patch
epatch "${FILESDIR}"/${PV}-main.patch
}
src_compile() {
emake \
-f makefile.u \
libf2c.so \
CFLAGS="${CFLAGS} -fPIC" \
CC="$(tc-getCC)" \
|| die "libf2c.so failed"
# 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)" \
|| die "all failed"
fi
}
src_install () {
dolib libf2c.so.2 || die "dolib failed"
dosym libf2c.so.2 /usr/$(get_libdir)/libf2c.so
if use static-libs; then
dolib.a libf2c.a || die "dolib.a failed"
fi
insinto /usr/include
doins f2c.h || die "f2c.h install failed"
dodoc README Notice || die "doc install failed"
}
|