blob: 91ef1b9c10294715b471c57d2cac89fc934cfe40 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch-editor/keytouch-editor-3.1.0.ebuild,v 1.2 2006/12/28 15:54:31 peper Exp $
inherit eutils linux-info
DOC_V=3.0
DESCRIPTION="Generates keyboard files for use by keyTouch"
HOMEPAGE="http://keytouch.sourceforge.net/"
SRC_URI="mirror://sourceforge/keytouch/${P}.tar.gz
doc? ( mirror://sourceforge/keytouch/keytouch_editor_${DOC_V}.pdf )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc kde"
RDEPEND=">=x11-libs/gtk+-2
kde? ( || (
kde-base/kdesu
kde-base/kdebase ) )
!kde? ( x11-libs/gksu )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
make_desktop_entry ${PN} "keyTouch editor" ${PN}.png System
newicon pixmaps/icon.png ${PN}.png
dodoc AUTHORS ChangeLog
use doc && dodoc "${DISTDIR}"/*.pdf
}
pkg_postinst() {
if ! linux_chkconfig_present INPUT_EVDEV ; then
ewarn "To use ${PN}, CONFIG_INPUT_EVDEV must"
ewarn "be enabled in your kernel config."
ewarn
ewarn " Device Drivers"
ewarn " Input device support"
ewarn " <*>/<M> Event interface"
fi
}
|