blob: c420cb25671af8368cbc4773f8e4d18e59fbd300 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/multiimonc/multiimonc-0.3.2.ebuild,v 1.3 2004/06/23 19:05:06 hansmi Exp $
inherit eutils
DESCRIPTION="A wxWidgets-based client for fli4l"
SRC_URI="http://www.fli4l.de/german/extern/multiimonc/MultiImonC-${PV}.tar.bz2"
HOMEPAGE="http://www.hansmi.ch/software/multiimonc"
S="${WORKDIR}/MultiImonC-${PV}"
KEYWORDS="x86 ppc"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
DEPEND=">=x11-libs/wxGTK-2.4.1
virtual/glibc
virtual/x11"
src_compile() {
# Fix a divide-by-zero-error in UsagePlot.cpp
( cd "${S}/src" && epatch "${FILESDIR}/UsagePlot-0.3.2.diff" )
econf || die "could not configure"
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} install || die "install problem"
}
|