blob: 1564fcd6362729680e6f3a6ce48d389384d64928 (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Automatation for common tasks around gentoo server upkeep"
HOMEPAGE="https://github.com/lmiphay/gentoo-oam"
SRC_URI="https://github.com/lmiphay/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
RESTRICT="mirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+lnav +ranger"
RDEPEND="
app-admin/eclean-kernel
lnav? ( app-admin/lnav )
app-admin/logrotate
ranger? ( app-misc/ranger )
app-portage/eix
app-portage/genlop
app-portage/gentoolkit
app-portage/portage-utils
app-text/multitail
dev-lang/perl
sys-apps/moreutils[perl]
sys-fs/inotify-tools
"
DEPEND="${RDEPEND}
"
DOCS="README.md"
|