diff options
Diffstat (limited to 'sys-apps/sysutils/sysutils-0.1.0.ebuild')
-rw-r--r-- | sys-apps/sysutils/sysutils-0.1.0.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sys-apps/sysutils/sysutils-0.1.0.ebuild b/sys-apps/sysutils/sysutils-0.1.0.ebuild new file mode 100644 index 000000000000..ebec7c0813f7 --- /dev/null +++ b/sys-apps/sysutils/sysutils-0.1.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysutils/sysutils-0.1.0.ebuild,v 1.1 2003/11/23 23:29:42 plasmaroo Exp $ + +DESCRIPTION="A small program and library to access the sysfs interface in 2.5+ kernels." +SRC_URI="http://www.kernel.org/pub/linux/utils/kernel/hotplug/${P}.tar.gz" +HOMEPAGE="http://www.kernel.org" + +KEYWORDS="~x86" +SLOT="0" +LICENSE="GPL-2" +IUSE="" + +DEPEND="virtual/glibc" + +src_compile() { + + emake || die "emake failed" + +} + +src_install() { + + into /usr + dolib lib/libsysfs.a + dosbin cmd/lsbus + dosbin cmd/systool + + dodoc docs/libsysfs.txt + +} |