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

Collapse All | Expand All

(-)module-init-tools-3.11.ebuild.orig (-4 / +6 lines)
Lines 2-8 Link Here
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/sys-apps/module-init-tools/module-init-tools-3.11.ebuild,v 1.1 2009/10/16 06:36:28 vapier Exp $
3
# $Header: /var/cvsroot/gentoo-x86/sys-apps/module-init-tools/module-init-tools-3.11.ebuild,v 1.1 2009/10/16 06:36:28 vapier Exp $
4
4
5
inherit eutils
5
inherit eutils autotools
6
6
7
DESCRIPTION="tools for managing linux kernel modules"
7
DESCRIPTION="tools for managing linux kernel modules"
8
HOMEPAGE="http://kerneltools.org/"
8
HOMEPAGE="http://kerneltools.org/"
Lines 11-17 Link Here
11
LICENSE="GPL-2"
11
LICENSE="GPL-2"
12
SLOT="0"
12
SLOT="0"
13
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
13
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
14
IUSE=""
14
IUSE="doc"
15
15
16
DEPEND="sys-libs/zlib
16
DEPEND="sys-libs/zlib
17
	>=sys-apps/baselayout-2.0.1
17
	>=sys-apps/baselayout-2.0.1
Lines 22-28 Link Here
22
	unpack ${A}
22
	unpack ${A}
23
	cd "${S}"
23
	cd "${S}"
24
	epatch "${FILESDIR}"/${PN}-3.2.2-handle-dupliate-aliases.patch #149426
24
	epatch "${FILESDIR}"/${PN}-3.2.2-handle-dupliate-aliases.patch #149426
25
	touch *.5 *.8 # dont regen manpages
25
	epatch "${FILESDIR}"/${PN}-3.11-with-doc.patch #289278
26
	eautoreconf || die "eautoreconf failed"
26
}
27
}
27
28
28
src_compile() {
29
src_compile() {
Lines 30-36 Link Here
30
		--prefix=/ \
31
		--prefix=/ \
31
		--enable-zlib \
32
		--enable-zlib \
32
		--enable-zlib-dynamic \
33
		--enable-zlib-dynamic \
33
		--disable-static-utils
34
		--disable-static-utils \
35
		$(use_with doc)
34
	emake || die "emake module-init-tools failed"
36
	emake || die "emake module-init-tools failed"
35
}
37
}
36
38

Return to bug 289278