blob: 86677cd71cb5f396d2f13d16b9e5b6e6539960f8 (
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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmalms/wmalms-1.1.1-r1.ebuild,v 1.3 2008/06/28 06:40:39 maekke Exp $
inherit autotools eutils
DESCRIPTION="lm_sensors monitoring docklet."
HOMEPAGE="http://www.geocities.com/wmalms"
SRC_URI="http://www.geocities.com/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="x11-libs/libXext
x11-libs/libXpm
x11-libs/libX11
sys-apps/lm_sensors"
DEPEND="${RDEPEND}
x11-proto/xextproto
x11-proto/xproto
x11-libs/libXt"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-configure.patch
epatch "${FILESDIR}"/${P}-makefile.patch
eautoreconf
}
src_compile() {
econf --docdir="/usr/share/doc/${PF}"
emake || die "compile failed"
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
}
|