From 6bfaa8eea8737824f9d68a1117b1e0816dc85be9 Mon Sep 17 00:00:00 2001 From: haarp Date: Mon, 31 May 2021 16:34:06 +0200 Subject: Remove wacomwebplugin, which is not working in modern browsers anymore Signed-off-by: haarp --- www-plugins/wacomwebplugin/Manifest | 3 -- .../files/accept-additional-mimetype.patch | 37 ---------------------- .../wacomwebplugin/wacomwebplugin-0.3.0-r1.ebuild | 31 ------------------ 3 files changed, 71 deletions(-) delete mode 100644 www-plugins/wacomwebplugin/Manifest delete mode 100644 www-plugins/wacomwebplugin/files/accept-additional-mimetype.patch delete mode 100644 www-plugins/wacomwebplugin/wacomwebplugin-0.3.0-r1.ebuild diff --git a/www-plugins/wacomwebplugin/Manifest b/www-plugins/wacomwebplugin/Manifest deleted file mode 100644 index 5d19096..0000000 --- a/www-plugins/wacomwebplugin/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -AUX accept-additional-mimetype.patch 1261 SHA256 45f943fd602f4183a994e1afea8ea914a072137ed06b27f1e22549ed33067b93 SHA512 423f1ac567c86f2abe40a22dd1e7f4f2a835f8f08adc4e63fe5517bb514913b531cfca05022c7b802c305aea9fca15e563a522239d18c1d1875a43719e0c1bb1 WHIRLPOOL b0999b5dfbef2423de21640b69463cba022f5741824257523a1219557ddb174f72dd9070fffe57ceafc291ba01d9e7f5d3da70855798f8ded39ca19b7a003d49 -DIST wacomwebplugin-0.3.0.tar.gz 466696 SHA256 cd590f8edd622e1823f35bec2344bc3a6b783fee5333545bade0557a72f69ba7 SHA512 e8bb93c63b0d19198c65b4b7d851e59eaf7640dc564a2a402313efad227d2b42f8accec35fa3c1fd2b0b21ac75ad7241a844cff09ff22f1aae40bd3002fd61a8 WHIRLPOOL 8986ec4057f8eade4bb3ecf41909720fea850082a10ba62ecaa56b130b15ff39686f8da75dcd7e2256daed2f9bb3574d199b1887d71a16b20c82a2ec5634e780 -EBUILD wacomwebplugin-0.3.0-r1.ebuild 722 SHA256 1a018e2443530b1e9e1c055c3fbebff9bd39ee90db7121ccc9504600c8302c62 SHA512 562cccdc21407ac523ca063e969e3bbc99d7e65063def13a9ee3d051f602ea241de135c93f82fc31d3a26fef571173b5445f4bbb1b3e66e692f5ea89232a186c WHIRLPOOL 06b4b0680f898c72ee3c9636597ab6dae845ed1c8f5e457019dc782e9a19c4f5a5076756dcea90da2577fc5d4cf3c22bb0e70f823d430c441fd7147659ef8fcd diff --git a/www-plugins/wacomwebplugin/files/accept-additional-mimetype.patch b/www-plugins/wacomwebplugin/files/accept-additional-mimetype.patch deleted file mode 100644 index fc1dc5a..0000000 --- a/www-plugins/wacomwebplugin/files/accept-additional-mimetype.patch +++ /dev/null @@ -1,37 +0,0 @@ -From 21857c4115bee6bbebabac2ffde647ef450b7013 Mon Sep 17 00:00:00 2001 -From: trinity -Date: Sat, 21 Dec 2013 17:21:35 +0800 -Subject: [PATCH] Accept MIME application/x-wacom-tablet - ---- - src/common.h | 3 +++ - src/main.c | 2 +- - 2 files changed, 4 insertions(+), 1 deletion(-) - -diff --git a/src/common.h b/src/common.h -index c4d5283..f079216 100644 ---- a/src/common.h -+++ b/src/common.h -@@ -47,6 +47,9 @@ - #define PLUGIN_VERSION "2.0.0.1" // Highest version of API that is supported. - #define PLUGIN_VERSIONL 2001 // Decimal version of above. - #define PLUGIN_MIME "application/x-wacomtabletplugin" -+#define PLUGIN_MIME2 "application/x-wacom-tablet" -+#define PLUGIN_MIME_DESCRIPTION \ -+ PLUGIN_MIME "::" PLUGIN_NAME ";" PLUGIN_MIME2 "::" PLUGIN_NAME - - // Just a helper macro, makes for nicer looking code. - #define IS_IDENTIFIER(id) (name == g_netscapeFuncs->getstringidentifier(id)) -diff --git a/src/main.c b/src/main.c -index 01d9fc2..91c966a 100644 ---- a/src/main.c -+++ b/src/main.c -@@ -46,7 +46,7 @@ const char* NP_GetPluginVersion(void) - // Plugin MIME + description. - const char* NP_GetMIMEDescription(void) - { -- return PLUGIN_MIME"::"PLUGIN_NAME; -+ return PLUGIN_MIME_DESCRIPTION; - } - - // Called when plugin is loaded. diff --git a/www-plugins/wacomwebplugin/wacomwebplugin-0.3.0-r1.ebuild b/www-plugins/wacomwebplugin/wacomwebplugin-0.3.0-r1.ebuild deleted file mode 100644 index 80bf90a..0000000 --- a/www-plugins/wacomwebplugin/wacomwebplugin-0.3.0-r1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit nsplugins - -DESCRIPTION="An implementation of the Wacom Tablet Plugin, on Linux" -HOMEPAGE="https://github.com/ZaneA/WacomWebPlugin" -SRC_URI="https://github.com/ZaneA/WacomWebPlugin/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="x11-libs/libX11 - x11-libs/libXi" - -DEPEND="${RDEPEND} - || ( net-misc/npapi-sdk www-client/firefox[-minimal] )" - -S="${WORKDIR}/WacomWebPlugin-${PV}" - -PATCHES=( "${FILESDIR}/accept-additional-mimetype.patch" ) - -src_install() { - exeinto /usr/$(get_libdir)/${PLUGINS_DIR} - doexe npWacomWebPlugin.so - dodoc README.md -} -- cgit v1.2.3-18-g5258