blob: d24fdd561129654594af6d805f8504b57934b620 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmtp/libmtp-0.1.3.ebuild,v 1.5 2007/02/24 10:08:25 corsair Exp $
inherit eutils
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 ppc ppc64 x86"
IUSE="doc examples"
RDEPEND=">=dev-libs/libusb-0.1.7
sys-libs/ncurses
sys-libs/zlib"
DEPEND="doc? ( app-doc/doxygen )
${RDEPEND}"
src_unpack() {
unpack "${A}"
cd "${S}"
epatch "${FILESDIR}"/libmtp-0.0.16-udev_perm.patch
}
src_compile() {
econf --enable-hotplugging || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog README TODO
insinto /etc/udev/rules.d
newins libmtp.rules 65-mtp.rules
if use examples ; then
docinto examples
dodoc examples/*.{c,h,sh}
fi
}
|