blob: 511f42d9f6a7cd4b15a8898f16b6f410bb078640 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="3"
inherit eutils
DESCRIPTION="a wrapper script for emerge to make it better"
HOMEPAGE="https://github.com/write2david/bemerge"
SRC_URI="https://github.com/write2david/bemerge/raw/master/bemerge"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~x86"
IUSE=""
RDEPEND="
sys-process/time
app-admin/localepurge
sys-kernel/module-rebuild
sys-process/lsof
app-admin/checkrestart
"
src_install() {
mkdir "${D}"/usr/bin/
cp "${DISTDIR}"/bemerge "${D}"/usr/bin/
dosbin bemerge || die "dosbin failed"
}
|