blob: ed8ae4dd2abd80835d38612274332217201083a8 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellmlaunch/gkrellmlaunch-0.4.ebuild,v 1.6 2004/06/24 22:55:25 agriffis Exp $
IUSE=""
DESCRIPTION="a Program-Launcher Plugin for GKrellM"
SRC_URI="mirror://sourceforge/gkrellmlaunch/${P}.tar.gz"
HOMEPAGE="http://gkrellmlaunch.sourceforge.net/"
DEPEND="=app-admin/gkrellm-1.2*"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc "
src_compile() {
make || die
}
src_install () {
insinto /usr/lib/gkrellm/plugins
doins gkrellmlaunch.so
dodoc README
}
|