diff options
author | dakkar <dakkar@thenautilus.net> | 2025-02-10 15:48:17 +0000 |
---|---|---|
committer | dakkar <dakkar@thenautilus.net> | 2025-02-10 15:48:17 +0000 |
commit | d4cf6c222d86f7231255225bb502e6c949898df5 (patch) | |
tree | cca7e94d3c1d765331f6f9689133848e686b34d6 | |
parent | vagrant 2.4.3 (diff) | |
download | gentoo-overlay-d4cf6c222d86f7231255225bb502e6c949898df5.tar.gz gentoo-overlay-d4cf6c222d86f7231255225bb502e6c949898df5.tar.bz2 gentoo-overlay-d4cf6c222d86f7231255225bb502e6c949898df5.zip |
probably correct pgroonga ebuild
-rw-r--r-- | dev-db/pgroonga/Manifest | 2 | ||||
-rw-r--r-- | dev-db/pgroonga/pgroonga-4.0.0.ebuild | 30 |
2 files changed, 32 insertions, 0 deletions
diff --git a/dev-db/pgroonga/Manifest b/dev-db/pgroonga/Manifest new file mode 100644 index 0000000..78aa033 --- /dev/null +++ b/dev-db/pgroonga/Manifest @@ -0,0 +1,2 @@ +DIST pgroonga-4.0.0.tar.gz 1616198 BLAKE2B 0870838409f32b17379593bb5e351192028b7923bf628af2b54ec6ef3a2646f18462e1ea118a89417c7328a591f77983646d985acc219a792b8a97f5cb2c52b2 SHA512 8a320af20497a7d7064c3e025e2e6b183a5d198bc9e404363296fc84237144957e7441cda6ea6daf1692f8217c3fd9109c9ca36f48ce302d7417fbd80a05f170 +EBUILD pgroonga-4.0.0.ebuild 620 BLAKE2B 0ef72f7b9cfebcc9ec15202ded6a1db573d80735352fb255f119ec819187d0d7138b2369e7e6edd6c6b5bba0e774007d8484b28720ff4806ee0bf03bd4073b5d SHA512 79adb2fad3a37ba854c02e7c9317f7b873d77558fcd3e8b514df3d21457d3536dbed7733117da3c1869843a30d98f23dbef739080b45dfb46d48de434e997a5d diff --git a/dev-db/pgroonga/pgroonga-4.0.0.ebuild b/dev-db/pgroonga/pgroonga-4.0.0.ebuild new file mode 100644 index 0000000..ab05e54 --- /dev/null +++ b/dev-db/pgroonga/pgroonga-4.0.0.ebuild @@ -0,0 +1,30 @@ +EAPI=8 + +POSTGRES_COMPAT=( {15..17} ) +POSTGRES_USEDEP="server" + +inherit postgres-multi + +DESCRIPTION="PGroonga full-text search engine" +HOMEPAGE="https://pgroonga.github.io/" +LICENSE="POSTGRESQL" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +SRC_URI="https://packages.groonga.org/source/pgroonga/${P}.tar.gz" +IUSE="msgpack" + +RDEPEND="${POSTGRES_DEP} + >=app-text/groonga-14.0.0[msgpack?] + >=dev-libs/xxhash-0.8.0 +" + +DEPEND="${RDEPEND}" +# maybe? Needs a running psql instance, doesn't work out of the box +RESTRICT="mirror test" + +src_compile() { + use msgpack && export HAVE_MSGPACK=1 + export HAVE_XXHASH=1 + postgres-multi_foreach emake +} |