diff options
author | Tim Yamin <plasmaroo@gentoo.org> | 2003-11-23 23:29:59 +0000 |
---|---|---|
committer | Tim Yamin <plasmaroo@gentoo.org> | 2003-11-23 23:29:59 +0000 |
commit | 52c8c22d5aa511211dc2c9ae99d87ad553ef6196 (patch) | |
tree | fa6d40ab03989236eda09dfa6b4b582d18ac1722 /sys-apps/sysutils | |
parent | updating depend (diff) | |
download | historical-52c8c22d5aa511211dc2c9ae99d87ad553ef6196.tar.gz historical-52c8c22d5aa511211dc2c9ae99d87ad553ef6196.tar.bz2 historical-52c8c22d5aa511211dc2c9ae99d87ad553ef6196.zip |
Initial import; bug #25457
Diffstat (limited to 'sys-apps/sysutils')
-rw-r--r-- | sys-apps/sysutils/ChangeLog | 9 | ||||
-rw-r--r-- | sys-apps/sysutils/Manifest | 3 | ||||
-rw-r--r-- | sys-apps/sysutils/files/digest-sysutils-0.1.0 | 1 | ||||
-rw-r--r-- | sys-apps/sysutils/sysutils-0.1.0.ebuild | 31 |
4 files changed, 44 insertions, 0 deletions
diff --git a/sys-apps/sysutils/ChangeLog b/sys-apps/sysutils/ChangeLog new file mode 100644 index 000000000000..dea28ab7d83b --- /dev/null +++ b/sys-apps/sysutils/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for sys-apps/sysutils +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysutils/ChangeLog,v 1.1 2003/11/23 23:29:42 plasmaroo Exp $ + +*sysutils-0.1.0 (23 Nov 2003) + + 23 Nov 2003; <plasmaroo@gentoo.org> sysutils-0.1.0.ebuild: + Initial import. + diff --git a/sys-apps/sysutils/Manifest b/sys-apps/sysutils/Manifest new file mode 100644 index 000000000000..4583244a99bf --- /dev/null +++ b/sys-apps/sysutils/Manifest @@ -0,0 +1,3 @@ +MD5 2e1768e4c44addd3c4d1937798c793d6 ChangeLog 330 +MD5 bdc9b2feaa3781b870aab1af77b0d73f sysutils-0.1.0.ebuild 673 +MD5 4747a0ef688ca4c2c1ca0c06841020a4 files/digest-sysutils-0.1.0 65 diff --git a/sys-apps/sysutils/files/digest-sysutils-0.1.0 b/sys-apps/sysutils/files/digest-sysutils-0.1.0 new file mode 100644 index 000000000000..1da89a5da6d9 --- /dev/null +++ b/sys-apps/sysutils/files/digest-sysutils-0.1.0 @@ -0,0 +1 @@ +MD5 9cb6203ec2919560f056247f7d517e6c sysutils-0.1.0.tar.gz 35361 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 + +} |