blob: aa22dad783b4dec02d2b1ebf6ce66cc5ed3865a3 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/qplug/qplug-0.4.1.ebuild,v 1.2 2004/06/25 01:10:49 agriffis Exp $
inherit nsplugins
DESCRIPTION="Netscape plugin which gets basic informations from a QuakeWorld or Quake2 server"
HOMEPAGE="http://www.linuxquake.com/qplug/"
SRC_URI="http://www.linuxquake.com/qplug/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND="virtual/x11"
src_compile() {
emake OPTIMIZER="${CFLAGS}" || die
}
src_install() {
exeinto /opt/netscape/plugins
doexe qplug.so
inst_plugin /opt/netscape/plugins/qplug.so
dodoc Readme
}
|