blob: 3d8d1ef67a848eca66eb7ad73585dbeef83c104e (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmifs/wmifs-1.3_beta1-r2.ebuild,v 1.7 2007/07/11 20:39:22 mr_bones_ Exp $
inherit eutils
IUSE=""
MY_PV=${PV/_beta/b}
S=${WORKDIR}/wmifs.app/wmifs
DESCRIPTION="Network monitoring dock.app"
HOMEPAGE="http://www.linux.tucows.com"
SRC_URI="http://linux.tucows.tierra.net/files/x11/dock/${PN}-${MY_PV}.tar.gz
http://http.us.debian.org/debian/pool/main/w/wmifs/${PN}_${MY_PV}-11.diff.gz"
RDEPEND="|| ( (
x11-libs/libX11
x11-libs/libXext
x11-libs/libXpm )
virtual/x11 )"
DEPEND="${RDEPEND}
|| ( x11-proto/xextproto virtual/x11 )"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc alpha hppa ~mips ia64 amd64"
src_unpack()
{
unpack ${A}
cd ${S}
# patch to allow for longer interface names
# and prettify program output for long names
epatch ${WORKDIR}/${PN}_${MY_PV}-11.diff
}
src_compile()
{
emake CFLAGS="${CFLAGS}" || die
}
src_install ()
{
dobin wmifs
insinto /usr/share/wmifs
doins sample.wmifsrc
cd ..
dodoc BUGS CHANGES HINTS README TODO
}
|