blob: 292ce413844af38ccd2c76e3fd95d83859169c86 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/totem-pl-parser/totem-pl-parser-2.22.3.ebuild,v 1.1 2008/05/10 14:33:23 eva Exp $
inherit gnome.org
DESCRIPTION="Playlist parsing library"
HOMEPAGE="http://www.gnome.org/projects/totem/"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc64 ~sparc ~x86"
IUSE="doc hal"
RDEPEND=">=x11-libs/gtk+-2.12
>=dev-libs/glib-2.16.3
>=gnome-extra/evolution-data-server-1.12
hal? (
=sys-apps/hal-0.5*
>=sys-apps/dbus-1.0 )"
DEPEND="${RDEPEND}
!<media-video/totem-2.21
>=dev-util/intltool-0.35
doc? ( dev-util/gtk-doc )"
src_compile() {
econf $(use_with hal) || die "configure failed"
emake || die "build failed"
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
}
|