blob: 4e2741b75176f95f291dac7aebd24f5430369f37 (
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-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Run cronjobs with overrun protection"
HOMEPAGE="http://www.unixwiz.net/tools/lockrun.html"
SRC_URI="https://downloads.uls.co.za/gentoo/lockrun/lockrun-${PV}.c.gz"
S="${WORKDIR}"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 ~hppa x86"
src_prepare() {
default
mv "${P}.c" "${PN}.c" || die
}
src_compile() {
emake CC="$(tc-getCC)" ${PN}
# The below tries to extract the first comment block from the source code
# which represents the official "readme" from the project. Delete first
# three lines, then everything from (including) the first comment close at
# the beginning of a line before removing ' *' from the beginning of the
# remaining lines.
sed '1,3 d; /^[[:space:]]*[*]\//,$ d; s/^ \*//' "${PN}.c" > README || die
}
src_install() {
dobin ${PN}
einstalldocs
}
|