blob: a1fd0d0376c2398f5bf104c17ba66ae94c8cbbb5 (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/blas-atlas/blas-atlas-3.7.15.ebuild,v 1.4 2006/08/30 01:32:45 markusle Exp $
inherit eutils toolchain-funcs fortran
DESCRIPTION="Automatically Tuned Linear Algebra Software BLAS implementation"
HOMEPAGE="http://math-atlas.sourceforge.net/"
MY_PN=${PN/blas-/}
SRC_URI="mirror://sourceforge/math-atlas/${MY_PN}${PV}.tar.bz2
mirror://gentoo/${MY_PN}-${PV}-shared-libs.patch.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="doc"
RDEPEND="app-admin/eselect-blas
app-admin/eselect-cblas"
DEPEND="${RDEPEND}
>=sys-devel/libtool-1.5"
PROVIDE="virtual/blas"
S="${WORKDIR}/ATLAS"
BLD_DIR="${S}/gentoo-build"
RPATH="${DESTTREE}/$(get_libdir)/blas"
FORTRAN="g77 gfortran"
pkg_setup() {
fortran_pkg_setup
echo
ewarn "Please make sure to disable CPU throttling completely"
ewarn "during the compile of blas-atlas. Otherwise, all atlas"
ewarn "generated timings will be completely random and the"
ewarn "performance of the resulting libraries will be degraded"
ewarn "considerably."
echo
epause 8
}
src_unpack() {
unpack ${A}
cd ${S}
epatch "${DISTDIR}"/${MY_PN}-${PV}-shared-libs.patch.bz2
# make sure shared libs link against proper libraries
if [[ ${FORTRANC} == "gfortran" ]]; then
libs="${LDFLAGS} -lpthread -lgfortran"
else
libs="${LDFLAGS} -lpthread -lg2c"
fi
sed -e "s/SHRD_LNK/${libs}/g" -i Make.top || \
die "Failed to add addtional libs to shared object build"
mkdir ${BLD_DIR} || die "failed to generate build directory"
cp "${FILESDIR}"/war ${BLD_DIR} && chmod a+x ${BLD_DIR}/war || \
die "failed to install war"
cd ${BLD_DIR} && ../configure -Si cputhrchk 0 \
|| die "configure failed"
sed -e "s:GENTOO_GCC:$(tc-getCC):" \
-e "s:GENTOO_FORTRAN:${FORTRANC}:" \
-e "s:GENTOO_CFLAGS:${CFLAGS}:" \
-e "s:GENTOO_FFLAGS:${FFLAGS}:" \
-i Make.inc || die "Failed to fix Make.inc"
}
src_compile() {
cd ${BLD_DIR}
make || die "make failed"
make shared-strip RPATH=${RPATH}/atlas || \
die "failed to build shared libraries"
# build shared libraries of threaded libraries if applicable
if [ -d gentoo/libptf77blas.a ]; then
make ptshared-strip RPATH=${RPATH}/threaded-atlas || \
die "failed to build threaded shared libraries"
fi
}
src_install () {
dodir "${RPATH}"/atlas
cd ${BLD_DIR}/gentoo/libs
cp -P libatlas* "${D}/${DESTTREE}/$(get_libdir)" || \
die "Failed to install libatlas"
cp -P *blas* "${D}/${RPATH}"/atlas || \
die "Failed to install blas/cblas"
eselect blas add $(get_libdir) ${FILESDIR}/eselect.blas atlas
eselect cblas add $(get_libdir) ${FILESDIR}/eselect.cblas atlas
if [ -d ${BLD_DIR}/gentoo/threaded-libs ]
then
dodir "${RPATH}"/threaded-atlas
cd ${BLD_DIR}/gentoo/threaded-libs
cp -P * "${D}/${RPATH}"/threaded-atlas || \
die "Failed to install threaded atlas"
eselect blas add $(get_libdir) ${FILESDIR}/eselect.blas-threaded threaded-atlas
eselect cblas add $(get_libdir) ${FILESDIR}/eselect.cblas-threaded threaded-atlas
fi
insinto "${DESTTREE}"/include/atlas
doins "${S}"/include/cblas.h "${S}"/include/atlas_misc.h \
"${S}"/include/atlas_enum.h || \
die "failed to install headers"
# These headers contain the architecture-specific
# optimizations determined by ATLAS. The atlas-lapack build
# is much shorter if they are available, so save them:
doins ${BLD_DIR}/include/*.h || \
die "failed to install timing headers"
#some docs
cd "${S}"
dodoc README doc/{AtlasCredits.txt,ChangeLog}
use doc && dodoc doc/*.ps
}
pkg_postinst() {
local THREADED
if [ -d "${RPATH}"/threaded-atlas ]
then
THREADED="threaded-"
fi
if [[ -z "$(eselect blas show)" ]]; then
eselect blas set ${THREADED}atlas
fi
if [[ -z "$(eselect cblas show)" ]]; then
eselect cblas set ${THREADED}atlas
fi
elog
elog "Fortran users link using -lblas"
elog
elog "C users compile against the header ${ROOT}usr/include/atlas/cblas.h and"
elog "link using -lcblas"
elog
elog "If using threaded ATLAS, you may also need to link with -lpthread."
elog
elog "Configuration now uses eselect rather than blas-config."
}
|