diff options
author | Tim Yamin <plasmaroo@gentoo.org> | 2004-08-13 14:34:01 +0000 |
---|---|---|
committer | Tim Yamin <plasmaroo@gentoo.org> | 2004-08-13 14:34:01 +0000 |
commit | b127314c4995fadd0ac634a619b8e5d68ccb7500 (patch) | |
tree | c36105f9bd782cffb39624b37a293e17c0dd066d /sys-apps/sg3_utils | |
parent | remove slocate from sparc profiles, see http://marc.theaimsgroup.com/?l=gento... (diff) | |
download | gentoo-2-b127314c4995fadd0ac634a619b8e5d68ccb7500.tar.gz gentoo-2-b127314c4995fadd0ac634a619b8e5d68ccb7500.tar.bz2 gentoo-2-b127314c4995fadd0ac634a619b8e5d68ccb7500.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/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/sg3_utils/Manifest | 4 | ||||
-rw-r--r-- | sys-apps/sg3_utils/files/digest-sg3_utils-1.07 | 2 | ||||
-rw-r--r-- | sys-apps/sg3_utils/sg3_utils-1.07.ebuild | 36 |
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..2febb16c6e67 100644 --- a/sys-apps/sg3_utils/Manifest +++ b/sys-apps/sg3_utils/Manifest @@ -1,5 +1,7 @@ -MD5 e08a1cbf94c920c5ab2e7352414f068b ChangeLog 673 +MD5 513ea6a2d5c7bc79fc6cf3d4b5b0c225 ChangeLog 847 +MD5 c8b38db11bde65e48b008d8732fbd78d 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!' +} |