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: sg3_utils-1.36.ebuild ChangeLog
Date: Mon, 03 Jun 2013 15:56:48
Message-Id: 20130603155645.24E082171D@flycatcher.gentoo.org
1 robbat2 13/06/03 15:56:45
2
3 Modified: ChangeLog
4 Added: sg3_utils-1.36.ebuild
5 Log:
6 Bump.
7
8 (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.96 sys-apps/sg3_utils/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/sg3_utils/ChangeLog?rev=1.96&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/sg3_utils/ChangeLog?rev=1.96&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/sg3_utils/ChangeLog?r1=1.95&r2=1.96
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/sg3_utils/ChangeLog,v
20 retrieving revision 1.95
21 retrieving revision 1.96
22 diff -p -w -b -B -u -u -r1.95 -r1.96
23 --- ChangeLog 2 Jun 2013 08:39:20 -0000 1.95
24 +++ ChangeLog 3 Jun 2013 15:56:44 -0000 1.96
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/sg3_utils
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sg3_utils/ChangeLog,v 1.95 2013/06/02 08:39:20 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sg3_utils/ChangeLog,v 1.96 2013/06/03 15:56:44 robbat2 Exp $
30 +
31 +*sg3_utils-1.36 (03 Jun 2013)
32 +
33 + 03 Jun 2013; Robin H. Johnson <robbat2@g.o> +sg3_utils-1.36.ebuild:
34 + Bump.
35
36 02 Jun 2013; Agostino Sarubbo <ago@g.o> sg3_utils-1.35.ebuild:
37 Stable for sh, wrt bug #463142
38
39
40
41 1.1 sys-apps/sg3_utils/sg3_utils-1.36.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/sg3_utils/sg3_utils-1.36.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/sg3_utils/sg3_utils-1.36.ebuild?rev=1.1&content-type=text/plain
45
46 Index: sg3_utils-1.36.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.36.ebuild,v 1.1 2013/06/03 15:56:44 robbat2 Exp $
51
52 EAPI="4"
53
54 inherit eutils multilib
55
56 DESCRIPTION="Apps for querying the sg SCSI interface"
57 HOMEPAGE="http://sg.danny.cz/sg/"
58 SRC_URI="http://sg.danny.cz/sg/p/${P}.tgz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
63 IUSE="static-libs"
64
65 DEPEND="sys-devel/libtool"
66 RDEPEND="sys-apps/sdparm"
67 PDEPEND=">=sys-apps/rescan-scsi-bus-1.24"
68
69 src_prepare() {
70 epatch "${FILESDIR}"/${PN}-1.26-stdint.patch
71 }
72
73 src_configure() {
74 econf \
75 $(use_enable static-libs static)
76 }
77
78 src_install() {
79 default
80 dodoc COVERAGE doc/README examples/*.txt
81 newdoc scripts/README README.scripts
82 dosbin scripts/scsi*
83
84 # Better fix for bug 231089; some packages look for sgutils2
85 local path lib
86 path="/usr/$(get_libdir)"
87 for lib in "${D}"/usr/$(get_libdir)/libsgutils2.*; do
88 lib=${lib##*/}
89 dosym "${lib}" "${path}/${lib/libsgutils2/libsgutils}"
90 done
91
92 prune_libtool_files
93 }