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

Collapse All | Expand All

(-)a/dev-libs/lzo/lzo-2.04.ebuild (+17 lines)
Lines 5-8 Link Here
5
EAPI=2
5
EAPI=2
6
6
7
WANT_AUTOCONF=2.5
8
9
inherit autotools eutils
10
7
DESCRIPTION="An extremely fast compression and decompression library"
11
DESCRIPTION="An extremely fast compression and decompression library"
8
HOMEPAGE="http://www.oberhumer.com/opensource/lzo/"
12
HOMEPAGE="http://www.oberhumer.com/opensource/lzo/"
Lines 14-17 Link Here
14
IUSE="examples static-libs"
18
IUSE="examples static-libs"
15
19
20
RDEPEND=""
21
DEPEND=">=sys-devel/autoconf-2.67"
22
23
src_prepare() {
24
	epatch "${FILESDIR}"/${P}-asm-makefile.patch
25
26
	# lzo has some weird sort of mfx_* set of autoconf macros which may
27
	# only be distributed with lzo itself? Rescue them and place them
28
	# into acinclude.m4 because there doesn't seem to be an m4/...
29
	sed -n -e '/^AC_DEFUN.*mfx_/,/^])#$/p' aclocal.m4 > acinclude.m4 || die "Unable to rescue mfx_* autoconf macros."
30
	eautoreconf
31
}
32
16
src_configure() {
33
src_configure() {
17
	econf \
34
	econf \

Return to bug 360385