blob: 1942833286e99c402931f29c6405643578c7a43e (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="2"
inherit eutils autotools
DESCRIPTION="Fedora bootstrap scripts"
HOMEPAGE="https://people.redhat.com/~rjones/febootstrap/"
SRC_URI="https://people.redhat.com/~rjones/febootstrap/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=sys-apps/fakeroot-1.11
>=sys-apps/fakechroot-2.9
dev-lang/perl
>=sys-apps/yum-3.2.21
sys-fs/e2fsprogs
sys-libs/e2fsprogs-libs"
RDEPEND="${DEPEND}"
QA_EXECSTACK="usr/bin/febootstrap-supermin-helper"
src_prepare() {
# https://lists.gnu.org/archive/html/grub-devel/2012-07/msg00051.html
sed -i -e '/gets is a security/d' lib/stdio.in.h
epatch "${FILESDIR}"/remove_all-static.patch
eautoreconf
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc TODO README examples/*.sh || die
}
|