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

Collapse All | Expand All

(-)/usr/portage/sci-libs/gsl/gsl-1.8.ebuild (-7 / +5 lines)
Lines 14-24 Link Here
14
IUSE=""
14
IUSE=""
15
15
16
DEPEND=""
16
DEPEND=""
17
RDEPEND=""
17
18
18
src_unpack() {
19
src_unpack() {
19
	unpack ${A}
20
	unpack ${A}
20
	cd "${S}"
21
	cd "${S}"
21
	epatch "${FILESDIR}"/gsl-1.6-deps.diff
22
	epatch "${FILESDIR}"/gsl-1.6-deps.diff
23
	epatch "${FILESDIR}"/${P}-tests.patch
22
	eautoreconf
24
	eautoreconf
23
}
25
}
24
26
Lines 26-40 Link Here
26
	replace-cpu-flags k6 k6-2 k6-3 i586
28
	replace-cpu-flags k6 k6-2 k6-3 i586
27
	filter-flags -ffast-math
29
	filter-flags -ffast-math
28
30
29
	econf --disable-libtool-lock || die
31
	econf --disable-libtool-lock || die "econf failed"
30
	emake || die 'emake failed.'
32
	emake || die "emake failed"
31
}
32
33
src_test() {
34
	make check || die 'make check failed.'
35
}
33
}
36
34
37
src_install() {
35
src_install() {
38
	einstall || die 'einstall failed.'
36
	emake DESTDIR="${D}" install || die "emake install failed"
39
	dodoc AUTHORS BUGS ChangeLog INSTALL NEWS README SUPPORT THANKS TODO
37
	dodoc AUTHORS BUGS ChangeLog INSTALL NEWS README SUPPORT THANKS TODO
40
}
38
}

Return to bug 170919