blob: 0d4cb2b6065051dd50abc3bf5be301b7a55ba781 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.2.ebuild,v 1.26 2005/01/01 11:05:22 eradicator Exp $
inherit eutils toolchain-funcs
DESCRIPTION="A simple utility to read the temperature of SMART capable hard drives"
HOMEPAGE="http://www.guzu.net/linux/hddtemp.php"
SRC_URI="http://www.guzu.net/linux/${P}.tar.gz
mirror://gentoo/hddtemp.db"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc"
IUSE=""
DEPEND="virtual/libc
>=sys-apps/sed-4"
src_unpack() {
unpack ${A} ; cd ${S}
# patch hddtemp.c
epatch ${FILESDIR}/hddtemp-0.2-db_location.patch
# patch Makefile
sed -i -e "s:^CFLAGS.*:CFLAGS=${CFLAGS} -DARCH_I386:" \
-e "s:^CC.*:CC=$(tc-getCC):" \
Makefile
}
src_compile() {
make || die
}
src_install() {
dobin hddtemp || die
insinto /usr/share/hddtemp
doins ${DISTDIR}/hddtemp.db
dodoc README
}
|