blob: f8be35f2d9c3af63d71e5b4f12195b4bc018b4ea (
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
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Runs a command as a Unix daemon"
HOMEPAGE="https://software.clapper.org/daemonize/"
SRC_URI="https://github.com/bmc/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-release-${PV}"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 x86"
DOCS=( {CHANGELOG,README}.md )
PATCHES=(
"${FILESDIR}"/${PN}-1.7.8-c23.patch
)
src_prepare() {
default
sed -i \
-e 's:\($(CC)\) $(CFLAGS) \(.*\.o\):\1 $(LDFLAGS) \2:' \
Makefile.in || die
}
|