blob: 9dd3079d82c7fe2d4d3d65ea749d36989fbe703e (
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
|
# Copyright 2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/media-libs/libgpio/libgpio-20020507.ebuild,v 1.3 2002/07/24 07:21:18 george Exp $
S=${WORKDIR}/${PN}
DESCRIPTION="I/O library for GPhoto 2.x"
SRC_URI="http://www.ibiblio.org/gentoo/${P}.tar.bz2"
HOMEPAGE="http://www.gphoto.org"
SLOT="0"
LICENSE="GPL-2 LGPL-2"
KEYWORDS="x86"
DEPEND="dev-libs/libusb
sys-devel/automake
sys-devel/autoconf
sys-devel/libtool"
RDEPEND="dev-libs/libusb"
src_compile() {
./autogen.sh --prefix=/usr --host=${CHOST} || die
make || die
}
src_install () {
make DESTDIR=${D} install || die
}
|