blob: ac1c04c5767ddfbbbf369bcebaae65730211ef29 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/cfortran/cfortran-4.4-r2.ebuild,v 1.7 2009/03/20 13:59:10 ranger Exp $
inherit eutils
DEB_PR="13"
DESCRIPTION="Header file allowing to call Fortran routines from C and C++"
SRC_URI="mirror://debian/pool/main/c/${PN}/${PN}_${PV}.orig.tar.gz
mirror://debian/pool/main/c/${PN}/${PN}_${PV}-${DEB_PR}.diff.gz"
HOMEPAGE="http://www-zeus.desy.de/~burow/cfortran/"
KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86"
LICENSE="LGPL-2"
IUSE="examples"
SLOT="0"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${WORKDIR}"/${PN}_${PV}-${DEB_PR}.diff
if use examples; then
tar xfz cfortran.examples.tar.gz
mv eg examples
ln -sfn sz1.c examples/sz1/sz1.C
ln -sfn pz.c examples/pz/pz.C
fi
}
src_install() {
insinto /usr/include/cfortran
doins cfortran.h || die
dosym cfortran/cfortran.h /usr/include/cfortran.h || die
dodoc cfortran.doc debian/{NEWS,changelog,copyright}
insinto /usr/share/doc/${PF}
doins cfortran.html index.htm cfortest.c cfortex.f
use examples && doins -r examples
}
|