blob: 1be77cdcdc4618425ba797e79ec6f9bc9df98678 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libgpod/libgpod-0.3.2.ebuild,v 1.2 2006/04/08 21:26:24 tester Exp $
inherit eutils
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="amd64 ~ppc ~sparc ~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 )
virtual/eject"
DEPEND="${RDEPEND}
sys-devel/autoconf
sys-devel/libtool
>=dev-util/intltool-0.2.9"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PN}-0.3.0-config-enables.diff
autoreconf
libtoolize --force --copy
}
src_compile() {
local myconf=""
myconf="${myconf}
$(use_enable hal)
$(use_enable gtk gdk-pixbuf)"
if use hal ; then
myconf="${myconf} --with-eject-comand=/usr/bin/eject \
--with-unmount-command=/usr/bin/pumount"
else
myconf="${myconf}
--with-eject-command=/usr/bin/eject \
--with-unmount-command=/bin/umount"
fi
econf \
${myconf} \
|| die "configure failed"
emake || die "make failed"
}
src_install() {
make DESTDIR=${D} install || die "install failed"
dodoc README
}
|