blob: 896d4048440cbece63348506b042d3791e7f3752 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellmitime/gkrellmitime-1.0.ebuild,v 1.8 2004/01/20 15:50:03 agriffis Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Internet Time plugin for Gkrellm2"
SRC_URI="http://eric.bianchi.free.fr/gkrellm/${P}.tar.gz"
HOMEPAGE="http://eric.bianchi.free.fr/gkrellm/"
DEPEND=">=app-admin/gkrellm-2*"
SLOT="2"
LICENSE="GPL-2"
KEYWORDS="x86 ~sparc ~ppc alpha"
src_compile() {
make || die
}
src_install () {
insinto /usr/lib/gkrellm2/plugins
doins gkrellm_itime.so
dodoc README ChangeLog COPYING
}
|