summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Yamin <plasmaroo@gentoo.org>2004-08-13 14:34:01 +0000
committerTim Yamin <plasmaroo@gentoo.org>2004-08-13 14:34:01 +0000
commita8f686d0e0c18ddae33a2672bfe1a07c5de7e68d (patch)
treefd5c7a3bca2172ba49acdea9009bb2a5af4bd3aa /sys-apps/sg3_utils
parentremove slocate from sparc profiles, see http://marc.theaimsgroup.com/?l=gento... (diff)
downloadhistorical-a8f686d0e0c18ddae33a2672bfe1a07c5de7e68d.tar.gz
historical-a8f686d0e0c18ddae33a2672bfe1a07c5de7e68d.tar.bz2
historical-a8f686d0e0c18ddae33a2672bfe1a07c5de7e68d.zip
Version bump, also added Kurt Garloff's rescan-scsi-bus.sh script by request.
Diffstat (limited to 'sys-apps/sg3_utils')
-rw-r--r--sys-apps/sg3_utils/ChangeLog7
-rw-r--r--sys-apps/sg3_utils/Manifest4
-rw-r--r--sys-apps/sg3_utils/files/digest-sg3_utils-1.072
-rw-r--r--sys-apps/sg3_utils/sg3_utils-1.07.ebuild36
4 files changed, 47 insertions, 2 deletions
diff --git a/sys-apps/sg3_utils/ChangeLog b/sys-apps/sg3_utils/ChangeLog
index a3be472f5919..3c6d1cdddb1b 100644
--- a/sys-apps/sg3_utils/ChangeLog
+++ b/sys-apps/sg3_utils/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-apps/sg3_utils
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sg3_utils/ChangeLog,v 1.5 2004/08/09 21:38:41 plasmaroo Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/sg3_utils/ChangeLog,v 1.6 2004/08/13 14:34:01 plasmaroo Exp $
+
+*sg3_utils-1.07 (13 Aug 2004)
+
+ 13 Aug 2004; <plasmaroo@gentoo.org> +sg3_utils-1.07.ebuild:
+ Version bump, also added Kurt Garloff's rescan-scsi-bus.sh script by request.
09 Aug 2004; <plasmaroo@gentoo.org> sg3_utils-1.06.ebuild,
+files/sg3_utils-llseek.patch:
diff --git a/sys-apps/sg3_utils/Manifest b/sys-apps/sg3_utils/Manifest
index 6cce4ae4247b..9d03a9f1ac78 100644
--- a/sys-apps/sg3_utils/Manifest
+++ b/sys-apps/sg3_utils/Manifest
@@ -1,5 +1,7 @@
-MD5 e08a1cbf94c920c5ab2e7352414f068b ChangeLog 673
+MD5 c6c04f2f09c1a54728749c6610277a4f ChangeLog 847
+MD5 92c3ffa6376cbb844f03b4f6349399d5 sg3_utils-1.07.ebuild 904
MD5 056ba9d88997262bc82bbcba5e3c5f25 sg3_utils-1.06.ebuild 725
MD5 37443e54165d5bcdaa8550d52edafa98 metadata.xml 228
MD5 415ccd09bf2a67e4ccc39d50059b8c14 files/sg3_utils-llseek.patch 1948
+MD5 34467af1e0863df7a597802cbe00064d files/digest-sg3_utils-1.07 124
MD5 18e1643c00f4fa0f0faf858f1677631a files/digest-sg3_utils-1.06 63
diff --git a/sys-apps/sg3_utils/files/digest-sg3_utils-1.07 b/sys-apps/sg3_utils/files/digest-sg3_utils-1.07
new file mode 100644
index 000000000000..72069ba38c73
--- /dev/null
+++ b/sys-apps/sg3_utils/files/digest-sg3_utils-1.07
@@ -0,0 +1,2 @@
+MD5 8e31b96b88a514270e5f86affacc56f9 sg3_utils-1.07.tgz 240301
+MD5 c134b452644dfaa3b5d7b6721492963a rescan-scsi-bus.sh 5884
diff --git a/sys-apps/sg3_utils/sg3_utils-1.07.ebuild b/sys-apps/sg3_utils/sg3_utils-1.07.ebuild
new file mode 100644
index 000000000000..fef71ac068e1
--- /dev/null
+++ b/sys-apps/sg3_utils/sg3_utils-1.07.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2004 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.07.ebuild,v 1.1 2004/08/13 14:34:01 plasmaroo Exp $
+
+inherit eutils
+
+DESCRIPTION="Sg3_utils provide a collection of programs that use the sg SCSI interface"
+HOMEPAGE="http://www.torque.net/sg/"
+SRC_URI="http://www.torque.net/sg/p/${P}.tgz
+ http://www.garloff.de/kurt/linux/rescan-scsi-bus.sh"
+
+LICENSE="GPL-2"
+SLOT="0"
+
+KEYWORDS="~x86 ~sparc ~amd64"
+IUSE=""
+
+DEPEND=""
+
+src_unpack() {
+ unpack ${P}.tgz
+ cd ${S}
+
+ epatch ${FILESDIR}/${PN}-llseek.patch
+ sed -i "s:-O2:$CFLAGS:g" Makefile
+}
+
+src_compile() {
+ emake || die
+}
+
+src_install() {
+ exeinto /usr/bin
+ doexe ${DISTDIR}/rescan-scsi-bus.sh || die 'Failed to install rescan-scsi-bus.sh!'
+ einstall INSTDIR=${D}/usr/bin MANDIR=${D}/usr/man || die 'Failed to install sg3_utils!'
+}