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.
gentoo-overlay/media-libs/libmetalink/libmetalink-0.1.0.ebuild

31 lines
790 B

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmetalink/libmetalink-0.1.0.ebuild,v 1.2 2013/03/04 18:24:11 ranger Exp $
EAPI="2"
inherit base
DESCRIPTION="Library for handling Metalink files"
HOMEPAGE="http://launchpad.net/libmetalink"
SRC_URI="https://launchpad.net/${PN}/trunk/${P}/+download/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ppc ~ppc64 ~x86"
IUSE="expat test"
RDEPEND="expat? ( dev-libs/expat )
!expat? ( >=dev-libs/libxml2-2.6.24 )"
DEPEND="${RDEPEND}
test? ( dev-util/cunit )"
src_configure() {
local xml_args
use expat \
&& xml_args=--with-libexpat \
|| xml_args=--with-libxml2
econf ${xml_args} --docdir=/usr/share/doc/${PF}
}