blob: 8d1fd2e70b5fe317990d73351ba7a4ef23c323c7 (
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-2003 Gentoo Technologies, Inc.
# 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.1 2003/08/03 20:57:15 vapier 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
}
|