summaryrefslogtreecommitdiff
path: root/recipes-support/florence
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2024-05-07 18:08:46 +0200
committerMax Krummenacher <max.krummenacher@toradex.com>2024-05-07 18:08:46 +0200
commit9e4e0f4afb33c469d4499258ee44ca8049e53c1c (patch)
tree8b3828cdcb156f166629578a43314953d9561036 /recipes-support/florence
parent0dc145c4421ff6ea87ca65a0b0903f8a361ab32e (diff)
florence: remove x11 only tool
Remove the recipe. Related-to: ELB-5740 Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
Diffstat (limited to 'recipes-support/florence')
-rw-r--r--recipes-support/florence/files/0001-make-sound-a-configure-option.patch154
-rw-r--r--recipes-support/florence/files/fix-no-atspi-compile.patch30
-rw-r--r--recipes-support/florence/files/fix_garbled_titlebar.patch12
-rw-r--r--recipes-support/florence/florence3/0001-make-sound-a-configure-option.patch156
-rw-r--r--recipes-support/florence/florence3/0001-src-Makefile.am-add-missing-dependency.patch30
-rw-r--r--recipes-support/florence/florence3_0.6.3.bb30
-rw-r--r--recipes-support/florence/florence3_0.6.3.bbappend3
-rw-r--r--recipes-support/florence/florence_0.5.4.bb23
-rw-r--r--recipes-support/florence/florence_0.5.4.bbappend3
9 files changed, 0 insertions, 441 deletions
diff --git a/recipes-support/florence/files/0001-make-sound-a-configure-option.patch b/recipes-support/florence/files/0001-make-sound-a-configure-option.patch
deleted file mode 100644
index d4d4f7c..0000000
--- a/recipes-support/florence/files/0001-make-sound-a-configure-option.patch
+++ /dev/null
@@ -1,154 +0,0 @@
-From ec1ede35d043cbbe33a40aa8e0e9901a507f4328 Mon Sep 17 00:00:00 2001
-From: Max Krummenacher <max.krummenacher@toradex.com>
-Date: Thu, 23 Jun 2016 20:12:25 +0200
-Subject: [PATCH] make sound a configure option
-
-add a --without-sound switch which builds without soundeffect and
-drops the dependency on gstreamer 0.10
-
-Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
----
- configure.ac | 9 ++++++++-
- src/Makefile.am | 4 ++--
- src/main.c | 4 ++++
- src/style.c | 15 ++++++++++++++-
- 4 files changed, 28 insertions(+), 4 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 8629509..a147ed3 100755
---- a/configure.ac
-+++ b/configure.ac
-@@ -11,6 +11,8 @@ AC_ARG_WITH([xtst], AS_HELP_STRING([--without-xtst], [Build without Xtst extensi
- AM_CONDITIONAL([WITH_XTST], [test "x$with_xtst" != "xno"])
- AC_ARG_WITH([xrecord], AS_HELP_STRING([--without-xrecord], [Build without XRecord extension (requires the Xtst extension) (default: enabled)]))
- AM_CONDITIONAL([WITH_XRECORD], [test "x$with_xrecord" != "xno" -a "x$with_xtst" != "xno"])
-+AC_ARG_WITH([sound], AS_HELP_STRING([--without-sound], [Build without sound extension (default: enabled)]))
-+AM_CONDITIONAL([WITH_SOUND], [test "x$with_sound" != "xno"])
- AC_ARG_WITH([at-spi], AS_HELP_STRING([--without-at-spi], [Build without at-spi(default: enabled)]))
- AM_CONDITIONAL([WITH_AT_SPI], [test "x$with_at_spi" != "xno"])
- AC_ARG_WITH([panelapplet], AS_HELP_STRING([--without-panelapplet], [Build without libpanelapplet(default: enabled)]))
-@@ -61,7 +63,7 @@ if test "x$with_docs" != "xno"; then
- fi
-
- # Checks for libraries.
--DEP_MODULES="x11 gmodule-2.0 cairo librsvg-2.0 libxml-2.0 gconf-2.0 gtk+-2.0 >= 2.12.0 gstreamer-0.10"
-+DEP_MODULES="x11 gmodule-2.0 cairo librsvg-2.0 libxml-2.0 gconf-2.0 gtk+-2.0 >= 2.12.0"
- PKG_CHECK_MODULES(DEPS, $DEP_MODULES)
-
- if test "x$with_docs" != "xno"; then
-@@ -84,6 +86,9 @@ if test "x$with_xtst" != "xno"; then
- AC_DEFINE(ENABLE_XRECORD, ["xrecord"], [xrecord extension is enabled])
- fi
- fi
-+if test "x$with_sound" != "xno"; then
-+ PKG_CHECK_MODULES([SOUND], gstreamer-0.10, AC_DEFINE([ENABLE_SOUND], [], [Sound enabled.]), AC_MSG_ERROR(Could not configure gstreamer 0.10. Please either install gstreamer 0.10 or disable sound: --without-sound configure option))
-+fi
- if test "x$with_at_spi" != "xno"; then
- PKG_CHECK_MODULES([AT_SPI2], [atspi-2], AC_DEFINE([ENABLE_AT_SPI2], [], [dbus at-spi enabled.]), [at_spi2=x])
- if test "x$at_spi2" = "xx"; then
-@@ -116,6 +121,8 @@ AC_SUBST(LIBPANELAPPLET_CFLAGS)
- AC_SUBST(LIBPANELAPPLET_LIBS)
- AC_SUBST(XTST_CFLAGS)
- AC_SUBST(XTST_LIBS)
-+AC_SUBST(SOUND_CFLAGS)
-+AC_SUBST(SOUND_LIBS)
- AC_SUBST(AT_SPI2_CFLAGS)
- AC_SUBST(AT_SPI2_LIBS)
- AC_SUBST(AT_SPI_CFLAGS)
-diff --git a/src/Makefile.am b/src/Makefile.am
-index 586d6a2..6af8772 100644
---- a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -15,8 +15,8 @@ endif
-
- florence_CPPFLAGS = -DICONDIR="\"$(ICONDIR)\""\
- -DDATADIR="\"$(datadir)/florence\"" $(DEPS_CFLAGS)\
-- $(LIBGNOME_CFLAGS) $(LIBNOTIFY_CFLAGS) $(XTST_CFLAGS) $(AT_SPI_CFLAGS) $(AT_SPI2_CFLAGS) $(INCLUDES)
--florence_LDADD = $(DEPS_LIBS) $(LIBM) $(X11_LIBS) $(LIBGNOME_LIBS) $(LIBNOTIFY_LIBS) $(XTST_LIBS) $(AT_SPI2_LIBS) $(AT_SPI_LIBS)
-+ $(LIBGNOME_CFLAGS) $(LIBNOTIFY_CFLAGS) $(XTST_CFLAGS) $(SOUND_CFLAGS) $(AT_SPI_CFLAGS) $(AT_SPI2_CFLAGS) $(INCLUDES)
-+florence_LDADD = $(DEPS_LIBS) $(LIBM) $(X11_LIBS) $(LIBGNOME_LIBS) $(LIBNOTIFY_LIBS) $(XTST_LIBS) $(SOUND_LIBS) $(AT_SPI2_LIBS) $(AT_SPI_LIBS)
-
- if WITH_PANELAPPLET
-
-diff --git a/src/main.c b/src/main.c
-index 6134c2a..180585d 100644
---- a/src/main.c
-+++ b/src/main.c
-@@ -23,7 +23,9 @@
- #include <sys/types.h>
- #include <getopt.h>
- #include <gtk/gtk.h>
-+#ifdef ENABLE_SOUND
- #include <gst/gst.h>
-+#endif
- #include <gconf/gconf-client.h>
- #include "system.h"
- #include "trace.h"
-@@ -72,7 +74,9 @@ int main (int argc, char **argv)
- gtk_init(&argc, &argv);
- gconf_init(argc, argv, NULL);
- g_type_init();
-+#ifdef ENABLE_SOUND
- gst_init(&argc, &argv);
-+#endif
-
- program_name=argv[0];
- config=decode_switches (argc, argv);
-diff --git a/src/style.c b/src/style.c
-index 2a81d01..8d31976 100644
---- a/src/style.c
-+++ b/src/style.c
-@@ -27,8 +27,10 @@
- #include <libxml/parser.h>
- #include <libxml/tree.h>
- #include <libxml/xmlsave.h>
--#include <gst/gst.h>
- #include "system.h"
-+#ifdef ENABLE_SOUND
-+#include <gst/gst.h>
-+#endif
- #include "trace.h"
- #include "key.h"
- #include "style.h"
-@@ -562,6 +564,7 @@ GdkPixbuf *style_pixbuf_draw(struct style *style)
- }
-
- /* Liberate the pipeline */
-+#ifdef ENABLE_SOUND
- void style_sound_pipeline_free(GstElement *pipeline)
- {
- START_FUNC
-@@ -675,6 +678,14 @@ void style_sound_play(struct style *style, const gchar *match, enum style_sound_
- }
- END_FUNC
- }
-+#else
-+void style_sound_free(gpointer data, gpointer userdata)
-+{
-+}
-+void style_sound_play(struct style *style, const gchar *match, enum style_sound_type type)
-+{
-+}
-+#endif
-
- /* create a new style from the layout file */
- struct style *style_new(gchar *base_uri)
-@@ -711,6 +722,7 @@ struct style *style_new(gchar *base_uri)
- }
- }
-
-+#ifdef ENABLE_SOUND
- layoutreader_reset(layout);
- layoutreader_element_open(layout, "style");
- if (layoutreader_element_open(layout, "sounds")) {
-@@ -719,6 +731,7 @@ struct style *style_new(gchar *base_uri)
- layoutreader_sound_free(sound);
- }
- }
-+#endif
-
- layoutreader_free(layout);
- if (!base_uri) g_free(uri);
---
-2.6.6
-
diff --git a/recipes-support/florence/files/fix-no-atspi-compile.patch b/recipes-support/florence/files/fix-no-atspi-compile.patch
deleted file mode 100644
index 0bb5dee..0000000
--- a/recipes-support/florence/files/fix-no-atspi-compile.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-diff --git a/src/florence.c b/src/florence.c
-index b27c31b..feadefe 100644
---- a/src/florence.c
-+++ b/src/florence.c
-@@ -44,12 +44,6 @@
- /* exit signal */
- static int flo_exit=FALSE;
-
--#ifdef ENABLE_AT_SPI2
--void flo_check_show (struct florence *florence, AtspiAccessible *obj);
--#else
--void flo_check_show (struct florence *florence, Accessible *obj);
--#endif
--
- /* Called on destroy event (systray quit or close window) */
- void flo_destroy (void)
- {
-@@ -61,6 +55,12 @@ void flo_destroy (void)
- }
-
- #ifdef AT_SPI
-+#ifdef ENABLE_AT_SPI2
-+void flo_check_show (struct florence *florence, AtspiAccessible *obj);
-+#else
-+void flo_check_show (struct florence *florence, Accessible *obj);
-+#endif
-+
- /* Called to destroy the icon */
- void flo_icon_destroy (GtkWidget *widget, gpointer user_data)
- {
diff --git a/recipes-support/florence/files/fix_garbled_titlebar.patch b/recipes-support/florence/files/fix_garbled_titlebar.patch
deleted file mode 100644
index 097f7ef..0000000
--- a/recipes-support/florence/files/fix_garbled_titlebar.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- florence-0.5.1/src/view.c~ 2011-08-20 16:23:52.000000000 +0200
-+++ florence-0.5.1/src/view.c 2013-04-02 13:06:58.769584033 +0200
-@@ -441,8 +441,8 @@
- } else {
- flo_info(_("Your screen does not support alpha channel. Semi-transparency is disabled"));
- if (view) view->composite=FALSE;
-- colormap=gdk_screen_get_rgb_colormap(screen);
- }
-+ colormap=gdk_colormap_get_system();
- gtk_widget_set_colormap(widget, colormap);
- }
-
diff --git a/recipes-support/florence/florence3/0001-make-sound-a-configure-option.patch b/recipes-support/florence/florence3/0001-make-sound-a-configure-option.patch
deleted file mode 100644
index f2c0164..0000000
--- a/recipes-support/florence/florence3/0001-make-sound-a-configure-option.patch
+++ /dev/null
@@ -1,156 +0,0 @@
-From 3a252ca6f0a5afb04f3874267bfc0a569446bca8 Mon Sep 17 00:00:00 2001
-From: Max Krummenacher <max.krummenacher@toradex.com>
-Date: Thu, 23 Jun 2016 20:12:25 +0200
-Subject: [PATCH] make sound a configure option
-
-add a --without-sound switch which builds without soundeffect and
-drops the dependency on gstreamer
-
-Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
----
- configure.ac | 9 ++++++++-
- src/Makefile.am | 5 +++--
- src/main.c | 4 ++++
- src/style.c | 15 ++++++++++++++-
- 4 files changed, 29 insertions(+), 4 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 971f3df..b12244a 100755
---- a/configure.ac
-+++ b/configure.ac
-@@ -12,6 +12,8 @@ AC_ARG_WITH([xtst], AS_HELP_STRING([--without-xtst], [Build without Xtst extensi
- AM_CONDITIONAL([WITH_XTST], [test "x$with_xtst" != "xno"])
- AC_ARG_WITH([xrecord], AS_HELP_STRING([--without-xrecord], [Build without XRecord extension (requires the Xtst extension) (default: enabled)]))
- AM_CONDITIONAL([WITH_XRECORD], [test "x$with_xrecord" != "xno" -a "x$with_xtst" != "xno"])
-+AC_ARG_WITH([sound], AS_HELP_STRING([--without-sound], [Build without sound extension (default: enabled)]))
-+AM_CONDITIONAL([WITH_SOUND], [test "x$with_sound" != "xno"])
- AC_ARG_WITH([at-spi], AS_HELP_STRING([--without-at-spi], [Build without at-spi(default: enabled)]))
- AM_CONDITIONAL([WITH_AT_SPI], [test "x$with_at_spi" != "xno"])
- AC_ARG_WITH([panelapplet], AS_HELP_STRING([--without-panelapplet], [Build without libpanelapplet(default: enabled)]))
-@@ -61,7 +63,7 @@ if test "x$with_docs" != "xno"; then
- fi
-
- # Checks for libraries.
--DEP_MODULES="xext gmodule-2.0 cairo librsvg-2.0 libxml-2.0 gstreamer-1.0"
-+DEP_MODULES="xext gmodule-2.0 cairo librsvg-2.0 libxml-2.0"
- PKG_CHECK_MODULES(DEPS, $DEP_MODULES)
-
- PKG_CHECK_MODULES([GTK3], [gtk+-3.0], AC_DEFINE([ENABLE_GTK3], [], [GTK3 enabled.]),
-@@ -86,6 +88,9 @@ if test "x$with_xtst" != "xno"; then
- AC_DEFINE(ENABLE_XRECORD, ["xrecord"], [xrecord extension is enabled])
- fi
- fi
-+if test "x$with_sound" != "xno"; then
-+ PKG_CHECK_MODULES([SOUND], gstreamer-1.0, AC_DEFINE([ENABLE_SOUND], [], [Sound enabled.]), AC_MSG_ERROR(Could not configure gstreamer 1.0. Please either install gstreamer 1.0 or disable sound: --without-sound configure option))
-+fi
- if test "x$with_at_spi" != "xno"; then
- PKG_CHECK_MODULES([AT_SPI2], [atspi-2], AC_DEFINE([ENABLE_AT_SPI2], [], [dbus at-spi enabled.]),
- AC_MSG_ERROR(Could not configure at-spi. Please either install at-spi or disable it: --without-at-spi configure option))
-@@ -103,6 +108,8 @@ AC_SUBST(LIBNOTIFY_CFLAGS)
- AC_SUBST(LIBNOTIFY_LIBS)
- AC_SUBST(XTST_CFLAGS)
- AC_SUBST(XTST_LIBS)
-+AC_SUBST(SOUND_CFLAGS)
-+AC_SUBST(SOUND_LIBS)
- AC_SUBST(AT_SPI2_CFLAGS)
- AC_SUBST(AT_SPI2_LIBS)
- AC_SUBST(LIBGNOME_CFLAGS)
-diff --git a/src/Makefile.am b/src/Makefile.am
-index 9d38512..9d5a417 100644
---- a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -14,9 +14,10 @@ endif
- florence_CPPFLAGS = -I$(top_srcdir) -DICONDIR="\"$(ICONDIR)\""\
- -DFLORENCELOCALEDIR=\""$(florencelocaledir)"\"\
- -DDATADIR="\"$(datadir)/florence\"" $(DEPS_CFLAGS) $(GTK3_CFLAGS)\
-- $(LIBGNOME_CFLAGS) $(LIBNOTIFY_CFLAGS) $(XTST_CFLAGS) $(AT_SPI2_CFLAGS) $(INCLUDES)
-+ $(LIBGNOME_CFLAGS) $(LIBNOTIFY_CFLAGS) $(XTST_CFLAGS) $(SOUND_CFLAGS)\
-+ $(AT_SPI2_CFLAGS) $(INCLUDES)
- florence_LDADD = $(DEPS_LIBS) $(LIBM) $(X11_LIBS) $(LIBGNOME_LIBS) $(LIBNOTIFY_LIBS)\
-- $(XTST_LIBS) $(AT_SPI2_LIBS) $(GTK3_LIBS) -lflorence-1.0
-+ $(XTST_LIBS) $(SOUND_LIBS) $(AT_SPI2_LIBS) $(GTK3_LIBS) -lflorence-1.0
-
- libflorence_1_0_la_SOURCES = lib/florence.c
- library_includedir=$(includedir)/florence-1.0
-diff --git a/src/main.c b/src/main.c
-index c5def08..8fe5514 100644
---- a/src/main.c
-+++ b/src/main.c
-@@ -23,7 +23,9 @@
- #include <sys/types.h>
- #include <getopt.h>
- #include <gtk/gtk.h>
-+#ifdef ENABLE_SOUND
- #include <gst/gst.h>
-+#endif
- #include "system.h"
- #include "trace.h"
- #include "settings.h"
-@@ -128,7 +130,9 @@ int main (int argc, char **argv)
- close(pipefd[0]);
- gtk_init(&argc, &argv);
- settings_init(FALSE, config_file);
-+#ifdef ENABLE_SOUND
- gst_init(&argc, &argv);
-+#endif
-
- if (signal(SIGINT, sig_handler)==SIG_ERR)
- flo_error(_("Failed to register SIGINT signal handler."));
-diff --git a/src/style.c b/src/style.c
-index e7f58c5..673d348 100644
---- a/src/style.c
-+++ b/src/style.c
-@@ -26,8 +26,10 @@
- #include <libxml/parser.h>
- #include <libxml/tree.h>
- #include <libxml/xmlsave.h>
--#include <gst/gst.h>
- #include "system.h"
-+#ifdef ENABLE_SOUND
-+#include <gst/gst.h>
-+#endif
- #include "trace.h"
- #include "key.h"
- #include "style.h"
-@@ -546,6 +548,7 @@ GdkPixbuf *style_pixbuf_draw(struct style *style)
- }
-
- /* Liberate the pipeline */
-+#ifdef ENABLE_SOUND
- void style_sound_pipeline_free(GstElement *pipeline)
- {
- START_FUNC
-@@ -660,6 +663,14 @@ void style_sound_play(struct style *style, const gchar *match, enum style_sound_
- }
- END_FUNC
- }
-+#else
-+void style_sound_free(gpointer data, gpointer userdata)
-+{
-+}
-+void style_sound_play(struct style *style, const gchar *match, enum style_sound_type type)
-+{
-+}
-+#endif
-
- /* create a new style from the layout file */
- struct style *style_new(gchar *base_uri)
-@@ -696,6 +707,7 @@ struct style *style_new(gchar *base_uri)
- }
- }
-
-+#ifdef ENABLE_SOUND
- layoutreader_reset(layout);
- layoutreader_element_open(layout, "style");
- if (layoutreader_element_open(layout, "sounds")) {
-@@ -704,6 +716,7 @@ struct style *style_new(gchar *base_uri)
- layoutreader_sound_free(sound);
- }
- }
-+#endif
-
- layoutreader_free(layout);
- if (!base_uri) g_free(uri);
---
-2.6.6
-
diff --git a/recipes-support/florence/florence3/0001-src-Makefile.am-add-missing-dependency.patch b/recipes-support/florence/florence3/0001-src-Makefile.am-add-missing-dependency.patch
deleted file mode 100644
index 12f5c99..0000000
--- a/recipes-support/florence/florence3/0001-src-Makefile.am-add-missing-dependency.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 77755186ad2fb61e8bc0bc68684e3bd631084906 Mon Sep 17 00:00:00 2001
-From: Max Krummenacher <max.krummenacher@toradex.com>
-Date: Wed, 15 Feb 2017 00:40:27 +0100
-Subject: [PATCH] src/Makefile.am: add missing dependency
-
-Fix race condition in which libflorence is not yet ready when florence
-is linked.
-
-Upstream-Status: Pending
-
-Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
----
- src/Makefile.am | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/Makefile.am b/src/Makefile.am
-index 9d5a417..d1cd944 100644
---- a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -11,6 +11,7 @@ if WITH_RAMBLE
- florence_SOURCES += ramble.c
- endif
-
-+florence_DEPENDENCIES = ${lib_LTLIBRARIES}
- florence_CPPFLAGS = -I$(top_srcdir) -DICONDIR="\"$(ICONDIR)\""\
- -DFLORENCELOCALEDIR=\""$(florencelocaledir)"\"\
- -DDATADIR="\"$(datadir)/florence\"" $(DEPS_CFLAGS) $(GTK3_CFLAGS)\
---
-2.6.6
-
diff --git a/recipes-support/florence/florence3_0.6.3.bb b/recipes-support/florence/florence3_0.6.3.bb
deleted file mode 100644
index b37fd30..0000000
--- a/recipes-support/florence/florence3_0.6.3.bb
+++ /dev/null
@@ -1,30 +0,0 @@
-DESCRIPTION = "Florence is a virtual keyboard (also called on-screen-keyboard), which allows the user to input text through a touchscreen."
-HOMEPAGE = "http://florence.sourceforge.net/english.html"
-
-#NOTICE: If florence can't find its gconf settings, you need to start florence with --config for one time and save the configuration once.
-
-LICENSE = "GPL-2.0-only"
-LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
-
-PR = "r1"
-
-DEPENDS = "cairo gconf glib-2.0-native gnome-doc-utils gstreamer1.0 gtk+3 intltool-native libglade libnotify librsvg libxml2 libxtst"
-
-PROVIDES += "florence"
-
-RPROVIDES:${PN} += "florence"
-RREPLACES:${PN} += "florence"
-RCONFLICTS:${PN} += "florence"
-
-SRC_URI = " \
- ${SOURCEFORGE_MIRROR}/florence/florence/${PV}/florence-${PV}.tar.bz2 \
- file://0001-src-Makefile.am-add-missing-dependency.patch \
-"
-SRC_URI[md5sum] = "8775051d7352f75dec5a86dc9964e8e0"
-SRC_URI[sha256sum] = "422992fd07d285be73cce721a203e22cee21320d69b0fda1579ce62944c5091e"
-S = "${WORKDIR}/florence-${PV}"
-inherit gettext autotools gconf pkgconfig gsettings
-
-FILES:${PN} += "${datadir}/florence"
-
-EXTRA_OECONF = "--disable-scrollkeeper --without-docs --without-at-spi --without-panelapplet --without-xrecord --without-sound"
diff --git a/recipes-support/florence/florence3_0.6.3.bbappend b/recipes-support/florence/florence3_0.6.3.bbappend
deleted file mode 100644
index ddddf4b..0000000
--- a/recipes-support/florence/florence3_0.6.3.bbappend
+++ /dev/null
@@ -1,3 +0,0 @@
-FILESEXTRAPATHS:prepend := "${THISDIR}/florence3:"
-SRC_URI += "file://0001-make-sound-a-configure-option.patch"
-EXTRA_OECONF += " --without-sound"
diff --git a/recipes-support/florence/florence_0.5.4.bb b/recipes-support/florence/florence_0.5.4.bb
deleted file mode 100644
index 486bb9c..0000000
--- a/recipes-support/florence/florence_0.5.4.bb
+++ /dev/null
@@ -1,23 +0,0 @@
-DESCRIPTION = "Florence is a virtual keyboard (also called on-screen-keyboard), which allows the user to input text through a touchscreen."
-HOMEPAGE = "http://florence.sourceforge.net/english.html"
-
-#NOTICE: If florence can't find its gconf settings, you need to start florence with --config for one time and save the configuration once.
-
-LICENSE = "GPL-2.0-only"
-LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
-
-PR = "r1"
-
-DEPENDS = "gtk+ libxml2 libglade librsvg libxtst gconf cairo intltool-native gnome-doc-utils libnotify gstreamer"
-
-SRC_URI = " \
- ${SOURCEFORGE_MIRROR}/florence/florence/${PV}-gtk2/florence-${PV}.tar.bz2 \
- file://fix-no-atspi-compile.patch \
- file://fix_garbled_titlebar.patch \
-"
-SRC_URI[md5sum] = "8d5c2367a28485bfcf577650b0badab7"
-SRC_URI[sha256sum] = "26d33aa20d5fbf34ceeded4c41cb922d2988b6082e33d9acc46dd7bfe56d31a1"
-
-inherit gettext autotools gconf pkgconfig
-
-EXTRA_OECONF = "--disable-scrollkeeper --without-docs --without-at-spi --without-panelapplet --without-xrecord"
diff --git a/recipes-support/florence/florence_0.5.4.bbappend b/recipes-support/florence/florence_0.5.4.bbappend
deleted file mode 100644
index a2c751d..0000000
--- a/recipes-support/florence/florence_0.5.4.bbappend
+++ /dev/null
@@ -1,3 +0,0 @@
-FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
-SRC_URI += "file://0001-make-sound-a-configure-option.patch"
-EXTRA_OECONF += " --without-sound"