diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2008-06-27 14:38:10 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2008-06-27 14:38:10 +0000 |
commit | 658bfa99cffe10340f6bcec20272c22f641afd64 (patch) | |
tree | a572d1285764aebc4a98b1a7c1509266f5dda41c /sys-apps/sg3_utils/sg3_utils-1.26-r1.ebuild | |
parent | Marking dhcp-3.1.1 ppc for bug 227135 (diff) | |
download | gentoo-2-658bfa99cffe10340f6bcec20272c22f641afd64.tar.gz gentoo-2-658bfa99cffe10340f6bcec20272c22f641afd64.tar.bz2 gentoo-2-658bfa99cffe10340f6bcec20272c22f641afd64.zip |
Bug #229653, fix need for stdint.h headers thanks to Ed Catmur <ed@catmur.co.uk>.
(Portage version: 2.2_rc1/cvs/Linux 2.6.26-rc4-00103-g1beee8d x86_64)
Diffstat (limited to 'sys-apps/sg3_utils/sg3_utils-1.26-r1.ebuild')
-rw-r--r-- | sys-apps/sg3_utils/sg3_utils-1.26-r1.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sys-apps/sg3_utils/sg3_utils-1.26-r1.ebuild b/sys-apps/sg3_utils/sg3_utils-1.26-r1.ebuild new file mode 100644 index 000000000000..e864a089c7b5 --- /dev/null +++ b/sys-apps/sg3_utils/sg3_utils-1.26-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sg3_utils/sg3_utils-1.26-r1.ebuild,v 1.1 2008/06/27 14:38:10 robbat2 Exp $ + +inherit eutils + +DESCRIPTION="Apps for querying the sg SCSI interface" +HOMEPAGE="http://www.torque.net/sg/" +SRC_URI="http://www.torque.net/sg/p/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" +DEPEND="sys-devel/libtool" +RDEPEND="sys-apps/sdparm" +PDEPEND=">=sys-apps/rescan-scsi-bus-1.24" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-1.26-stdint.patch +} + +src_install() { + dodoc ChangeLog AUTHORS COVERAGE CREDITS README* + dodoc doc/README.doc examples/*.txt + newdoc scripts/README README.scripts + make install DESTDIR="${D}" || die "make install failed" + dosbin scripts/{scsi,sas}* +} |