blob: 5273b9d73e699065cf354af6dada176ec0b11c04 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libgpod/libgpod-0.2.0.ebuild,v 1.1 2005/11/29 03:10:22 joem Exp $
DESCRIPTION="Shared library to access the contents of an iPod"
HOMEPAGE="http://www.gtkpod.org/libgpod.html"
SRC_URI="mirror://sourceforge/gtkpod/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="hal gtk"
RDEPEND=">=dev-libs/glib-2.4
gtk? ( >=x11-libs/gtk+-2 )
hal? ( >=sys-apps/dbus-0.5.2
>=sys-apps/hal-0.5
>=sys-apps/pmount-0.9.6 )"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.2.9"
src_compile() {
econf \
$(use_with hal eject-command /usr/bin/eject) \
$(use_with hal unmount-command /usr/bin/pumount) \
|| die "configure failed"
emake || die "make failed"
}
src_install() {
make DESTDIR=${D} install || die "install failed"
}
|