blob: 52d5c91cc8cdb580a435e999920148242e275c04 (
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
61
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/xfoil/xfoil-6.94-r1.ebuild,v 1.5 2004/07/13 20:41:51 agriffis Exp $
inherit gcc
MY_PN="${PN}"
MY_PV="${PV/./}"
MY_P="${MY_PN}${MY_PV}"
DESCRIPTION="design and analysis of subsonic isolated airfoils"
HOMEPAGE="http://raphael.mit.edu/xfoil/"
SRC_URI="http://raphael.mit.edu/xfoil/${MY_P}.tar.gz
doc? ( http://raphael.mit.edu/xfoil/xfoil_doc.ps
http://raphael.mit.edu/xfoil/xfoil_doc.pdf )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc"
DEPEND="virtual/blas
app-sci/blas-config
virtual/x11"
RDEPEND="virtual/x11"
S=${WORKDIR}/XFOIL${MY_PV}
src_unpack() {
unpack ${A}
cd ${S}
[ -z "$FC" ] && FC=g77 # because gcc-config doesn't do it yet
[ -z "${FFLAGS}" ] && FFLAGS="${CFLAGS}" # because gcc-config doesn't do it yet
echo "CC = $(gcc-getCC)" >>plotlib/config.make
echo "FC = ${FC}" >>plotlib/config.make
echo "CFLAGS += ${CFLAGS}" >>plotlib/config.make
echo "FFLAGS += ${FFLAGS}" >>plotlib/config.make
sed -i bin/Makefile \
-e "s/^\(FC.*\)/FC = ${FC}/g" \
-e "s/^\(CC.*\)/CC = $(gcc-getCC)/g" \
-e "s/^\(FFLAGS .*\)/FFLAGS = ${FFLAGS}/g" \
-e "s/^\(FFLOPT .*\)/FFLOPT = \$(FFLAGS)/g" \
-e "s/^\(FFLAGS2 .*\)/FFLAGS2 = \$(FFLAGS)/g"
}
src_compile() {
cd ${S}/plotlib
emake || die "failed to build plotlib"
cd ${S}/bin
for i in xfoil pplot pxplot; do
emake ${i} || die "failed to build ${i}"
done
}
src_install() {
dobin bin/pplot bin/pxplot bin/xfoil
dodoc version_notes.txt xfoil_doc.txt sessions.txt README
use doc && dodoc ${DISTDIR}/xfoil_doc.ps ${DISTDIR}/xfoil_doc.pdf
docinto runs
dodoc runs/*
}
|