diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-07-12 20:33:38 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-07-14 16:07:12 +0200 |
commit | b2c650e677f9a60212b40f429080ec427355bbff (patch) | |
tree | 5065808ab96da9c60ff2c2bfa519deb2d6a71c19 /sys-apps/ckbcomp | |
parent | www-client/elinks: add python3.12 support (diff) | |
download | gentoo-b2c650e677f9a60212b40f429080ec427355bbff.tar.gz gentoo-b2c650e677f9a60212b40f429080ec427355bbff.tar.bz2 gentoo-b2c650e677f9a60212b40f429080ec427355bbff.zip |
sys-apps/ckbcomp: add 1.230
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/37535
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'sys-apps/ckbcomp')
-rw-r--r-- | sys-apps/ckbcomp/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/ckbcomp/ckbcomp-1.230.ebuild | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/sys-apps/ckbcomp/Manifest b/sys-apps/ckbcomp/Manifest index 174ca3adc796..7c2a8fe218c7 100644 --- a/sys-apps/ckbcomp/Manifest +++ b/sys-apps/ckbcomp/Manifest @@ -1 +1,2 @@ DIST console-setup-1.217.tar.gz 3273430 BLAKE2B cf48a8dbd250f3ee0e1093b3dc0b13d9b23a13e456f7c0c60d4d8764bc1ed41bc6f0da57d4f0e5642fdceca9a26d02e5b986df019644d238bab0c91028958aed SHA512 20b148e3ffa1a57509e1bdab091ae36df04f363c7ca54e1decc15c14325df85b3d100e4b9a1e5884c18d47d45066b029bd450c9588f3103c03ad102d348869ad +DIST console-setup-1.230.tar.gz 3282273 BLAKE2B 4d61f2cf0e4fe5230e4cbbee3ccda1a518ca72b5d78cd3bd1bac075456966faad2df384d2c02247ed3ab1406c72b74f5bd9e27dfc918e5680cdf1be28d7f061d SHA512 86c8d20ae5609ea881a9d73c774d3f4db7d8ea1da9789bfee7e5e4277783c13311ab923657d579133efd8803bded32cb07e9564464f79c14dba90b9bcafefdf9 diff --git a/sys-apps/ckbcomp/ckbcomp-1.230.ebuild b/sys-apps/ckbcomp/ckbcomp-1.230.ebuild new file mode 100644 index 000000000000..962be23d3a20 --- /dev/null +++ b/sys-apps/ckbcomp/ckbcomp-1.230.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Compile an XKB keymap for loadkeys" +HOMEPAGE="https://salsa.debian.org/installer-team/console-setup" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://anonscm.debian.org/git/d-i/console-setup.git" +else + SRC_URI="https://salsa.debian.org/installer-team/console-setup/-/archive/${PV}/console-setup-${PV}.tar.gz" + S="${WORKDIR}"/console-setup-${PV} + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-2" +SLOT="0" + +RDEPEND=" + dev-lang/perl + sys-apps/kbd + x11-misc/xkeyboard-config +" + +src_compile() { + : +} + +src_install() { + dobin Keyboard/ckbcomp +} |