blob: 066ea3ca26ea4040e90882aa470b2ee8b3e3182e (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
CMAKE_MAKEFILE_GENERATOR=emake
inherit cmake-utils eutils flag-o-matic fortran-2 toolchain-funcs
MY_P1="CBFlib-${PV}"
#MY_P2="CBFlib_${PV}"
MY_P2="CBFlib_0.9.3"
DESCRIPTION="Library providing a simple mechanism for accessing CBF files and imgCIF files"
HOMEPAGE="http://www.bernstein-plus-sons.com/software/CBF/"
BASE_TEST_URI="http://arcib.dowling.edu/software/CBFlib/downloads/version_${PV}/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P1}.tar.gz"
# test? (
# mirror://sourceforge/${PN}/${MY_P2}_Data_Files_Input.tar.gz
# mirror://sourceforge/${PN}/${MY_P2}_Data_Files_Output.tar.gz
# )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
IUSE="doc test"
S=${WORKDIR}/${MY_P1}
RDEPEND="sci-libs/hdf5:="
DEPEND="${RDEPEND}"
RESTRICT="test"
PATCHES=(
"${FILESDIR}"/${P}-unbundle.patch
)
src_prepare(){
rm -rf Py* drel* dRel* ply* || die
append-fflags -fno-range-check
tc-export CC CXX AR RANLIB FC F77
cmake-utils_src_prepare
}
src_configure() {
local mycmakeargs=(
-DUNPACKED_DIRECTORY="${S}"
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
dosym ${PN} /usr/include/cbf
}
|