mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-19 08:29:37 +00:00
32 lines
550 B
Bash
32 lines
550 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
POSTGRES_COMPAT=( 15 16 17)
|
|
|
|
inherit git-r3 postgres-multi
|
|
|
|
DESCRIPTION="Open-source postgresql extension for clustering/multi-node setups"
|
|
HOMEPAGE="https://www.citusdata.com/"
|
|
|
|
EGIT_REPO_URI="https://github.com/citusdata/citus.git"
|
|
|
|
IUSE=""
|
|
LICENSE="POSTGRESQL AGPL-3"
|
|
|
|
KEYWORDS=""
|
|
|
|
SLOT=0
|
|
|
|
RESTRICT="test"
|
|
|
|
DEPEND="${POSTGRES_DEP}
|
|
app-arch/lz4
|
|
app-arch/zstd
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_configure() {
|
|
postgres-multi_foreach econf
|
|
}
|