summaryrefslogtreecommitdiff
blob: ac7e95a80d5748a9b87d7f529133d78cd7c1c2a6 (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
29
30
31
32
33
34
35
36
37
38
39
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libxspf/libxspf-1.2.0.ebuild,v 1.10 2012/07/29 18:40:42 armin76 Exp $

EAPI=4

inherit eutils qt4-r2

DESCRIPTION="Playlist handling library"
HOMEPAGE="http://libspiff.sourceforge.net"
SRC_URI="mirror://sourceforge/libspiff/${P}.tar.bz2"

LICENSE="BSD LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="doc test"

RDEPEND=">=dev-libs/uriparser-0.7.5
	>=dev-libs/expat-2"
DEPEND="${RDEPEND}
	virtual/pkgconfig
	test? ( >=dev-util/cpptest-1.1 )
	doc? (
		>=app-doc/doxygen-1.5.8
		media-gfx/graphviz
		x11-libs/qt-assistant:4
	)"

DOCS="AUTHORS ChangeLog NEWS README THANKS"
PATCHES=(
	"${FILESDIR}/${P}-gcc44.patch"
)

src_configure() {
	econf \
		--docdir=/usr/share/doc/${PF} \
		$(use_enable test) \
		$(use_enable doc)
}