blob: 6d11962ff900736c1b39457099ece098797475b7 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/oww/oww-0.71.1.ebuild,v 1.2 2004/04/19 12:03:21 phosphan Exp $
DESCRIPTION="A one-wire weather station for Dallas Semiconductor"
HOMEPAGE="http://oww.sourceforge.net/"
SRC_URI="mirror://sourceforge/sourceforge/oww/oww-${PV}.tar.gz"
LICENSE="Artistic"
SLOT="0"
IUSE=""
KEYWORDS="~x86"
DEPEND=">=x11-libs/gtk+-1.2.10
gnome-base/libglade
media-libs/gdk-pixbuf
>=gnome-base/libghttp-1.0.9"
src_compile() {
econf --enable-interactive || die "Failed during configure"
emake || die "Failed during make."
}
src_install () {
make DESTDIR="${D}" install || die "Failed during install."
dodoc README* NEWS
}
|