blob: a7024bb3e8f2d1589963fc31b0f32d39c888d4e6 (
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
62
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit fortran versionator
MY_P="${PN}_$(replace_version_separator 2 '-')"
DESCRIPTION="The CFD General Notation System (CGNS) is a standard for CFD data."
HOMEPAGE="http://www.cgns.org/"
SRC_URI="mirror://sourceforge/cgns/${MY_P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="fortran hdf5 szip zlib"
RDEPEND="hdf5? ( sci-libs/hdf5 )
zlib? ( sys-libs/zlib )
szip? ( sci-libs/szip )"
DEPEND="${RDEPEND}"
MY_S="${PN}_$(get_version_component_range 1-2)"
S="${WORKDIR}"/"${MY_S}"
src_compile() {
if use fortran ; then
need_fortran gfortran
sed -i -e "s| g77 | gfortran |" "${S}"/configure
fi
sed -i -e 's|-Wl,-rpath,$cgnsdir/\\$(SYSTEM)|-Wl,-soname,libcgns.so|' \
-e 's|-Wl,-R,$cgnsdir/\\$(SYSTEM)|-Wl,-soname,libcgns.so|' "${S}"/configure
sed -i -e "s|@STRIP@|true|" "${S}"/make.defs.in
local myconf="--enable-gcc --enable-lfs --enable-shared"
use amd64 && myconf="${myconf} --enable-64bit"
econf \
${myconf} \
$(use_with fortran) \
$(use_with hdf5) \
$(use_with zlib) \
$(use_with szip)
emake || die "emake failed"
}
src_install() {
if use amd64 ; then
local machine=`${S}/cgsystem -64`
else
local machine=`${S}/cgsystem`
fi
dolib "${S}"/"${machine}"/*.so || die "*.so install failed"
dobin "${S}"/"${machine}"/hdf2adf || die "hdf2adf install failed"
dobin "${S}"/"${machine}"/adf2hdf || die "adf2hdf install failed"
insinto /usr/include
doins cgnslib.h cgnslib_f.h cgnswin_f.h
}
|