blob: 56edef927287b3a1c76b475841016476ad277c4a (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellm-trayicons/gkrellm-trayicons-1.02.ebuild,v 1.7 2005/04/27 20:31:36 herbs Exp $
inherit multilib
DESCRIPTION="Configurable Tray Icons for GKrellM"
HOMEPAGE="http://sweb.cz/tripie/gkrellm/trayicons/"
SRC_URI="http://sweb.cz/tripie/gkrellm/trayicons/dist/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ppc amd64"
IUSE=""
DEPEND="app-admin/gkrellm"
src_compile() {
emake || die "emake failed"
}
src_install() {
insinto /usr/$(get_libdir)/gkrellm2/plugins
doins trayicons.so
dodoc AUTHORS LICENSE ChangeLog
}
|