summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2002-11-30 02:42:21 +0000
committerMike Frysinger <vapier@gentoo.org>2002-11-30 02:42:21 +0000
commita2d172870650a6294e58e8f87806a3a4cd09796f (patch)
tree6d8a472b06132a831e6c21ea8647b36034106833 /app-admin/hddtemp
parent2.11y release... Mostly cleanups. (diff)
downloadhistorical-a2d172870650a6294e58e8f87806a3a4cd09796f.tar.gz
historical-a2d172870650a6294e58e8f87806a3a4cd09796f.tar.bz2
historical-a2d172870650a6294e58e8f87806a3a4cd09796f.zip
Changed src_install () to src_install()
Diffstat (limited to 'app-admin/hddtemp')
-rw-r--r--app-admin/hddtemp/hddtemp-0.2.ebuild16
1 files changed, 3 insertions, 13 deletions
diff --git a/app-admin/hddtemp/hddtemp-0.2.ebuild b/app-admin/hddtemp/hddtemp-0.2.ebuild
index b4ed2b706fa5..8799d6203f3a 100644
--- a/app-admin/hddtemp/hddtemp-0.2.ebuild
+++ b/app-admin/hddtemp/hddtemp-0.2.ebuild
@@ -1,12 +1,10 @@
# 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.8 2002/10/20 18:14:57 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.2.ebuild,v 1.9 2002/11/30 02:25:51 vapier 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"
-IUSE=""
SLOT="0"
LICENSE="GPL-2"
@@ -31,20 +29,12 @@ src_unpack() {
}
src_compile() {
-
make || die
-
}
-src_install () {
-
- exeinto /usr/bin
- doexe hddtemp
- dodir /usr/share/hddtemp
+src_install() {
+ dobin hddtemp
insinto /usr/share/hddtemp
doins hddtemp.db
-
- #docs
dodoc README COPYING
-
}