blob: 6d27913904edffee9143b8677e81254168d6d807 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/digitemp/digitemp-3.3.2.ebuild,v 1.2 2005/04/19 13:38:52 seemant Exp $
DESCRIPTION="Temperature logging and reporting using Dallas Semiconductor's iButtons and 1-Wire protocol"
HOMEPAGE="http://www.digitemp.com http://www.ibutton.com"
SRC_URI="http://www.digitemp.com/software/linux/${P}.tar.gz"
IUSE=""
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
DEPEND="virtual/libc"
exampledir="/usr/share/doc/${PF}"
target="ds9097u"
src_compile() {
# default is to compile to the ds9097u. local use flag takes care of
# passive ds9097. the ds9097u setting is what i have, so probably a safe
# default - nothing special here.
[ "${SERIAL_DRIVER}" = ds9097 ] && target="ds9097"
make clean
ewarn ""
ewarn "making for ${target} serial controller. if you would like support"
ewarn "for another controller, please set SERIAL_DRIVER=\"ds9097u\" or"
ewarn "SERIAL_DRIVER=\"ds9097\" as appropriate"
ewarn ""
make LOCK="no" ${target} || die
}
src_install() {
target=${target/u/U}
mv digitemp_${target} digitemp
dobin digitemp || die
dodoc README FAQ TODO
# method one: don't treat the examples as docs; place them somewhere else.
# then tell the user where to find this stuff. suitable alternative:
# specify exampledir="/usr/share/doc/${PF}"
local perldir="${exampledir}/perl_examples"
insinto ${perldir}
doins perl/*
local pythondir="${exampledir}/python_examples"
insinto ${pythondir}
doins python/*
local rrdbdir="${exampledir}/rrdb_examples"
insinto ${rrdbdir}
doins rrdb/*
}
pkg_postinst() {
ewarn "set the SERIAL_DRIVER environment variable to ds9097 to build"
ewarn "for that controller instead"
einfo ""
einfo "examples of using digitemp with python, perl, and rrdtool are"
einfo "located in ${exampledir}"
einfo ""
}
|