blob: bcef1f6106d774e70b574764b8fe5f9b9158cf8a (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Your Name <your email>
# $Header: /var/cvsroot/gentoo-x86/media-libs/libgpio/libgpio-20010607.ebuild,v 1.1 2001/07/03 10:41:22 achim Exp $
A=${PN}-cvs-${PV}.tar.bz2
S=${WORKDIR}/${PN}
DESCRIPTION="libgpio"
SRC_URI=""
HOMEPAGE="http://www-ghoto.org"
DEPEND="dev-libs/libusb sys-devel/automake sys-devel/autoconf sys-devel/libtool"
RDEPEND="dev-libs/libusb"
src_compile() {
try ./autogen.sh --prefix=/usr --host=${CHOST}
try make
}
src_install () {
try make DESTDIR=${D} install
}
|