blob: 5704b1e6085d27bacc4612cad8d7328006a2fcf0 (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
# 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-r1.ebuild,v 1.5 2006/07/08 22:29:10 wormo 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 ppc64 ~sparc ~x86"
IUSE="hal gtk python"
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 )
python? ( >=dev-lang/python-2.3 )
virtual/eject"
DEPEND="${RDEPEND}
sys-devel/autoconf
sys-devel/libtool
>=dev-util/intltool-0.2.9"
src_unpack() {
unpack ${A}
cd ${S}
sed -i -e "s:/usr/include/python2.3/:`python -c 'import distutils.sysconfig;print distutils.sysconfig.get_python_inc()'`:" bindings/python/Makefile
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"
if use python; then
cd ${S}/bindings/python
emake
fi
}
src_install() {
make DESTDIR=${D} install || die "install failed"
dodoc README
if use python; then
cd ${S}/bindings/python
insinto $(python -c 'import distutils.sysconfig;print distutils.sysconfig.get_python_lib()')
doins ${S}/bindings/python/gpod.py
insinto $(python -c 'import distutils.sysconfig;print distutils.sysconfig.get_python_lib(1)')
doins ${S}/bindings/python/_gpod.so
fi
}
|