diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-10-29 18:10:25 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-10-29 18:10:25 +0000 |
commit | 36c8eb5bb37920bacfb0a188ac7f0e7ef2c26dbf (patch) | |
tree | dd75dfe9aa1a19d92b93b7eb8dfad6e126f138c1 /dev-util/lsuio/lsuio-0.2.0.ebuild | |
parent | Add missing ChangeLog entry. (diff) | |
download | gentoo-2-36c8eb5bb37920bacfb0a188ac7f0e7ef2c26dbf.tar.gz gentoo-2-36c8eb5bb37920bacfb0a188ac7f0e7ef2c26dbf.tar.bz2 gentoo-2-36c8eb5bb37920bacfb0a188ac7f0e7ef2c26dbf.zip |
Initial ebuild.
(Portage version: 2.2_rc12/cvs/Linux 2.6.26.2 x86_64)
Diffstat (limited to 'dev-util/lsuio/lsuio-0.2.0.ebuild')
-rw-r--r-- | dev-util/lsuio/lsuio-0.2.0.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/dev-util/lsuio/lsuio-0.2.0.ebuild b/dev-util/lsuio/lsuio-0.2.0.ebuild new file mode 100644 index 000000000000..2427cea5a428 --- /dev/null +++ b/dev-util/lsuio/lsuio-0.2.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/lsuio/lsuio-0.2.0.ebuild,v 1.1 2008/10/29 18:10:25 vapier Exp $ + +inherit eutils + +DESCRIPTION="list available userspace I/O (UIO) devices" +HOMEPAGE="http://www.osadl.org/UIO.uio.0.html" +SRC_URI="http://www.osadl.org/projects/downloads/UIO/user/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-build.patch +} + +src_install() { + emake install DESTDIR="${D}" || die + dodoc AUTHORS NEWS README +} |