blob: 80a920ac891060d0fe4049007c8a60184f88748d (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit gkrellm-plugin
DESCRIPTION="Binary clock for GKrellM1/2"
HOMEPAGE="http://www.kagami.org/gkbinclock/"
SRC_URI="http://www.kagami.org/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="app-admin/gkrellm"
RDEPEND="${DEPEND}"
src_compile() {
emake ${PN}.2.so || die "emake failed"
}
src_install() {
PLUGIN_SO=${PN}.2.so gkrellm-plugin_src_install
}
|