blob: dd821616f90ac7f5c2aa40968bcfc0ab28f483f0 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libptp2/libptp2-1.1.0.ebuild,v 1.6 2006/07/25 04:47:20 dragonheart Exp $
inherit eutils
DESCRIPTION="Library and client for communicating with PTP enabled devices (e.g. digital photo cameras)."
HOMEPAGE="http://sourceforge.net/projects/libptp/"
SRC_URI="mirror://sourceforge/libptp/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ppc ppc64 x86"
IUSE=""
RDEPEND=">=dev-libs/libusb-0.1.8"
DEPEND="${RDEPEND}
sys-apps/gawk
sys-apps/grep"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-1.1.0-libusbversion.patch
epatch "${FILESDIR}"/${PN}-1.1.0-parallel.patch
epatch "${FILESDIR}"/${PN}-1.1.0-gcc41.patch
}
src_test() {
if hasq userpriv "${FEATURES}" || hasq sandbox "${FEATURES}" || hasq usersandbox "${FEATURES}";
then
einfo "Sorry cannot test with userpriv, usersandbox or sandbox features"
else
env LD_LIBRARY_PATH=./src/.libs/ ./src/ptpcam -l || die "failed test"
fi
}
src_install() {
make DESTDIR="${D}" install || die
}
|