mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-21 22:53:31 +02:00
Closes: https://bugs.gentoo.org/944304 Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org> Part-of: https://github.com/gentoo/gentoo/pull/42613 Closes: https://github.com/gentoo/gentoo/pull/42613 Signed-off-by: Sam James <sam@gentoo.org>
45 lines
919 B
Bash
45 lines
919 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit systemd toolchain-funcs
|
|
|
|
DESCRIPTION="A simple, fast work queue"
|
|
HOMEPAGE="https://kr.github.io/beanstalkd/"
|
|
SRC_URI="https://github.com/beanstalkd/beanstalkd/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64 ~mips ~x86 ~amd64-linux ~x64-macos"
|
|
|
|
RDEPEND="
|
|
acct-group/beanstalk
|
|
acct-user/beanstalk
|
|
"
|
|
|
|
DOCS=( README News docs/protocol.txt )
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-gcc15.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
sed -e "/override/d" -i Makefile || die
|
|
}
|
|
|
|
src_compile() {
|
|
emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" LD="$(tc-getLD)"
|
|
}
|
|
|
|
src_install() {
|
|
dobin beanstalkd
|
|
|
|
doman doc/"${PN}".1
|
|
|
|
newconfd "${FILESDIR}/conf-1.9" beanstalkd
|
|
newinitd "${FILESDIR}/init-1.9" beanstalkd
|
|
|
|
systemd_dounit "${S}/adm/systemd/${PN}".{service,socket}
|
|
}
|