Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 765754
Collapse All | Expand All

(-)a/sys-devel/slibtool/slibtool-0.5.28.ebuild (-1 / +7 lines)
Lines 3-8 Link Here
3
3
4
EAPI=7
4
EAPI=7
5
5
6
inherit toolchain-funcs
7
6
DESCRIPTION="A skinny libtool implementation, written in C"
8
DESCRIPTION="A skinny libtool implementation, written in C"
7
HOMEPAGE="https://git.midipix.org/cgit.cgi/slibtool"
9
HOMEPAGE="https://git.midipix.org/cgit.cgi/slibtool"
8
SRC_URI="https://git.midipix.org/cgit.cgi/${PN}/snapshot/${P}.tar.xz"
10
SRC_URI="https://git.midipix.org/cgit.cgi/${PN}/snapshot/${P}.tar.xz"
Lines 12-16 SLOT="0" Link Here
12
KEYWORDS="~amd64 ~arm"
14
KEYWORDS="~amd64 ~arm"
13
15
14
src_configure() {
16
src_configure() {
15
	./configure --host=${CHOST} --prefix="${EPREFIX}"/usr || die
17
	./configure \
18
		--compiler=$(tc-getCC) \
19
		--host=${CHOST} \
20
		--prefix="${EPREFIX}"/usr \
21
			|| die
16
}
22
}
(-)a/sys-devel/slibtool/slibtool-0.5.31.ebuild (-1 / +7 lines)
Lines 3-8 Link Here
3
3
4
EAPI=7
4
EAPI=7
5
5
6
inherit toolchain-funcs
7
6
DESCRIPTION="A skinny libtool implementation, written in C"
8
DESCRIPTION="A skinny libtool implementation, written in C"
7
HOMEPAGE="https://git.midipix.org/cgit.cgi/slibtool"
9
HOMEPAGE="https://git.midipix.org/cgit.cgi/slibtool"
8
SRC_URI="https://git.midipix.org/cgit.cgi/${PN}/snapshot/${P}.tar.xz"
10
SRC_URI="https://git.midipix.org/cgit.cgi/${PN}/snapshot/${P}.tar.xz"
Lines 13-17 KEYWORDS="~amd64 ~arm" Link Here
13
15
14
src_configure() {
16
src_configure() {
15
	# custom configure script (not generated by autoconf)
17
	# custom configure script (not generated by autoconf)
16
	./configure --host=${CHOST} --prefix="${EPREFIX}"/usr || die
18
	./configure \
19
		--compiler=$(tc-getCC) \
20
		--host=${CHOST} \
21
		--prefix="${EPREFIX}"/usr \
22
			|| die
17
}
23
}
(-)a/sys-devel/slibtool/slibtool-9999.ebuild (-1 / +7 lines)
Lines 3-8 Link Here
3
3
4
EAPI=7
4
EAPI=7
5
5
6
inherit toolchain-funcs
7
6
DESCRIPTION="A skinny libtool implementation, written in C"
8
DESCRIPTION="A skinny libtool implementation, written in C"
7
HOMEPAGE="https://git.midipix.org/cgit.cgi/slibtool"
9
HOMEPAGE="https://git.midipix.org/cgit.cgi/slibtool"
8
if [[ "${PV}" == *9999 ]] ; then
10
if [[ "${PV}" == *9999 ]] ; then
Lines 17-21 SLOT="0" Link Here
17
19
18
src_configure() {
20
src_configure() {
19
	# custom configure script (not generated by autoconf)
21
	# custom configure script (not generated by autoconf)
20
	./configure --host=${CHOST} --prefix="${EPREFIX}"/usr || die
22
	./configure \
23
		--compiler=$(tc-getCC) \
24
		--host=${CHOST} \
25
		--prefix="${EPREFIX}"/usr \
26
			|| die
21
}
27
}

Return to bug 765754