forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
consolehm-1.31.ebuild
46 lines (37 loc) · 1 KB
/
consolehm-1.31.ebuild
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
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
inherit eutils
DESCRIPTION="Console based hardware monitor for FreeBSD"
HOMEPAGE="ftp://ftp.freebsd.org/pub/FreeBSD/ports/local-distfiles/fenner/"
SRC_URI="ftp://ftp.freebsd.org/pub/FreeBSD/ports/local-distfiles/fenner/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~x86-fbsd"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}"
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${PN}-gcc4.patch || die "patch failed"
export CHMS="${S}/consolehm"
# The only 'SMBus' smb.h i've found is in a different place:
cd "${S}/consolehm"
sed -i.orig -e 's:machine/smb.h:dev/smbus/smb.h:g' \
configure.in \
configure \
chm.h || die "sed failed."
}
src_compile() {
cd "${S}/consolehm"
econf || die "econf failed"
MAKE=make emake || die "emake failed"
}
src_install() {
dobin "${S}/consolehm/chm"
doman "${S}/consolehm/chm.8"
dodoc "${S}"/CHANGELOG
dodoc "${S}"/README
dodoc "${S}"/TODO
}