diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2008-06-25 17:33:58 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2008-06-25 17:33:58 +0000 |
commit | 6e95bcae5997308d94c6df0fe9af11a72804b923 (patch) | |
tree | 56654e4a0b344c281c9be07f4ea0c5498323eecc /sys-apps/sg3_utils | |
parent | Stable on ppc64; bug #229305 (diff) | |
download | gentoo-2-6e95bcae5997308d94c6df0fe9af11a72804b923.tar.gz gentoo-2-6e95bcae5997308d94c6df0fe9af11a72804b923.tar.bz2 gentoo-2-6e95bcae5997308d94c6df0fe9af11a72804b923.zip |
Version bump.
(Portage version: 2.2_rc1/cvs/Linux 2.6.26-rc4-00103-g1beee8d x86_64)
Diffstat (limited to 'sys-apps/sg3_utils')
-rw-r--r-- | sys-apps/sg3_utils/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/sg3_utils/sg3_utils-1.26.ebuild | 25 |
2 files changed, 31 insertions, 1 deletions
diff --git a/sys-apps/sg3_utils/ChangeLog b/sys-apps/sg3_utils/ChangeLog index 04ea829abd82..a62fd4bdd2d5 100644 --- a/sys-apps/sg3_utils/ChangeLog +++ b/sys-apps/sg3_utils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/sg3_utils # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sg3_utils/ChangeLog,v 1.41 2008/03/22 22:50:33 coldwind Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sg3_utils/ChangeLog,v 1.42 2008/06/25 17:33:58 robbat2 Exp $ + +*sg3_utils-1.26 (25 Jun 2008) + + 25 Jun 2008; Robin H. Johnson <robbat2@gentoo.org> +sg3_utils-1.26.ebuild: + Version bump. 22 Mar 2008; Santiago M. Mola <coldwind@gentoo.org> sg3_utils-1.25.ebuild: amd64 stable wrt bug #205925 diff --git a/sys-apps/sg3_utils/sg3_utils-1.26.ebuild b/sys-apps/sg3_utils/sg3_utils-1.26.ebuild new file mode 100644 index 000000000000..93208733d8f4 --- /dev/null +++ b/sys-apps/sg3_utils/sg3_utils-1.26.ebuild @@ -0,0 +1,25 @@ +# 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.ebuild,v 1.1 2008/06/25 17:33:58 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_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}* +} |