blob: dcc6fa88d3a93100de87d27a302abbb42ca52245 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libipoddevice/libipoddevice-0.5.3.ebuild,v 1.11 2009/05/10 18:00:43 ssuominen Exp $
inherit base autotools
DESCRIPTION="device-specific layer for the Apple iPod"
HOMEPAGE="http://banshee-project.org/Libipoddevice"
SRC_URI="http://banshee-project.org/files/libipoddevice/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND=">=dev-libs/dbus-glib-0.71
>=sys-apps/hal-0.5.2
sys-apps/pmount
virtual/eject
>=gnome-base/libgtop-2.12
>=sys-apps/sg3_utils-1.20"
DEPEND="${RDEPEND}
gnome-base/gnome-common
dev-util/pkgconfig"
PATCHES=( "${FILESDIR}/${P}-libsgutils2.patch" )
src_unpack() {
base_src_unpack
cd "${S}"
# use correct libdir in pkgconfig file
sed -i -e 's:^libdir=.*:libdir=@libdir@:' \
ipoddevice.pc.in || die "sed failed"
# Remove -Werror wrt #260908
sed -i -e 's:-Werror::' src/Makefile.am \
|| die "sed failed"
eautoreconf
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc ChangeLog NEWS README
}
|