blob: e801d524b6619e84f9cdb32cd17c21504b271951 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-misc/oww/oww-0.83.2.ebuild,v 1.1 2010/06/24 20:58:10 jlec Exp $
EAPI="3"
DESCRIPTION="A one-wire weather station for Dallas Semiconductor"
HOMEPAGE="http://oww.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="Artistic"
SLOT="0"
IUSE="gtk nls usb"
KEYWORDS="~amd64 ~x86"
RDEPEND="
net-misc/curl
x11-libs/gtk+:2"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_prepare() {
sed -i \
-e "s:doc/oww:share/doc/${PF}/:" \
-e '/COPYING\\/d' \
-e '/INSTALL\\/d' \
Makefile.in || die "Failed to fix doc install path"
}
src_configure() {
econf \
--enable-interactive \
$(use_enable nls) \
$(use_enable gtk gui) \
$(use_with usb)
}
src_install () {
emake DESTDIR="${D}" install || die "emake install failed"
}
|