blob: 1bb0c207cf822f8bc76066f5b6a048281178c66f (
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
|
# 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() {
dosbin ${PN} || die "dosbin failed"
}
|