2020-05-04 17:59:31 +00:00
|
|
|
# Copyright 1999-2020 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
2020-05-04 18:07:06 +00:00
|
|
|
inherit autotools eutils
|
2020-05-04 17:59:31 +00:00
|
|
|
|
|
|
|
DESCRIPTION="Keeps per window keyboard layout under X11"
|
2020-05-04 18:43:20 +00:00
|
|
|
HOMEPAGE="https://sourceforge.net/projects/perwindowlayout"
|
2020-05-04 18:27:18 +00:00
|
|
|
SRC_URI="https://downloads.sourceforge.net/perwindowlayout/${PN}-${PV}.tar.gz"
|
2020-05-04 18:24:28 +00:00
|
|
|
RESTRICT="nomirror"
|
2020-05-04 17:59:31 +00:00
|
|
|
LICENSE="GPL-3"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
2020-05-04 18:03:44 +00:00
|
|
|
IUSE="dbus"
|
2020-05-04 17:59:31 +00:00
|
|
|
|
|
|
|
DEPEND="dev-libs/glib:2=
|
|
|
|
x11-libs/libX11:0=
|
|
|
|
dbus? (
|
|
|
|
sys-apps/dbus:0=
|
|
|
|
>=dev-libs/dbus-glib-0.86:0=
|
|
|
|
)
|
|
|
|
"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
|
|
|
|
src_prepare() {
|
2020-05-04 18:08:38 +00:00
|
|
|
default
|
2020-05-04 17:59:31 +00:00
|
|
|
eautoreconf
|
|
|
|
}
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
econf
|
|
|
|
}
|