blob: efbf8e442c24ca9975ec4953accfef38a73bbb71 (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/dsdp/dsdp-5.8-r1.ebuild,v 1.1 2012/01/17 17:36:56 bicatali Exp $
EAPI=4
inherit eutils toolchain-funcs versionator
MYP=DSDP${PV}
DESCRIPTION="Software for interior-point for semidefinite programming"
HOMEPAGE="http://www.mcs.anl.gov/hs/software/DSDP/"
SRC_URI="http://www.mcs.anl.gov/hs/software/DSDP//${MYP}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples"
RDEPEND="virtual/lapack"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S="${WORKDIR}/${MYP}"
make_shared_lib() {
local soname=$(basename "${1%.a}").so.$(get_major_version)
einfo "Making ${soname}"
${2:-$(tc-getCC)} ${LDFLAGS} \
-shared -Wl,-soname="${soname}" \
-Wl,--whole-archive "${1}" -Wl,--no-whole-archive \
-o $(dirname "${1}")/"${soname}" || return 1
}
src_prepare() {
epatch \
"${FILESDIR}"/${P}-readsdpa.patch \
"${FILESDIR}"/${P}-gold.patch
# to do proper parallel compilation
find . -name Makefile -exec \
sed -i -e 's:make :$(MAKE) :g' '{}' \;
sed -i \
-e "s|#\(DSDPROOT[[:space:]]*=\).*|\1${S}|" \
-e "s|\(CC[[:space:]]*=\).*|\1$(tc-getCC)|" \
-e "s|\(OPTFLAGS[[:space:]]*=\).*|\1${CFLAGS}|" \
-e "s|\(CLINKER[[:space:]]*=\).*|\1 \${CC} ${LDFLAGS}|" \
-e "s|\(LAPACKBLAS[[:space:]]*=\).*|\1 $(pkg-config --libs blas lapack)|" \
-e "s|\(^ARCH[[:space:]]*=\).*|\1$(tc-getAR) cr|" \
-e "s|\(^RANLIB[[:space:]]*=\).*|\1$(tc-getRANLIB)|" \
make.include || die
}
src_compile() {
emake OPTFLAGS="${CFLAGS} -fPIC" dsdplibrary
make_shared_lib lib/lib${PN}.a || die "doing shared lib failed"
}
src_test() {
emake -j1 example test
}
src_install() {
dolib.so lib/lib${PN}.so.$(get_major_version)
dosym lib${PN}.so.$(get_major_version) /usr/$(get_libdir)/lib${PN}.so
insinto /usr/include
doins include/*.h src/sdp/*.h
use doc && dodoc docs/*.pdf
if use examples; then
insinto /usr/share/doc/${PF}
doins -r examples
fi
}
|