blob: dd6fd093c714aeeaa42aedfd90d1334e68be55a2 (
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.1 2006/01/07 22:22:31 vanquirius Exp $
inherit eutils
DESCRIPTION="Library communicating with PTP enabled devices (digital photo cameras and so on)."
HOMEPAGE="http://sourceforge.net/projects/libptp/"
SRC_URI="mirror://sourceforge/libptp/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~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
}
|