blob: 21b50d9b9eae0648129f1d8218af9fe9b22b98bb (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/dmidecode/dmidecode-2.6.ebuild,v 1.5 2006/04/27 01:55:15 vapier Exp $
inherit flag-o-matic
DESCRIPTION="DMI (Desktop Management Interface) table related utilities"
HOMEPAGE="http://www.nongnu.org/dmidecode/"
SRC_URI="http://savannah.nongnu.org/download/dmidecode/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* amd64 ia64 x86"
IUSE=""
DEPEND=""
RDEPEND=""
src_unpack() {
unpack ${A}
cd ${S}
use ia64 && append-flags -D__IA64__
sed -i \
-e "s:-O2:${CFLAGS}${ARCHFLAGS}:" \
-e '/^mandir/s:/man:/share/man:' \
-e "s:/usr/local:${D}/usr:" \
Makefile || die "manpage sed failed"
}
src_compile() {
emake || die "emake failed"
}
src_install() {
dodir /usr/sbin /usr/share/man/man8
make install || die "make install failed"
dodoc README AUTHORS CHANGELOG
}
|