Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 434704 | Differences between
and this patch

Collapse All | Expand All

(-)a/matchbox-keyboard/matchbox-keyboard-0.1-r1.ebuild (+37 lines)
Line 0 Link Here
1
--- matchbox-keyboard.desktop	2005-10-20 10:55:44.000000000 +0000
Line 0 Link Here
1
# Copyright 1999-2014 Gentoo Foundation
2
# Distributed under the terms of the GNU General Public License v2
3
# $Id$
4
5
EAPI="2"
6
7
inherit versionator eutils
8
9
DESCRIPTION="Matchbox-keyboard is an on screen 'virtual' or 'software' keyboard"
10
HOMEPAGE="http://matchbox-project.org/"
11
SRC_URI="http://matchbox-project.org/sources/${PN}/$(get_version_component_range 1-2)/${P}.tar.bz2"
12
LICENSE="GPL-2"
13
SLOT="0"
14
15
KEYWORDS="amd64 ~arm ~hppa ppc x86"
16
IUSE="debug cairo"
17
18
DEPEND="x11-libs/libfakekey
19
	cairo? ( x11-libs/cairo[X] )
20
	!cairo? ( x11-libs/libXft )"
21
22
src_prepare() {
23
	epatch "${FILESDIR}"/${PN}-0.1-modernize_desktop.patch
24
}
25
26
src_configure() {
27
	econf	$(use_enable debug) \
28
		$(use_enable cairo) \
29
		|| die "Configuration failed"
30
}
31
32
src_install() {
33
	make DESTDIR="${D}" install || die "Installation failed"
34
35
	dodoc AUTHORS ChangeLog INSTALL NEWS README
36
}

Return to bug 434704