blob: 34e03a6256f8c22070dbc162417f8d34128e92b2 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-block/smp_utils/smp_utils-0.93.ebuild,v 1.2 2009/02/11 02:52:48 robbat2 Exp $
inherit eutils
DESCRIPTION="Utilities for SAS management protocol (SMP)"
HOMEPAGE="http://sg.danny.cz/sg/smp_utils.html"
SRC_URI="http://sg.danny.cz/sg/p/${P}.tgz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~ppc ~x86 ~amd64"
IUSE=""
DEPEND=""
RDEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
for i in Makefile */Makefile ; do
sed -i \
-e "/^CFLAGS/s:-g -O2:${CFLAGS}:g" \
-e '/^PREFIX=/s:/local::' \
-e '/^INSTDIR=/s:/bin:/sbin:' \
-e 's:$(DESTDIR)/:$(DESTDIR):' \
-e "/^LIBDIR=/s:/lib$:/$(get_libdir):" \
-e '/^MANDIR=/s:)/man:)/share/man:' \
-e 's:install -s :install :' \
$i || die "sed of $i failed"
done
}
src_compile() {
emake || die "emake failed"
}
src_install() {
dodoc AUTHORS ChangeLog COVERAGE CREDITS README* TODO
dohtml doc/*html
make install DESTDIR="${D}" || die "make install failed"
}
|