summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2019-12-25 16:33:04 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2019-12-25 17:01:45 +0100
commit71d6d1edfc98b69a916663e6a8ded466da1b313f (patch)
treec4809804ab5f9c55db9e4320faab67005cf3e470 /x11-libs/tslib/files
parentsys-libs/darwin-libc-headers: revbump to add missing Frameworks and headers (diff)
downloadgentoo-71d6d1edfc98b69a916663e6a8ded466da1b313f.tar.gz
gentoo-71d6d1edfc98b69a916663e6a8ded466da1b313f.tar.bz2
gentoo-71d6d1edfc98b69a916663e6a8ded466da1b313f.zip
x11-libs/tslib: 1.21 version bump
Closes: https://bugs.gentoo.org/618654 Package-Manager: Portage-2.3.83, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'x11-libs/tslib/files')
-rw-r--r--x11-libs/tslib/files/tslib-1.21-optional-utils.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/x11-libs/tslib/files/tslib-1.21-optional-utils.patch b/x11-libs/tslib/files/tslib-1.21-optional-utils.patch
new file mode 100644
index 000000000000..5b94599a86fd
--- /dev/null
+++ b/x11-libs/tslib/files/tslib-1.21-optional-utils.patch
@@ -0,0 +1,21 @@
+--- a/CMakeLists.txt 2019-10-22 10:27:05.000000000 +0200
++++ b/CMakeLists.txt 2019-12-25 16:18:52.814921538 +0100
+@@ -17,6 +17,7 @@
+ option(BUILD_SHARED_LIBS "ON: tslib is build as shared;
+ OFF: tslib is build as static" ON)
+ option(ENABLE_TOOLS "build additional tools" ON)
++option(ENABLE_UTILS "build calibration/test binaries" ON)
+
+ set(LIBTS_VERSION_CURRENT 10)
+ set(LIBTS_VERSION_REVISION 3)
+@@ -28,7 +29,9 @@
+
+ add_subdirectory(src)
+ add_subdirectory(plugins)
+-add_subdirectory(tests)
++if (ENABLE_UTILS)
++ add_subdirectory(tests)
++endif ()
+ if (ENABLE_TOOLS)
+ add_subdirectory(tools)
+ endif ()