You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
959 B
37 lines
959 B
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit multilib-minimal
|
|
|
|
DESCRIPTION="Library for handling Metalink files"
|
|
HOMEPAGE="https://launchpad.net/libmetalink"
|
|
SRC_URI="https://launchpad.net/${PN}/trunk/${P}/+download/${P}.tar.bz2"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm ~arm64 hppa ~mips ppc ppc64 ~riscv x86"
|
|
IUSE="expat static-libs test xml"
|
|
|
|
RDEPEND="expat? ( >=dev-libs/expat-2.1.0-r3[${MULTILIB_USEDEP}] )
|
|
xml? ( >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}] )"
|
|
DEPEND="${RDEPEND}
|
|
test? ( >=dev-util/cunit-2.1_p2[${MULTILIB_USEDEP}] )"
|
|
|
|
REQUIRED_USE="^^ ( expat xml )"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
multilib_src_configure() {
|
|
local myeconfargs=(
|
|
$(use_with expat libexpat)
|
|
$(use_with xml libxml2)
|
|
$(use_enable static-libs static)
|
|
)
|
|
ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
|
|
}
|
|
|
|
multilib_src_install_all() {
|
|
find "${ED}" -type f -name "*.la" -delete || die
|
|
}
|