dev-libs/tinyxml2: drop static-libs USE flag

Upstream collapsed static/shared builds into one target and we don't
have any current users of static-libs in the tree so drop support for it
instead of figuring out how to run configure/build/install twice with
differing settings.

Closes: https://bugs.gentoo.org/673046

Signed-off-by: Tim Harder <radhermit@gentoo.org>
This commit is contained in:
Tim Harder
2018-12-12 17:47:25 -06:00
parent c0fe1489af
commit 82efb81ecf

View File

@@ -12,12 +12,9 @@ SRC_URI="https://github.com/leethomason/${PN}/archive/${PV}.tar.gz -> ${P}.tar.g
LICENSE="ZLIB"
SLOT="0/7"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~sparc ~x86"
IUSE="static-libs test"
IUSE="test"
multilib_src_configure() {
local mycmakeargs=(
-DBUILD_STATIC_LIBS=$(usex static-libs)
-DBUILD_TESTING=$(usex test)
)
local mycmakeargs=( -DBUILD_TESTING=$(usex test) )
cmake-utils_src_configure
}