Install this version:
emerge -a =dev-libs/libtools-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-libs/libtools-9999
Or alternatively:
emerge --autounmask-write -a =dev-libs/libtools-9999
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake git-r3
DESCRIPTION="Library with a lot of useful C routines"
HOMEPAGE="https://github.com/Oleh-Kravchenko/libtools"
EGIT_REPO_URI="https://github.com/Oleh-Kravchenko/libtools.git"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc mysql uri"
RDEPEND="dev-libs/openssl:*
mysql? ( dev-db/mysql-connector-c )
uri? ( dev-libs/uriparser )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
src_configure() {
local mycmakeargs=(
-DWITH_DOC="$(usex doc ON OFF)"
-DWITH_MYSQL="$(usex mysql ON OFF)"
-DWITH_URIPARSER="$(usex uri ON OFF)"
)
cmake_src_configure
}
Manage flags for this package:
euse -i <flag> -p dev-libs/libtools |
euse -E <flag> -p dev-libs/libtools |
euse -D <flag> -p dev-libs/libtools
dev-libs/openssl:* mysql? ( dev-db/mysql-connector-c ) uri? ( dev-libs/uriparser ) doc? ( app-doc/doxygen )
dev-libs/openssl:* mysql? ( dev-db/mysql-connector-c ) uri? ( dev-libs/uriparser )