diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-12 19:09:37 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-12 19:09:37 -0500 |
| commit | b590c8d7572b727d565cc0b8ff660d43569845de (patch) | |
| tree | 06f7a4102ea4e845df8b66660f252920d52952f9 /dev-libs/input-pad | |
| parent | 24f9cbfc4c34fdb6a6e03311674414e881ceab47 (diff) | |
| download | baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.gz baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.xz baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.zip | |
Adding metadata
Diffstat (limited to 'dev-libs/input-pad')
| -rw-r--r-- | dev-libs/input-pad/Manifest | 1 | ||||
| -rw-r--r-- | dev-libs/input-pad/files/input-pad-Wreturn-type.patch | 23 | ||||
| -rw-r--r-- | dev-libs/input-pad/files/input-pad-man.patch | 23 | ||||
| -rw-r--r-- | dev-libs/input-pad/input-pad-1.0.99_pre20140916-r1.ebuild | 57 | ||||
| -rw-r--r-- | dev-libs/input-pad/metadata.xml | 15 |
5 files changed, 119 insertions, 0 deletions
diff --git a/dev-libs/input-pad/Manifest b/dev-libs/input-pad/Manifest new file mode 100644 index 000000000000..e00aaff4f548 --- /dev/null +++ b/dev-libs/input-pad/Manifest @@ -0,0 +1 @@ +DIST input-pad-1.0.99.20140916.tar.gz 621070 BLAKE2B 93de9327cefc9df883720c1f9aa977c1220580b8b003082c5a84e511c8b83ecd632a45a6b1b86656bf8cc86e818c97cac69d604688eba569dc831488660aabbd SHA512 a7dd7996f69dbb6cc200be3c181e82ef8d701f85f1b27a886a8910afb3e673c1d71878e70b79141570a28a31dd47565868a990a358058ae8b99c29c76a316261 diff --git a/dev-libs/input-pad/files/input-pad-Wreturn-type.patch b/dev-libs/input-pad/files/input-pad-Wreturn-type.patch new file mode 100644 index 000000000000..2e50f8bce2b0 --- /dev/null +++ b/dev-libs/input-pad/files/input-pad-Wreturn-type.patch @@ -0,0 +1,23 @@ +--- a/input-pad/window-gtk.c ++++ b/input-pad/window-gtk.c +@@ -5462,7 +5462,7 @@ + + app = INPUT_PAD_GTK_APPLICATION (window_data); + +- g_return_if_fail (app->window != NULL); ++ g_return_val_if_fail (app->window != NULL, 0); + + return gtk_widget_get_visible (GTK_WIDGET (app->window)); + } +@@ -5661,8 +5661,9 @@ + { + InputPadGtkApplication *app; + +- g_return_if_fail (window_data != NULL && +- INPUT_PAD_IS_GTK_APPLICATION (window_data)); ++ g_return_val_if_fail (window_data != NULL && ++ INPUT_PAD_IS_GTK_APPLICATION (window_data), ++ -1); + + app = INPUT_PAD_GTK_APPLICATION (window_data); + diff --git a/dev-libs/input-pad/files/input-pad-man.patch b/dev-libs/input-pad/files/input-pad-man.patch new file mode 100644 index 000000000000..f54580f776ed --- /dev/null +++ b/dev-libs/input-pad/files/input-pad-man.patch @@ -0,0 +1,23 @@ +--- a/input-pad/Makefile.am ++++ b/input-pad/Makefile.am +@@ -226,19 +226,15 @@ + endif + + man_one_in_files = input-pad.1.in +-man_one_files = $(man_one_in_files:.1.in=.1) +-man_one_DATA =$(man_one_files:.1=.1.gz) ++man_one_DATA = $(man_one_in_files:.1.in=.1) + man_onedir = $(mandir)/man1 + %.1: %.1.in + $(AM_V_GEN) sed \ + -e 's|@VERSION[@]|$(VERSION)|g' $< > $@.tmp && \ + mv $@.tmp $@ +-%.1.gz: %.1 +- $(AM_V_GEN) gzip -c $< > $@.tmp && mv $@.tmp $@ + + CLEANFILES += \ + $(BUILT_SOURCES) \ +- $(man_one_files) \ + $(man_one_DATA) \ + $(NULL) + diff --git a/dev-libs/input-pad/input-pad-1.0.99_pre20140916-r1.ebuild b/dev-libs/input-pad/input-pad-1.0.99_pre20140916-r1.ebuild new file mode 100644 index 000000000000..4d4f6dffea0a --- /dev/null +++ b/dev-libs/input-pad/input-pad-1.0.99_pre20140916-r1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit autotools + +MY_P="${P/_pre/.}" +MY_PV="${PV/_pre/.}" + +DESCRIPTION="On-screen input pad to send characters with mouse" +HOMEPAGE="https://github.com/fujiwarat/input-pad/wiki" +SRC_URI="https://github.com/fujiwarat/${PN}/releases/download/${MY_PV}/${MY_P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="eekboard +introspection static-libs +xtest" + +RDEPEND="dev-libs/glib:2 + dev-libs/libxml2:= + x11-libs/gtk+:3 + x11-libs/libX11 + x11-libs/libxkbfile + x11-libs/libxklavier + virtual/libintl + eekboard? ( dev-libs/eekboard ) + introspection? ( >=dev-libs/gobject-introspection-1.82.0-r2 ) + xtest? ( x11-libs/libXtst )" +DEPEND="${RDEPEND}" +BDEPEND="dev-util/intltool + sys-devel/gettext + virtual/pkgconfig" +S="${WORKDIR}/${MY_P}" + +PATCHES=( + "${FILESDIR}"/${PN}-Wreturn-type.patch + "${FILESDIR}"/${PN}-man.patch +) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + $(use_enable eekboard eek) \ + $(use_enable introspection) \ + $(use_enable static-libs static) \ + $(use_enable xtest) +} + +src_install() { + default + use static-libs || find "${ED}" -name '*.la' -delete || die +} diff --git a/dev-libs/input-pad/metadata.xml b/dev-libs/input-pad/metadata.xml new file mode 100644 index 000000000000..ce59a6cc3879 --- /dev/null +++ b/dev-libs/input-pad/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>cjk@gentoo.org</email> + <name>Cjk</name> + </maintainer> + <use> + <flag name="eekboard">Enable support for <pkg>dev-libs/eekboard</pkg> + </flag> + <flag name="xtest">Enable support for <pkg>x11-libs/libXtst</pkg> + </flag> + </use> + <origin>baldeagleos-repo</origin> +</pkgmetadata> |
