blob: 98b5539c6cba2b0c81cede074b24e9896aa49c4b (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmtp/libmtp-1.0.2-r1.ebuild,v 1.1 2010/04/21 17:07:45 ken69267 Exp $
EAPI=2
DESCRIPTION="An implementation of Microsoft's Media Transfer Protocol (MTP)."
HOMEPAGE="http://libmtp.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="doc examples static-libs"
RDEPEND="virtual/libusb:0"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
sys-apps/findutils"
src_prepare() {
# Fix device permissions
sed -i -e "s:666:660:" examples/hotplug.c || die "sed failed"
}
src_configure() {
econf \
--enable-shared \
$(use_enable static-libs static)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
rm -f $(find "${D}" -name '*.la')
dodoc AUTHORS ChangeLog README TODO || die "dodoc failed"
insinto /etc/udev/rules.d
newins libmtp.rules 65-mtp.rules
insinto /usr/share/hal/fdi/information/20thirdparty
newins libmtp.fdi 10-libmtp.fdi
if use examples; then
docinto examples
dodoc examples/*.{c,h,sh}
fi
}
|