diff options
author | 2018-12-10 09:44:02 +0000 | |
---|---|---|
committer | 2018-12-10 09:44:02 +0000 | |
commit | 4124f6ce04aa2e34f6ca65cb3fea41055ee90288 (patch) | |
tree | e131e11fedda133dcdca21251b80e24e5c4d1e65 | |
parent | 2018-12-10 09:24:18 UTC (diff) | |
parent | net-misc/kea: Added support for mysql and postgresql. (diff) | |
download | gentoo-4124f6ce04aa2e34f6ca65cb3fea41055ee90288.tar.gz gentoo-4124f6ce04aa2e34f6ca65cb3fea41055ee90288.tar.bz2 gentoo-4124f6ce04aa2e34f6ca65cb3fea41055ee90288.zip |
Merge updates from master
-rw-r--r-- | net-misc/kea/kea-9999.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/net-misc/kea/kea-9999.ebuild b/net-misc/kea/kea-9999.ebuild index 6a29a56af228..9088c8b223fa 100644 --- a/net-misc/kea/kea-9999.ebuild +++ b/net-misc/kea/kea-9999.ebuild @@ -8,6 +8,7 @@ inherit toolchain-funcs user MY_PV="${PV//_p/-P}" MY_PV="${MY_PV/_/-}" MY_P="${PN}-${MY_PV}" + DESCRIPTION="High-performance production grade DHCPv4 & DHCPv6 server" HOMEPAGE="http://www.isc.org/kea/" if [[ ${PV} = 9999* ]] ; then @@ -22,14 +23,16 @@ fi LICENSE="ISC BSD SSLeay GPL-2" # GPL-2 only for init script SLOT="0" -IUSE="openssl samples" +IUSE="mysql openssl postgres samples" DEPEND=" dev-libs/boost:= dev-cpp/gtest dev-libs/log4cplus + mysql? ( virtual/mysql ) !openssl? ( dev-libs/botan:0= ) openssl? ( dev-libs/openssl:0= ) + postgres? ( dev-db/postgresql:* ) " RDEPEND="${DEPEND}" @@ -46,7 +49,9 @@ src_prepare() { src_configure() { local myeconfargs=( + $(use_with mysql) $(use_with openssl) + $(use_with postgres pgsql) $(use_enable samples install-configurations) --disable-static --without-werror |