blob: 888b29e527261d94c03378f6f31f5cf8e4dba29c (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellm-xkb/gkrellm-xkb-1.05.ebuild,v 1.2 2005/09/02 19:22:32 ticho Exp $
DESCRIPTION="XKB keyboard switcher for gkrellm2"
HOMEPAGE="http://sweb.cz/tripie/gkrellm/xkb/"
SRC_URI="http://sweb.cz/tripie/gkrellm/xkb/dist/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=">=app-admin/gkrellm-2"
src_compile() {
emake || die "emake failed"
}
src_install() {
insinto /usr/lib/gkrellm2/plugins
doins xkb.so
dodoc AUTHORS LICENSE ChangeLog
}
|