Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 326537 | Differences between
and this patch

Collapse All | Expand All

(-)lapack-atlas-3.8.0.ebuild (-7 / +13 lines)
Lines 35-46 Link Here
35
35
36
FORTRAN="g77 gfortran ifc"
36
FORTRAN="g77 gfortran ifc"
37
37
38
S="${WORKDIR}/ATLAS"
39
S_LAPACK="${WORKDIR}/${L_PN}-lite-${L_PV}"
40
BLD_DIR="${S}/gentoo-build"
41
RPATH="${DESTTREE}/$(get_libdir)/${L_PN}/${MY_PN}"
42
43
src_unpack() {
38
src_unpack() {
39
	S="${WORKDIR}/ATLAS"
40
	S_LAPACK="${WORKDIR}/${L_PN}-lite-${L_PV}"
41
	BLD_DIR="${S}/gentoo-build"
42
	RPATH="${DESTTREE}/$(get_libdir)/${L_PN}/${MY_PN}"
43
44
	unpack ${A}
44
	unpack ${A}
45
45
46
	cd "${S}"
46
	cd "${S}"
Lines 60-67 Link Here
60
60
61
	# force proper 32/64bit libs
61
	# force proper 32/64bit libs
62
	local archselect
62
	local archselect
63
	if use amd64 || use ppc64; then
63
	if use amd64 || use ppc64 || use sparc ; then
64
		archselect="-b 64"
64
		if [ ${ABI} = amd64 ] || [ ${ABI} = ppc64 ] || [ ${ABI} = sparc64 ] ; then
65
			archselect="-b 64"
66
		elif [ ${ABI} = x86 ] || [ ${ABI} = ppc ] || [ ${ABI} = sparc32 ] ; then
67
			archselect="-b 32"
68
		else
69
			archselect="-b 64"
70
		fi
65
	elif use alpha; then
71
	elif use alpha; then
66
		archselect=""
72
		archselect=""
67
	else
73
	else

Return to bug 326537