blob: 0e9720182fada1729e597bf593efb37e766774d1 (
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-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellm-reminder/gkrellm-reminder-0.3.5.ebuild,v 1.6 2002/12/09 04:41:56 manson Exp $
MY_P=${P/gkrellm-/}
S=${WORKDIR}/${MY_P}
DESCRIPTION="a Reminder Plugin for Gkrellm"
SRC_URI="http://engr.oregonstate.edu/~simonsen/reminder/${MY_P}.tar.gz"
HOMEPAGE="http://www.engr.orst.edu/~simonsen/reminder"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc "
DEPEND=">=app-admin/gkrellm-1.2.1"
src_compile() {
make || die
}
src_install () {
insinto /usr/lib/gkrellm/plugins
doins reminder.so
dodoc README ChangeLog COPYING
}
|