blob: fa3a3907eb4898f36daf1a4b84a5baaccad62afb (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-util/showeq/showeq-5.0.0.16.ebuild,v 1.2 2005/01/29 21:46:00 dragonheart Exp $
inherit kde games
DESCRIPTION="A Everquest monitoring program"
HOMEPAGE="http://seq.sourceforge.net/"
SRC_URI="mirror://sourceforge/seq/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/x11
media-libs/libpng
virtual/libpcap
>=x11-libs/qt-3.1
>=sys-libs/gdbm-1.8.0"
src_compile() {
kde_src_compile nothing
egamesconf || die
emake || die "emake failed"
}
src_install() {
egamesinstall || die
doman showeq.1
dodoc BUGS CHANGES FAQ INSTALL README* ROADMAP TODO doc/*.{doc,txt}
dohtml doc/*
prepgamesdirs
}
|