blob: acca90bd2170315eaec9cdd172fd469c6f293bf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# 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.1.ebuild,v 1.5 2013/05/25 20:18:08 ago Exp $
EAPI="5"
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 static-libs test xml"
RDEPEND="expat? ( dev-libs/expat )
xml? ( >=dev-libs/libxml2-2.6.24 )"
DEPEND="${RDEPEND}
test? ( dev-util/cunit )"
REQUIRED_USE="^^ ( expat xml )"
src_configure() {
econf \
$(use_with expat libexpat) \
$(use_with xml libxml2) \
$(use_enable static-libs static)
}
|