summaryrefslogtreecommitdiff
blob: 93c0778d167d0bb9b1dcc10410af569b0344d74b (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
48
49
# Copyright 1999-2002 Gentoo Technologies, Inc.
# 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.3 2002/07/25 12:57:04 seemant Exp $

S=${WORKDIR}/${P}
DESCRIPTION="A simple utility, to read the temperature of SMART IDE hard drives."
SRC_URI="http://coredump.free.fr/linux/${P}.tar.gz"
HOMEPAGE="http://coredump.free.fr/linux/harddrive.html"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"

DEPEND="virtual/glibc"

src_unpack() {
	unpack ${A} ; cd ${S}

	# patch hddtemp.c
	patch -p0 < ${FILESDIR}/hddtemp-0.2-db_location.patch

	# patch Makefile
	mv Makefile Makefile.orig
	sed -e "s:^CFLAGS.*:CFLAGS=${CFLAGS} -DARCH_I386:" \
		-e "s:^CC.*:CC=gcc:" \
		Makefile.orig > Makefile

	# copy over hddtemp database file
	cp ${FILESDIR}/hddtemp.db ./
}

src_compile() {

	make || die

}

src_install () {

	exeinto /usr/bin
	doexe hddtemp
	dodir /usr/share/hddtemp
	insinto /usr/share/hddtemp
	doins hddtemp.db

	#docs
	dodoc README COPYING

}