summaryrefslogtreecommitdiff
path: root/x11-misc/kbdd/kbdd-scm.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'x11-misc/kbdd/kbdd-scm.ebuild')
-rw-r--r--x11-misc/kbdd/kbdd-scm.ebuild32
1 files changed, 32 insertions, 0 deletions
diff --git a/x11-misc/kbdd/kbdd-scm.ebuild b/x11-misc/kbdd/kbdd-scm.ebuild
new file mode 100644
index 0000000..25fb61b
--- /dev/null
+++ b/x11-misc/kbdd/kbdd-scm.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit git-r3 autotools
+
+DESCRIPTION="Very simple layout switcher"
+HOMEPAGE="https://github.com/qnikst/kbdd"
+SRC_URI=""
+
+EGIT_REPO_URI="https://github.com/qnikst/kbdd.git"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS=""
+IUSE="dbus debug"
+
+DEPEND="dev-libs/glib
+ x11-libs/libX11
+ dbus? (
+ sys-apps/dbus
+ >=dev-libs/dbus-glib-0.86
+ )"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+ eautoreconf
+}
+src_configure() {
+ econf $(use_enable dbus) $(use_enable debug) || die "econf failed"
+}