blob: 38a7da82b8d46b272169b9b08a2bfa9ac78f5635 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libf2c/libf2c-20021004.ebuild,v 1.10 2004/06/30 22:19:00 kugelfang Exp $
inherit gcc
DESCRIPTION="Library that converts FORTRAN to C source."
HOMEPAGE="ftp://ftp.netlib.org/f2c/index.html"
SRC_URI="ftp://ftp.netlib.org/f2c/${PN}.zip"
LICENSE="libf2c"
SLOT="0"
KEYWORDS="x86 -amd64"
DEPEND="virtual/glibc"
S=${WORKDIR}/${PN}
src_compile() {
emake -f makefile.u \
CFLAGS="${CFLAGS}" \
CC="$(gcc-getCC)" \
|| die
}
src_install () {
dolib.a libf2c.a
insinto /usr/include
doins f2c.h
dodoc README Notice
}
|