mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-06 13:15:19 +02:00
Closes: https://bugs.gentoo.org/911774 Closes: https://bugs.gentoo.org/942151 Signed-off-by: Sam James <sam@gentoo.org>
71 lines
1.5 KiB
Bash
71 lines
1.5 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit java-utils-2
|
|
|
|
MY_PN="zookeeper"
|
|
MY_P="${MY_PN}-${PV}"
|
|
|
|
DESCRIPTION="A high-performance coordination service for distributed applications"
|
|
HOMEPAGE="https://zookeeper.apache.org/"
|
|
SRC_URI="
|
|
https://downloads.apache.org/${MY_PN}/${MY_P}/apache-${MY_P}-bin.tar.gz -> ${P}.tar.gz
|
|
https://archive.apache.org/dist/${MY_PN}/${MY_P}/apache-${MY_P}-bin.tar.gz -> ${P}.tar.gz
|
|
"
|
|
S="${WORKDIR}/apache-${MY_P}-bin"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
RESTRICT="mirror binchecks"
|
|
|
|
BDEPEND="
|
|
acct-group/zookeeper
|
|
acct-user/zookeeper
|
|
"
|
|
RDEPEND="
|
|
${BDEPEND}
|
|
>=virtual/jre-1.8
|
|
"
|
|
|
|
INSTALL_DIR=/opt/"${PN}"
|
|
export CONFIG_PROTECT="${CONFIG_PROTECT} ${INSTALL_DIR}/conf"
|
|
|
|
src_prepare() {
|
|
default
|
|
rm "${S}"/docs/skin/instruction_arrow.png || die
|
|
}
|
|
|
|
src_install() {
|
|
local DATA_DIR=/var/lib/"${MY_P}"
|
|
|
|
# cleanup sources
|
|
rm bin/*.cmd || die
|
|
|
|
keepdir "${DATA_DIR}"
|
|
sed "s:^dataDir=.*:dataDir=${DATA_DIR}:" conf/zoo_sample.cfg > conf/zoo.cfg || die
|
|
cp "${FILESDIR}"/log4j.properties conf/ || die
|
|
|
|
dodir "${INSTALL_DIR}"
|
|
cp -a "${S}"/* "${ED}${INSTALL_DIR}" || die
|
|
|
|
# data dir perms
|
|
fowners zookeeper:zookeeper "${DATA_DIR}"
|
|
|
|
# log dir
|
|
keepdir /var/log/zookeeper
|
|
fowners zookeeper:zookeeper /var/log/zookeeper
|
|
|
|
# init script
|
|
newinitd "${FILESDIR}"/zookeeper.initd zookeeper
|
|
newconfd "${FILESDIR}"/zookeeper.confd zookeeper
|
|
|
|
# env file
|
|
cat > 99"${PN}" <<-EOF
|
|
PATH="${INSTALL_DIR}"/bin
|
|
CONFIG_PROTECT="${INSTALL_DIR}"/conf
|
|
EOF
|
|
doenvd 99"${PN}"
|
|
}
|