blob: 80a328f13e5e63ca16551a57689d91bf597a6480 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libptp2/libptp2-1.1.10.ebuild,v 1.1 2007/12/28 00:03:07 dragonheart Exp $
inherit eutils autotools
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.10"
DEPEND="${RDEPEND}"
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${P}-makefile.patch
epatch "${FILESDIR}"/${P}-configure.patch
cd "${S}"
AT_M4DIR="m4" eautoreconf
}
src_test() {
env LD_LIBRARY_PATH=./src/.libs/ ./src/ptpcam -l || die "failed test"
}
src_install() {
emake DESTDIR="${D}" install || die
}
|