commit:     1b5466daa85cc38f473fcadfdb171b64bec03fd2
Author:     Philip Miess <Philip_Miess <AT> yahoo <DOT> com>
AuthorDate: Wed Mar 10 22:35:48 2021 +0000
Commit:     Philip Miess <Phil_miess <AT> yahoo <DOT> com>
CommitDate: Wed Mar 10 22:35:48 2021 +0000
URL:        
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=1b5466da

remove presage because it fails to compile

Signed-off-by: Philip Miess <Philip_Miess <AT> yahoo.com>

 app-text/presage/Manifest                          |   4 -
 .../presage/files/presage-0.9.1-automagic.patch    | 117 ---------------------
 app-text/presage/presage-0.9.1.ebuild              |  48 ---------
 3 files changed, 169 deletions(-)

diff --git a/app-text/presage/Manifest b/app-text/presage/Manifest
deleted file mode 100644
index a6db756..0000000
--- a/app-text/presage/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-AUX presage-0.9.1-automagic.patch 4199 BLAKE2B 
51f727a303d38039ac23b60c002a2de56c3087b05dee365967d274cf768d798f095ef1f332cbcc08d1ff0d8bd69e155fc2332759ca22ead4fd5509880ead85c6
 SHA512 
bc82043d1d934bc1db5136d44cbbe38548e64d111c168958a424c918b1e97b179bd1394d57a8f8bc4625993a12f57e009b981eff265b4d65cd4ea086ba65a59c
-DIST presage-0.9.1.tar.gz 2687519 BLAKE2B 
f035b210693c464e08e4bc85f5bef6f63c03c4a41582209fd401cb9e62e3f12fb9b7161ea3e83e68490188ae37c1a28cb3776eaeca085d542979af78accb66fa
 SHA512 
46d7151a80e376d9a8a018be985b2c88a070a6f6555bf3d9b1f50aa41ea8e861c8e26ed3c25a5833855ae01004ecbd36408711e40baf4f072599c240f6c721b1
-EBUILD presage-0.9.1.ebuild 999 BLAKE2B 
8bd1a3af8ce71d44d096590a4b3e707062cb2f9ddf82c85131ed51777b0aa9dd01b335835c62b586e4d925bee357cee677e46146050db9226cd51a6d3a43dc9e
 SHA512 
da369f3969ce98e297e81a40e34e84ac5688b54367ebf08962b45f6befbcebd85555380ec6ce8299c7bbf53f58e881d0a7e1bba640afba530d281f2700bfc412
-MISC metadata.xml 285 BLAKE2B 
7665ca7b22bf0c8b2e486a5633130588ea83952d863912d0e8299707ed6d26dd66e40e1faa53173eb24079d4607cb783c9e0f6dce8f298607e5baf1ec5f1e587
 SHA512 
a8207edb781bc25e9bdc7f074ae3164ea9037077c6f6e0284474d033d57ceb188c3e1e9a77a0bbc9c7cac538a75ba23c42993340bd6555b0a71085d43c3f905d

diff --git a/app-text/presage/files/presage-0.9.1-automagic.patch 
b/app-text/presage/files/presage-0.9.1-automagic.patch
deleted file mode 100644
index ee976e2..0000000
--- a/app-text/presage/files/presage-0.9.1-automagic.patch
+++ /dev/null
@@ -1,117 +0,0 @@
---- configure.ac       2017-10-26 20:27:20.114580931 -0400
-+++ configure.patched.ac       2017-10-26 20:30:49.191563445 -0400
-@@ -106,6 +106,13 @@
- dnl ==================
- dnl Checks for ncurses
- dnl ==================
-+AC_ARG_ENABLE([curses],
-+      AS_HELP_STRING([--disable-curses],[disable curses support, needed for 
demo programs (default: enabled)]),
-+      [enable_curses=$enableval],
-+      [enable_curses=yes])
-+
-+if test "x$enable_curses" = "xyes"
-+then
- AC_CHECK_LIB([curses],
-              [initscr],
-              [have_curses_library=true],
-@@ -114,12 +121,19 @@
-                  [have_curses_header=true],
-                  [AC_MSG_WARN([curses header file not found. curses demo 
programs will not be built.])],
-                  [])
--AM_CONDITIONAL([HAVE_CURSES], [test "x$have_curses_library" = "xtrue" -a 
"x$have_curses_header" = "xtrue"])
-+fi
-+AM_CONDITIONAL([HAVE_CURSES], [test "x$have_curses_library" = "xtrue" -a 
"x$have_curses_header" = "xtrue" -a "x$enable_curses" = "xyes"])
- 
- 
- dnl ==================
- dnl Checks for tinyxml
- dnl ==================
-+AC_ARG_ENABLE([tinyxml],
-+        AS_HELP_STRING([--disable-tinyxml],[disable tinyxml support (default: 
enabled)]),
-+        [enable_tinyxml=$enableval],
-+        [enable_tinyxml=yes])
-+if test "x$enable_tinyxml" = "xtrue"
-+then
- AC_CHECK_LIB([tinyxml],
-              [main],
-              [have_tinyxml_library=true],
-@@ -128,6 +142,7 @@
-                  [have_tinyxml_header=true],
-                  [AC_MSG_WARN([tinyxml library not found. Embedded tinyxml 
library will be built.])],
-                  [])
-+fi
- if test "x$have_tinyxml_library" != "xtrue" -o "x$have_tinyxml_header" != 
"xtrue"
- then
-     build_tinyxml=yes
-@@ -135,7 +150,7 @@
-     build_tinyxml=no
-     AC_DEFINE([TIXML_USE_STL], [1], [Define to 1 to use STL string in 
TinyXML])
- fi
--AM_CONDITIONAL([BUILD_TINYXML], [test "x$build_tinyxml" = "xyes"])
-+AM_CONDITIONAL([BUILD_TINYXML], [test "x$build_tinyxml" = "xyes" -a 
"x$enable_tinyxml" = "xyes"])
- 
- 
- dnl =================
-@@ -204,10 +219,15 @@
- dnl ==================
- dnl Checks for CppUnit
- dnl ==================
-+AC_ARG_ENABLE([tests],
-+        AS_HELP_STRING([--enable-tests],[enable tests (default: disabled)]),
-+        [enable_tests=$enableval],
-+        [enable_tests=no])
-+
- AM_PATH_CPPUNIT([1.9.6],
-                 [],
-                 [AC_MSG_WARN([CppUnit not found. Unit tests will not be 
built. CppUnit can be obtained from http://cppunit.sourceforge.net.])])
--AM_CONDITIONAL([HAVE_CPPUNIT], [test "$CPPUNIT_LIBS"])
-+AM_CONDITIONAL([HAVE_CPPUNIT], [test "$CPPUNIT_LIBS" -a "x$enable_tests" = 
"xyes"])
- 
- 
- dnl ============================
-@@ -217,6 +237,7 @@
- dnl ===============
- dnl Checks for SWIG
- dnl ===============
-+
- AC_PATH_PROG([SWIG], [swig])
- if test ! "$SWIG"
- then
-@@ -228,6 +249,11 @@
- dnl =================
- dnl Checks for Python
- dnl =================
-+AC_ARG_ENABLE([python],
-+        AS_HELP_STRING([--disable-python],[disable python support, needed for 
python bindings (default: enabled)]),
-+        [enable_python=$enableval],
-+        [enable_python=yes])
-+
- AM_PATH_PYTHON([2.0],
-                [],
-                [AC_MSG_WARN([Python not found. Python is required to build 
presage python binding. Python can be obtained from http://www.python.org])])
-@@ -239,7 +265,7 @@
-                      [AC_MSG_WARN([Python.h header file not found. Python 
development files are required to build presage python binding. Python can be 
obtained from http://www.python.org])],
-                      [])
- fi
--AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != : -a "x$have_python_header" 
= "xtrue"])
-+AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != : -a "x$have_python_header" 
= "xtrue" -a "x$enable_python" = "xyes"])
- 
- 
- AC_ARG_ENABLE([python-binding],
-@@ -263,6 +289,7 @@
- dnl ======================
- dnl Checks for dbus python
- dnl ======================
-+
- have_dbus_python=no
- if test "$PYTHON" != :
- then
-@@ -276,7 +303,7 @@
-     fi
-     AC_MSG_RESULT($have_dbus_python)
- fi
--AM_CONDITIONAL([HAVE_DBUS_PYTHON], [test "x$have_dbus_python" = "xyes"])
-+AM_CONDITIONAL([HAVE_DBUS_PYTHON], [test "x$have_dbus_python" = "xyes" -a 
"x$enable_python" = "xyes"])
- 
- 
- dnl ========================

diff --git a/app-text/presage/presage-0.9.1.ebuild 
b/app-text/presage/presage-0.9.1.ebuild
deleted file mode 100644
index 1e21a5c..0000000
--- a/app-text/presage/presage-0.9.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils autotools
-DESCRIPTION="The intelligent predictive text entry system"
-HOMEPAGE="http://presage.sourceforge.net";
-SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="doc examples gtk sqlite test"
-
-RDEPEND="
-       examples? ( sys-libs/ncurses )
-       gtk? ( x11-libs/gtk+ )
-       sqlite? ( dev-db/sqlite )
-       app-text/dos2unix
-"
-
-DEPEND="${COMMON_DEPEND}
-       doc? ( app-doc/doxygen )
-       dev-lang/swig
-       test? ( dev-util/cppunit )
-       sys-apps/help2man
-"
-
-src_prepare() {
-       epatch "${FILESDIR}/${PN}-0.9.1-automagic.patch"
-       eautoreconf
-}
-
-src_configure() {
-
-       local myeconfargs=(
-               $(use_enable doc documentation)
-               $(use_enable examples curses)
-               $(use_enable gtk gpresagemate)
-               #$(use_enable gtk gprompter)
-
-               $(use_enable sqlite)
-               $(use_enable test)
-       )
-       econf ${myeconfargs} --disable-python --disable-python-binding 
--disable-gprompter
-
-}

Reply via email to