diff options
author | Jeroen Roovers <jer@gentoo.org> | 2020-07-21 11:42:21 +0200 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2020-07-21 12:30:26 +0200 |
commit | 816f5343174025ecc68ada5ec8d208523133cd0e (patch) | |
tree | f46747f778d1da61f93663baf4f25daecf7efb67 /x11-misc/xkbd | |
parent | sci-libs/ccolamd: Drop 2.8.0 (diff) | |
download | gentoo-816f5343174025ecc68ada5ec8d208523133cd0e.tar.gz gentoo-816f5343174025ecc68ada5ec8d208523133cd0e.tar.bz2 gentoo-816f5343174025ecc68ada5ec8d208523133cd0e.zip |
x11-misc/xkbd: Version 0.8.18
Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Jeroen Roovers <jer@gentoo.org>
Diffstat (limited to 'x11-misc/xkbd')
-rw-r--r-- | x11-misc/xkbd/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/xkbd/xkbd-0.8.18.ebuild | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/x11-misc/xkbd/Manifest b/x11-misc/xkbd/Manifest index c9cc0566f8c4..83c85c527345 100644 --- a/x11-misc/xkbd/Manifest +++ b/x11-misc/xkbd/Manifest @@ -1 +1,2 @@ DIST xkbd-0.8.16.tar.gz 347616 BLAKE2B a7ee906d6ae3328d5366b88ebe960b6fdf84a5cad1c1db4b1a0056fc5842196699dfa749c3c0398054bc54073b422798c0efaf57c8116d05b6754c84d6abae03 SHA512 8410f722cb93069eea26f9d1ed6b9fea76ed5222b8586c2f78ccc1a0f040a964e165df0611ce72c108dbc7adeec31515595c81be3867e68c0cadd8846d985d4a +DIST xkbd-0.8.18.tar.gz 50421 BLAKE2B 7652f33cdf00584cc55fcb9dbced9d92c57cf6383b6164d8c026bf88c962e7469b094de7454b451745feb396fbe5ad561193c9d4de8e7b9f65c27a55e7cf478c SHA512 335e18e76e6bf8b7142eb785c9003e8a3d80719e6737149be8e1178bd7281fada6808ea0b18538caf3c3fa1d62778a3d6a45a1fa8b3b0845dca19f3e62942831 diff --git a/x11-misc/xkbd/xkbd-0.8.18.ebuild b/x11-misc/xkbd/xkbd-0.8.18.ebuild new file mode 100644 index 000000000000..d7baae0ef8c1 --- /dev/null +++ b/x11-misc/xkbd/xkbd-0.8.18.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools flag-o-matic + +DESCRIPTION="onscreen soft keyboard for X11" +HOMEPAGE="https://github.com/mahatma-kaganovich/xkbd" +SRC_URI="https://github.com/mahatma-kaganovich/${PN}/archive/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" +IUSE="debug +xft +xpm" + +RDEPEND=" + x11-libs/libX11 + x11-libs/libXtst + xft? ( x11-libs/libXft ) + xpm? ( x11-libs/libXpm ) +" +DEPEND=" + ${RDEPEND} + x11-base/xorg-proto +" +DOCS=( AUTHORS ) +S=${WORKDIR}/${PN}-${P} + +src_prepare() { + default + eautoreconf +} + +src_configure() { + use debug && append-cppflags -DDEBUG + econf \ + $(use_enable xft) \ + $(use_enable xpm) \ + --disable-debug +} |