Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/sg3_utils: ChangeLog sg3_utils-1.30.ebuild
Date: Fri, 26 Nov 2010 07:20:37
Message-Id: 20101126072029.E697420054@flycatcher.gentoo.org
1 robbat2 10/11/26 07:20:29
2
3 Modified: ChangeLog
4 Added: sg3_utils-1.30.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha5/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.70 sys-apps/sg3_utils/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/sg3_utils/ChangeLog?rev=1.70&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/sg3_utils/ChangeLog?rev=1.70&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/sg3_utils/ChangeLog?r1=1.69&r2=1.70
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/sg3_utils/ChangeLog,v
20 retrieving revision 1.69
21 retrieving revision 1.70
22 diff -p -w -b -B -u -u -r1.69 -r1.70
23 --- ChangeLog 29 Oct 2010 06:22:59 -0000 1.69
24 +++ ChangeLog 26 Nov 2010 07:20:29 -0000 1.70
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/sg3_utils
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sg3_utils/ChangeLog,v 1.69 2010/10/29 06:22:59 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sg3_utils/ChangeLog,v 1.70 2010/11/26 07:20:29 robbat2 Exp $
30 +
31 +*sg3_utils-1.30 (26 Nov 2010)
32 +
33 + 26 Nov 2010; Robin H. Johnson <robbat2@g.o> +sg3_utils-1.30.ebuild:
34 + Version bump.
35
36 29 Oct 2010; Jeroen Roovers <jer@g.o> sg3_utils-1.29.ebuild:
37 Stable for HPPA (bug #329621).
38
39
40
41 1.1 sys-apps/sg3_utils/sg3_utils-1.30.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/sg3_utils/sg3_utils-1.30.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/sg3_utils/sg3_utils-1.30.ebuild?rev=1.1&content-type=text/plain
45
46 Index: sg3_utils-1.30.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/sg3_utils/sg3_utils-1.30.ebuild,v 1.1 2010/11/26 07:20:29 robbat2 Exp $
51
52 inherit eutils
53
54 DESCRIPTION="Apps for querying the sg SCSI interface"
55 HOMEPAGE="http://sg.danny.cz/sg/"
56 SRC_URI="http://sg.danny.cz/sg/p/${P}.tgz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
61 IUSE=""
62
63 DEPEND="sys-devel/libtool"
64 RDEPEND="sys-apps/sdparm"
65 PDEPEND=">=sys-apps/rescan-scsi-bus-1.24"
66
67 src_unpack() {
68 unpack ${A}
69 cd "${S}"
70 epatch "${FILESDIR}"/${PN}-1.26-stdint.patch
71 }
72
73 src_install() {
74 emake install DESTDIR="${D}" || die "make install failed"
75 dodoc ChangeLog AUTHORS COVERAGE CREDITS README*
76 dodoc doc/README examples/*.txt
77 newdoc scripts/README README.scripts
78 dosbin scripts/scsi* || die
79
80 # Better fix for bug 231089; some packages look for sgutils2
81 local path lib
82 path="/usr/$(get_libdir)"
83 for lib in "${D}"/usr/$(get_libdir)/libsgutils2.*; do
84 lib=${lib##*/}
85 dosym "${lib}" "${path}/${lib/libsgutils2/libsgutils}"
86 done
87 }