blob: 7e615c59c184bc2ca7616f0363d3175f5cf2fc6c (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="3"
inherit eutils toolchain-funcs
MY_PV=${PV//_p/-}
MY_P=${PN}-${MY_PV}
DESCRIPTION="Resource-specific view of processes"
HOMEPAGE="https://www.atoptool.nl/"
SRC_URI="https://www.atoptool.nl/download/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm hppa ~mips ppc ~ppc64 x86"
IUSE=""
DEPEND="sys-process/acct"
S=${WORKDIR}/${MY_P}
src_prepare() {
sed -i \
-e '/^CFLAGS/s: = -O : += :' \
-e '/^LDFLAGS/s: = : += :' \
-e 's:\<cc\>:$(CC):' \
Makefile
tc-export CC
cp "${FILESDIR}"/atop.rc atop.init
chmod a+rx atop.init
sed -i 's: root : :' atop.cron #191926
}
src_install() {
emake DESTDIR="${D}" INIPATH=/etc/init.d install || die
# useless -${PV} copies ?
rm -f "${D}"/usr/bin/atop*-${PV}
dodoc README "${D}"/etc/cron.d/*
rm -r "${D}"/etc/cron.d || die
}
|