diff options
author | George Shapovalov <george@gentoo.org> | 2002-05-09 07:08:06 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2002-05-09 07:08:06 +0000 |
commit | 98ca8eeff3a9eec10cc2dff2c1190b6b11ca5fe6 (patch) | |
tree | 7272ae8b676d9792544fc96de52674a6f0c3ab2e | |
parent | added Changelog (diff) | |
download | gentoo-2-98ca8eeff3a9eec10cc2dff2c1190b6b11ca5fe6.tar.gz gentoo-2-98ca8eeff3a9eec10cc2dff2c1190b6b11ca5fe6.tar.bz2 gentoo-2-98ca8eeff3a9eec10cc2dff2c1190b6b11ca5fe6.zip |
new version of libgpio (old one ceased to exist BTW)
-rw-r--r-- | media-libs/libgpio/libgpio-20020507.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/media-libs/libgpio/libgpio-20020507.ebuild b/media-libs/libgpio/libgpio-20020507.ebuild new file mode 100644 index 000000000000..2191b8833688 --- /dev/null +++ b/media-libs/libgpio/libgpio-20020507.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# George Shapovalov <george@gentoo.org> +# /space/gentoo/cvsroot/gentoo-x86/media-libs/libgpio/libgpio-20010607.ebuild,v 1.1 2001/07/03 10:41:22 achim Exp + +S=${WORKDIR}/${PN} +DESCRIPTION="libgpio" +SRC_URI="http://www.ibiblio.org/gentoo/${P}.tar.bz2" +HOMEPAGE="http://www.gphoto.org" + +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 + +} + |