forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-misc/g15daemon: Revbumps / ebuild overhauls
- EAPI-7 bump - Added workaround for successful build with gcc-10 (#706712) - Fixed default config (#481454) - Fixed docdir - Attempt to fix direct call of CC (#729294) - Removed bashisms from configure Bug: https://bugs.gentoo.org/729294 Bug: https://bugs.gentoo.org/741382 Closes: https://bugs.gentoo.org/481454 Closes: https://bugs.gentoo.org/706712 Package-Manager: Portage-3.0.6, Repoman-3.0.1 Signed-off-by: Lars Wendler <[email protected]>
- Loading branch information
Lars Wendler
committed
Sep 9, 2020
1 parent
fbfcdcc
commit 32f13dc
Showing
9 changed files
with
119 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
app-misc/g15daemon/files/g15daemon-1.9.5.3-avoid_bashisms.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- g15daemon-1.9.5.3/configure.in | ||
+++ g15daemon-1.9.5.3/configure.in | ||
@@ -53,7 +53,7 @@ | ||
AC_ARG_ENABLE([--disable-uinput],[ --disable-uinput do not build linux uinput plugin (default: autodetect)]) | ||
|
||
if test "x$enable_uinput" != "xno"; then | ||
- if test "x$have_linux_uinput_h" == "xyes"; then | ||
+ if test "x$have_linux_uinput_h" = "xyes"; then | ||
#if HAVE_LINUX_UINPUT_H | ||
dnl check for uinput.h version 2.4 or 2.6 ? | ||
AC_CHECK_MEMBER([struct uinput_user_dev.id], | ||
@@ -110,7 +110,7 @@ | ||
AM_CONDITIONAL(UINPUT_INTERFACE_PLUGIN, [test x$uinput = xtrue]) | ||
|
||
dnl Some versions of libusb do not honour timeout and block. Suns' version is one of them. | ||
-if test "x$libusb_blocks" == "xtrue"; then | ||
+if test "x$libusb_blocks" = "xtrue"; then | ||
AC_DEFINE([LIBUSB_BLOCKS], [1],[Define if libusb implementation blocks on read or write]) | ||
fi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- g15daemon-1.9.5.3/Makefile.am | ||
+++ g15daemon-1.9.5.3/Makefile.am | ||
@@ -5,7 +5,7 @@ | ||
|
||
EXTRA_DIST = debian contrib Documentation lang-bindings patches rpm README.usage FAQ LICENSE images README.Linux README.FreeBSD README.Solaris | ||
|
||
-docdir = $(prefix)/share/doc/$(PACKAGE)-$(VERSION) | ||
+docdir = @docdir@ | ||
doc_DATA = FAQ README.usage README ChangeLog TODO AUTHORS NEWS LICENSE README.Linux README.FreeBSD README.Solaris | ||
|
||
man1_MANS = $(top_srcdir)/Documentation/g15daemon.1 |
4 changes: 2 additions & 2 deletions
4
app-misc/g15daemon/files/g15daemon-1.9.5.3-forgotten-open-mode.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
app-misc/g15daemon/files/g15daemon-1.9.5.3-overflow-fix.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.