diff options
author | Patrick Lauer <patrick@gentoo.org> | 2021-03-23 15:29:23 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2021-03-23 15:29:50 +0000 |
commit | 2e38a81f54deab5bf95111f011f41946e378c847 (patch) | |
tree | 4b65f4d247ca4a5ce3964bb404067bb3d7e98373 /dev-db | |
parent | sys-apps/lshw: disallow USE="static sqlite" (diff) | |
download | gentoo-2e38a81f54deab5bf95111f011f41946e378c847.tar.gz gentoo-2e38a81f54deab5bf95111f011f41946e378c847.tar.bz2 gentoo-2e38a81f54deab5bf95111f011f41946e378c847.zip |
dev-db/postgresql: Add lz4 useflag to -9999
Also update docbook dependencies
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Patrick Lauer <patrick@gentoo.org>
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/postgresql/postgresql-9999.ebuild | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/dev-db/postgresql/postgresql-9999.ebuild b/dev-db/postgresql/postgresql-9999.ebuild index c9a4ce82776c..c1b8aefe265b 100644 --- a/dev-db/postgresql/postgresql-9999.ebuild +++ b/dev-db/postgresql/postgresql-9999.ebuild @@ -18,9 +18,9 @@ LICENSE="POSTGRESQL GPL-2" DESCRIPTION="PostgreSQL RDBMS" HOMEPAGE="https://www.postgresql.org/" -IUSE="debug icu kerberos kernel_linux ldap libressl llvm nls pam perl - python +readline selinux server systemd ssl static-libs tcl - threads uuid xml zlib" +IUSE="debug icu kerberos kernel_linux ldap libressl llvm lz4 + nls pam perl python +readline selinux server systemd + ssl static-libs tcl threads uuid xml zlib" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" @@ -37,6 +37,7 @@ llvm? ( sys-devel/llvm:= sys-devel/clang:= ) +lz4? ( app-arch/lz4 ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( ${PYTHON_DEPS} ) @@ -78,8 +79,8 @@ uuid? ( DEPEND="${CDEPEND} >=dev-lang/perl-5.8 app-text/docbook-dsssl-stylesheets -app-text/docbook-sgml-dtd:4.2 -app-text/docbook-xml-dtd:4.2 +app-text/docbook-sgml-dtd:4.5 +app-text/docbook-xml-dtd:4.5 app-text/docbook-xsl-stylesheets app-text/openjade dev-libs/libxml2 @@ -168,6 +169,7 @@ src_configure() { $(use_with kerberos gssapi) \ $(use_with ldap) \ $(use_with llvm) \ + $(use_with lz4) \ $(use_with pam) \ $(use_with perl) \ $(use_with python) \ |