blob: 5ea40f782d9ce823219e9824884cf9391c91c622 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 1999-2012 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.34.ebuild,v 1.1 2012/10/14 23:56:03 robbat2 Exp $
EAPI="4"
inherit eutils
DESCRIPTION="Apps for querying the sg SCSI interface"
HOMEPAGE="http://sg.danny.cz/sg/"
SRC_URI="http://sg.danny.cz/sg/p/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
IUSE="static-libs"
DEPEND="sys-devel/libtool"
RDEPEND="sys-apps/sdparm"
PDEPEND=">=sys-apps/rescan-scsi-bus-1.24"
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.26-stdint.patch
}
src_configure() {
econf \
$(use_enable static-libs static)
}
src_install() {
emake install DESTDIR="${D}"
dodoc ChangeLog AUTHORS COVERAGE CREDITS README*
dodoc doc/README examples/*.txt
newdoc scripts/README README.scripts
dosbin scripts/scsi*
# Better fix for bug 231089; some packages look for sgutils2
local path lib
path="/usr/$(get_libdir)"
for lib in "${D}"/usr/$(get_libdir)/libsgutils2.*; do
lib=${lib##*/}
dosym "${lib}" "${path}/${lib/libsgutils2/libsgutils}"
done
find "${D}" -name '*.la' -exec rm -f {} +
}
|