blob: c4fb8b8b88949088e8ab2287ec707985e13471e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/mkinitrd/mkinitrd-4.2.0.3-r1.ebuild,v 1.2 2010/04/16 15:23:12 ranger Exp $
inherit eutils flag-o-matic toolchain-funcs
DESCRIPTION="Tools for creating initrd images"
HOMEPAGE="http://www.redhat.com/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ppc ~sparc ~x86"
IUSE="selinux"
DEPEND="dev-libs/popt
virtual/os-headers"
RDEPEND="app-shells/bash"
PDEPEND="selinux? ( sys-apps/policycoreutils )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-glibc-2.10.patch
# bug 29694 -- Change vgwrapper to static vgscan and vgchange
epatch "${FILESDIR}"/mkinitrd-lvm_statics.diff
sed -i \
-e '/^CFLAGS/s: -Werror::' \
-e '/^CFLAGS/s: -g::' \
-e '/^CFLAGS/s:=:+=:' \
grubby/Makefile nash/Makefile
}
src_compile() {
if has_version ">=sys-libs/glibc-2.10"; then
append-flags -Dstrndup=strndup
fi
emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" -C nash || die "nash compile failed."
emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" -C grubby|| die "grubby compile failed."
}
src_install() {
into /
dosbin grubby/grubby nash/nash mkinitrd || die
doman grubby/grubby.8 nash/nash.8 mkinitrd.8
}
|