summaryrefslogtreecommitdiff
path: root/x11-misc/florence/florence-0.6.3-r1.ebuild
blob: 588e2e07bc5b93705621d773ebdd01a4df03b37c (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
# Copyright 2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

DESCRIPTION="Florence is an extensible scalable virtual keyboard for X11"
HOMEPAGE="http://florence.sourceforge.net"
SRC_URI="https://downloads.sourceforge.net/project/${PN}/${PN}/${PV}/${P}.tar.bz2"

LICENSE="GPLv2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+at-spi +libnotify +xtst docs"

DEPEND="
	>=x11-libs/gtk+-3.0
	dev-libs/libxml2
	gnome-base/librsvg
	sys-devel/gettext
	dev-util/intltool
	media-libs/gstreamer
	at-spi? ( app-accessibility/at-spi2-core )
	libnotify? ( x11-libs/libnotify )
	xtst? ( x11-libs/libXtst )
	docs? ( app-text/gnome-doc-utils )
"
RDEPEND="${DEPEND}"
BDEPEND=""

src_configure() {
	econf \
		$(use_with at-spi) \
		$(use_with libnotify) \
		$(use_with xtst) \
		$(use_with docs)
}

src_compile() {
	emake -j1 || die "emake failed"
}