blob: fc29c136458b22650ed5557f351bf1c804f0ea18 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/dsdp/dsdp-5.8.ebuild,v 1.2 2011/03/14 17:22:50 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="${HOMEPAGE}/${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
# 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/share/doc/${PF}
use doc && dodoc docs/*.pdf
use examples && doins -r examples
}
|