From 5b01f597e54a568b0dcf74ce38d8bcf7468403b8 Mon Sep 17 00:00:00 2001 From: Filip Kobierski Date: Mon, 12 May 2025 13:45:07 +0200 Subject: [PATCH] sys-apps/daemonize: bump EAPI also - https HOMEPAGE - fix vairable order - remove empty IUSE - modernize DOCS assignmnt Signed-off-by: Filip Kobierski Part-of: https://github.com/gentoo/gentoo/pull/42054 Closes: https://github.com/gentoo/gentoo/pull/42054 Signed-off-by: Sam James --- sys-apps/daemonize/daemonize-1.7.8-r1.ebuild | 22 ++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 sys-apps/daemonize/daemonize-1.7.8-r1.ebuild diff --git a/sys-apps/daemonize/daemonize-1.7.8-r1.ebuild b/sys-apps/daemonize/daemonize-1.7.8-r1.ebuild new file mode 100644 index 0000000000000..09571668176a5 --- /dev/null +++ b/sys-apps/daemonize/daemonize-1.7.8-r1.ebuild @@ -0,0 +1,22 @@ +# 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 ) + +src_prepare() { + default + sed -i \ + -e 's:\($(CC)\) $(CFLAGS) \(.*\.o\):\1 $(LDFLAGS) \2:' \ + Makefile.in || die +}