[gentoo-commits] repo/user/superposition:master commit in: app-text/presage/, app-text/presage/files/

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

remove presage because it fails to compile

Signed-off-by: Philip Miess  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..000
--- 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 
da369f3969ce98e297e81a40e34e84ac5688b54367ebf08962b45f6befbcebd8380ec6ce8299c7bbf53f58e881d0a7e1bba640afba530d281f2700bfc412
-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..000
--- 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" = 
"x

[gentoo-commits] repo/user/superposition:master commit in: app-text/presage/, app-text/presage/files/

2017-10-26 Thread Philip Miess
commit: 23ddacd90b3b0627510ff56c643d112fd661
Author: Philip Miess  yahoo  com>
AuthorDate: Fri Oct 27 00:36:13 2017 +
Commit: Philip Miess  yahoo  com>
CommitDate: Fri Oct 27 00:36:13 2017 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=23ddacd9

move patch to 9.1

 app-text/presage/Manifest| 2 +-
 app-text/presage/files/presage-0.9.1-automagic.patch | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/presage/Manifest b/app-text/presage/Manifest
index cbe34dc..4a2c760 100644
--- a/app-text/presage/Manifest
+++ b/app-text/presage/Manifest
@@ -1,3 +1,3 @@
-AUX presage-0.9.1-automagic.patch 4203 SHA256 
f2ead433945b3a28c87c012fa6c89da35ef74c8055ae417aedc16de641b3e22b SHA512 
5cd5f1ad076345ec8745da610bc95f56396bb82229b6c5e8153bc050c297f40c781348357523e2a365855ee024ed81692e3fae8dbf8383a2a53facb06e483c57
 WHIRLPOOL 
8cfac46fa2f9fa2e5e155901a68d8d6cddea142beac103881f7a52d90b6de6e019a7f894ba98dc3916827733dbededda41b150a61760392d93ced0821ed03226
+AUX presage-0.9.1-automagic.patch 4199 SHA256 
27529cfbf77adaeb78c8971adcf576f93c027b84bdf7558609aa77529a6d844f SHA512 
bc82043d1d934bc1db5136d44cbbe38548e64d111c168958a424c918b1e97b179bd1394d57a8f8bc4625993a12f57e009b981eff265b4d65cd4ea086ba65a59c
 WHIRLPOOL 
582d2d5ce21c8a360948d20ca9c1c5cd0b8990c7667a00b041e21336afa60e06aab0985d7ca3c27cbe80a96c5b204e9142e7e584a800a386a589a9ef0f56ea56
 DIST presage-0.9.1.tar.gz 2687519 SHA256 
5ed567e350402a1d72c9053c78ecec3be710b7e72153a0223c6d19a7fe58a366 SHA512 
46d7151a80e376d9a8a018be985b2c88a070a6f6555bf3d9b1f50aa41ea8e861c8e26ed3c25a5833855ae01004ecbd36408711e40baf4f072599c240f6c721b1
 WHIRLPOOL 
f1e29d5c36d22b6fd910ab7796fad8b877debedb7577a9b7d3aad7a865cf8fd448d0e1b4354f820114142409efca58c58aa9778b08cd4a8abb6b2c3263423cb5
 EBUILD presage-0.9.1.ebuild 1226 SHA256 
84be323ec3264f5415eb77184c3751b7caa416a108c260193dfd9895ff9e8b49 SHA512 
f32cfe718c121796cbe69912e86787340eb3c2b8a39df8d4a9c3aad31adebb91f158553c6b458c10e4a0b89475b2a9960d0c6bc29f3a975350b124e76df1d925
 WHIRLPOOL 
e785eec0a52811d52480ae73d2462b48e11ebc55722632446d196276e9df58fa2b4498b68e5f88ea2ce49790ac3cc4dfb1721f217aff7b3626af6ff1db13f516

diff --git a/app-text/presage/files/presage-0.9.1-automagic.patch 
b/app-text/presage/files/presage-0.9.1-automagic.patch
index ac08de3..ee976e2 100644
--- a/app-text/presage/files/presage-0.9.1-automagic.patch
+++ b/app-text/presage/files/presage-0.9.1-automagic.patch
@@ -1,4 +1,4 @@
 configure.9.1.ac   2017-10-26 20:27:20.114580931 -0400
+--- 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 ==



[gentoo-commits] repo/user/superposition:master commit in: app-text/presage/, app-text/presage/files/

2017-10-26 Thread Philip Miess
commit: 6bb6362317df929b1d2d4afb286885cb692e7eb4
Author: Philip Miess  yahoo  com>
AuthorDate: Fri Oct 27 00:33:32 2017 +
Commit: Philip Miess  yahoo  com>
CommitDate: Fri Oct 27 00:33:32 2017 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=6bb63623

move patch to 9.1

 app-text/presage/Manifest|  2 +-
 app-text/presage/files/presage-0.9.1-automagic.patch | 13 ++---
 2 files changed, 3 insertions(+), 12 deletions(-)

diff --git a/app-text/presage/Manifest b/app-text/presage/Manifest
index acd1853..cbe34dc 100644
--- a/app-text/presage/Manifest
+++ b/app-text/presage/Manifest
@@ -1,3 +1,3 @@
-AUX presage-0.9.1-automagic.patch 4425 SHA256 
21e95d42cc08aaf89a686989f0e7d55c22868fd7603c8c76cd31bf1fbc9ed354 SHA512 
e57ec49b442f8eb08c9a0a62572acab60b5aa0bfe88a0f8552a7959cbf38fa296d00a83c96e82e727bd21fc5ab07a4b3296b51b7929fea4ca69e4922ddfd3e3a
 WHIRLPOOL 
e568e83ecc6d24f7d9ce9b4aa93a45e3316501afba8e946ede2f3b012abae3fe1f935ac1ff09b293ced5858dec1b876c560e20803869b75eb59e9ff54aa165dc
+AUX presage-0.9.1-automagic.patch 4203 SHA256 
f2ead433945b3a28c87c012fa6c89da35ef74c8055ae417aedc16de641b3e22b SHA512 
5cd5f1ad076345ec8745da610bc95f56396bb82229b6c5e8153bc050c297f40c781348357523e2a365855ee024ed81692e3fae8dbf8383a2a53facb06e483c57
 WHIRLPOOL 
8cfac46fa2f9fa2e5e155901a68d8d6cddea142beac103881f7a52d90b6de6e019a7f894ba98dc3916827733dbededda41b150a61760392d93ced0821ed03226
 DIST presage-0.9.1.tar.gz 2687519 SHA256 
5ed567e350402a1d72c9053c78ecec3be710b7e72153a0223c6d19a7fe58a366 SHA512 
46d7151a80e376d9a8a018be985b2c88a070a6f6555bf3d9b1f50aa41ea8e861c8e26ed3c25a5833855ae01004ecbd36408711e40baf4f072599c240f6c721b1
 WHIRLPOOL 
f1e29d5c36d22b6fd910ab7796fad8b877debedb7577a9b7d3aad7a865cf8fd448d0e1b4354f820114142409efca58c58aa9778b08cd4a8abb6b2c3263423cb5
 EBUILD presage-0.9.1.ebuild 1226 SHA256 
84be323ec3264f5415eb77184c3751b7caa416a108c260193dfd9895ff9e8b49 SHA512 
f32cfe718c121796cbe69912e86787340eb3c2b8a39df8d4a9c3aad31adebb91f158553c6b458c10e4a0b89475b2a9960d0c6bc29f3a975350b124e76df1d925
 WHIRLPOOL 
e785eec0a52811d52480ae73d2462b48e11ebc55722632446d196276e9df58fa2b4498b68e5f88ea2ce49790ac3cc4dfb1721f217aff7b3626af6ff1db13f516

diff --git a/app-text/presage/files/presage-0.9.1-automagic.patch 
b/app-text/presage/files/presage-0.9.1-automagic.patch
index d821528..ac08de3 100644
--- a/app-text/presage/files/presage-0.9.1-automagic.patch
+++ b/app-text/presage/files/presage-0.9.1-automagic.patch
@@ -1,14 +1,5 @@
 configure.ac   2017-10-24 16:21:02.605268927 -0400
-+++ configure.patched.ac   2017-10-24 16:29:24.098226985 -0400
-@@ -23,7 +23,7 @@
- 
- 
- AC_INIT([presage],[0.8.9],[matteo.vesc...@yahoo.co.uk])
--AM_INIT_AUTOMAKE([-Wall -Werror])
-+AM_INIT_AUTOMAKE([-Wall])
- 
- AC_CONFIG_SRCDIR([src/lib/presage.cpp])
- AC_CONFIG_HEADERS([config.h:config.hin])
+--- configure.9.1.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



[gentoo-commits] repo/user/superposition:master commit in: app-text/presage/, app-text/presage/files/

2017-10-09 Thread Philip Miess
commit: e095d2981c78818d5c7eaf7d583bc278427477f7
Author: Philip Miess  yahoo  com>
AuthorDate: Tue Oct 10 01:50:14 2017 +
Commit: Philip Miess  yahoo  com>
CommitDate: Tue Oct 10 01:50:14 2017 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=e095d298

fix patch

 app-text/presage/Manifest| 2 +-
 app-text/presage/files/presage-0.8.9-automagic.patch | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-text/presage/Manifest b/app-text/presage/Manifest
index d82214d..f7aaccf 100644
--- a/app-text/presage/Manifest
+++ b/app-text/presage/Manifest
@@ -1,3 +1,3 @@
-AUX presage-0.8.9-automagic.patch 4396 SHA256 
249b6aee1e6bee7814345cfe5f10804c5e307f6f97714d6c6f1a86764651f1da SHA512 
aa9d5dfc21c96d39b15aaa5262fc0d00f9bd3ab08387c9357a0eb265226fa8781742e97b163711b3c2907b44ae675a0f03ae638f0b3fde9a3c8274226d6fa2ec
 WHIRLPOOL 
4df12ea69f95a5871aeb4b8706a94b1c986726cec9a34ff87ec45ee378a055c8ccd8020aba252fb27533377fd7ef6e224f6d6aea468c1383904e321733d73d2a
+AUX presage-0.8.9-automagic.patch 4344 SHA256 
01108beee4b326604bb07a86b686caa3633d039aee4c23ec229f245ac86b7730 SHA512 
02e2d7f47e8f7eda0dce2c8f3911bd93a2372a2f4761f84201399cf103927a9c1cc9f7a408ec64e415c221fb3915ba1f8c2d045f6f99ee9af64abfe8adfc756d
 WHIRLPOOL 
b6f47942cc1732aee0cbe4229d96bd4b7bf2c4be4a0591f46d207bbc922a07d9223203520518d9c6a4361064ec33f797eece79bc121239c1a994fedf9b62a5b5
 DIST presage-0.8.9.tar.gz 2568505 SHA256 
5541e9b350cc603a8d412704dcfa21342369b5b07c6da91947c7523c51678cd0 SHA512 
62206497283b3d7d29546399ea94c5b82d95c91f09c14e48098e1a8791018ccfdda26c46227195cdf706c0097e02bf382360e0a9c7e824edcd86fdfa5f4c3db1
 WHIRLPOOL 
029d3366c94fc52ba0a8337197158cc53d6aba8c276d2ddd52f5f58b864a7da2388af5d67342ece1817a7863fea2f6b675e76bb1e3555df4a1ddd67296a65188
 EBUILD presage-0.8.9.ebuild 1086 SHA256 
ba32954e5bd98bbce17f0af5ea3f3453b483a148021cefaf172ad20e362d3203 SHA512 
5a7c72bcf3eddae357e6360cab98b400540d4674293229963575d837a03f9ed5cd924206424406dc2e47c6fb8b23168fccea525ebfc963547071f42541a5cdbd
 WHIRLPOOL 
0545a601864581de0ccd61cfa11de0d2b53e685e0f50ad106a4db9187d949181cd2d58a63fd1e7ac07a68253c803292fac86f88a391c378ab724d006215301e8

diff --git a/app-text/presage/files/presage-0.8.9-automagic.patch 
b/app-text/presage/files/presage-0.8.9-automagic.patch
index a4cc65f..dcaf379 100644
--- a/app-text/presage/files/presage-0.8.9-automagic.patch
+++ b/app-text/presage/files/presage-0.8.9-automagic.patch
@@ -113,8 +113,8 @@
  dnl ==
 +
  have_dbus_python=no
- AC_MSG_CHECKING(for python dbus module)
- $PYTHON -c "import dbus" 2&>/dev/null
+if test "$PYTHON" != :
+then
 @@ -275,7 +299,7 @@
 fi
 AC_MSG_RESULT($have_dbus_python)



[gentoo-commits] repo/user/superposition:master commit in: app-text/presage/, app-text/presage/files/

2017-10-09 Thread Philip Miess
commit: 8ff6d62616dcc80666a33d05c1f836f68763f99a
Author: Philip Miess  yahoo  com>
AuthorDate: Tue Oct 10 01:42:46 2017 +
Commit: Philip Miess  yahoo  com>
CommitDate: Tue Oct 10 01:42:46 2017 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=8ff6d626

update patch

 app-text/presage/Manifest| 2 +-
 app-text/presage/files/presage-0.8.9-automagic.patch | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-text/presage/Manifest b/app-text/presage/Manifest
index 4754c73..d82214d 100644
--- a/app-text/presage/Manifest
+++ b/app-text/presage/Manifest
@@ -1,3 +1,3 @@
-AUX presage-0.8.9-automagic.patch 4394 SHA256 
2a8fdb54c6042e5bdaa21d2fda30fcf864ff6a7478a20b90f32d585207ef9868 SHA512 
2154bb8c0086a66f89610cb78364e15da65eeef7fc4660daa9149485baae675a43f5709232341a16e62b6a729a736ad9362e5f89d819532734df9336726e38b3
 WHIRLPOOL 
1e1d0b0103e01428f1c3e91c5337b7e2155672aaa6b9f94278fbbc5e105faaa1eddc7eee1d4898a22036f2c870b44a363e81fd1ed7cec9e3d4798410b4e880c3
+AUX presage-0.8.9-automagic.patch 4396 SHA256 
249b6aee1e6bee7814345cfe5f10804c5e307f6f97714d6c6f1a86764651f1da SHA512 
aa9d5dfc21c96d39b15aaa5262fc0d00f9bd3ab08387c9357a0eb265226fa8781742e97b163711b3c2907b44ae675a0f03ae638f0b3fde9a3c8274226d6fa2ec
 WHIRLPOOL 
4df12ea69f95a5871aeb4b8706a94b1c986726cec9a34ff87ec45ee378a055c8ccd8020aba252fb27533377fd7ef6e224f6d6aea468c1383904e321733d73d2a
 DIST presage-0.8.9.tar.gz 2568505 SHA256 
5541e9b350cc603a8d412704dcfa21342369b5b07c6da91947c7523c51678cd0 SHA512 
62206497283b3d7d29546399ea94c5b82d95c91f09c14e48098e1a8791018ccfdda26c46227195cdf706c0097e02bf382360e0a9c7e824edcd86fdfa5f4c3db1
 WHIRLPOOL 
029d3366c94fc52ba0a8337197158cc53d6aba8c276d2ddd52f5f58b864a7da2388af5d67342ece1817a7863fea2f6b675e76bb1e3555df4a1ddd67296a65188
 EBUILD presage-0.8.9.ebuild 1086 SHA256 
ba32954e5bd98bbce17f0af5ea3f3453b483a148021cefaf172ad20e362d3203 SHA512 
5a7c72bcf3eddae357e6360cab98b400540d4674293229963575d837a03f9ed5cd924206424406dc2e47c6fb8b23168fccea525ebfc963547071f42541a5cdbd
 WHIRLPOOL 
0545a601864581de0ccd61cfa11de0d2b53e685e0f50ad106a4db9187d949181cd2d58a63fd1e7ac07a68253c803292fac86f88a391c378ab724d006215301e8

diff --git a/app-text/presage/files/presage-0.8.9-automagic.patch 
b/app-text/presage/files/presage-0.8.9-automagic.patch
index 127cc19..a4cc65f 100644
--- a/app-text/presage/files/presage-0.8.9-automagic.patch
+++ b/app-text/presage/files/presage-0.8.9-automagic.patch
@@ -116,8 +116,8 @@
  AC_MSG_CHECKING(for python dbus module)
  $PYTHON -c "import dbus" 2&>/dev/null
 @@ -275,7 +299,7 @@
-   fi
-   AC_MSG_RESULT($have_dbus_python)
+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"])



[gentoo-commits] repo/user/superposition:master commit in: app-text/presage/, app-text/presage/files/

2017-10-09 Thread Philip Miess
commit: ad01aa4c15f743d582e877de42d48600cf189589
Author: Philip Miess  yahoo  com>
AuthorDate: Tue Oct 10 01:31:58 2017 +
Commit: Philip Miess  yahoo  com>
CommitDate: Tue Oct 10 01:31:58 2017 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=ad01aa4c

modify patch file

 app-text/presage/Manifest   |  2 +-
 8-automagic.patch => presage-0.8.9-automagic.patch} | 17 +
 2 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/app-text/presage/Manifest b/app-text/presage/Manifest
index 1eb7d53..499697a 100644
--- a/app-text/presage/Manifest
+++ b/app-text/presage/Manifest
@@ -1,3 +1,3 @@
-AUX presage-0.8.8-automagic.patch 4399 SHA256 
1ae5e85214dc400189cbb07ab4b34c16e778f6942fcea129fdb5397b5c5743ad SHA512 
622883949554935c3fd12a08b1e117121ae38e5f958b4847eb83b29352df9831f4397a518372829be881bd0157a8e03fc1744e5e0585072869518e64a186bad5
 WHIRLPOOL 
bdb531a6a66fc617d0e7ac73fb92979539d4cd134cd1ac9c3116473d0f2a6cdf39b0300e02f8974c24b708335952d4aaf669a32eee6b0c44c51c0fc872b86695
+AUX presage-0.8.9-automagic.patch 4418 SHA256 
f3b50e67b664af763bffaf36e945ec30db4a8c8d0f4b0d12d7b8b2b3c576dafd SHA512 
d44c0b5f11a86266a6ca6ee572bfdfa5e14b865abe7bf85164d419910a3b075ceaaeb1c172dee6fd37847eada6ce5846fd32163424b984e17eeefc22f07dec44
 WHIRLPOOL 
436778ba58f2c83fb71438129cd61559d34cc0f454e278f69ef1360f353cf7874b0fb943a2464350f0456c6ac979916f2fcb730bdaecf1db2c5763d2bf47d356
 DIST presage-0.8.9.tar.gz 2568505 SHA256 
5541e9b350cc603a8d412704dcfa21342369b5b07c6da91947c7523c51678cd0 SHA512 
62206497283b3d7d29546399ea94c5b82d95c91f09c14e48098e1a8791018ccfdda26c46227195cdf706c0097e02bf382360e0a9c7e824edcd86fdfa5f4c3db1
 WHIRLPOOL 
029d3366c94fc52ba0a8337197158cc53d6aba8c276d2ddd52f5f58b864a7da2388af5d67342ece1817a7863fea2f6b675e76bb1e3555df4a1ddd67296a65188
 EBUILD presage-0.8.9.ebuild 1086 SHA256 
d20d982a6fd1f089fae2b4bef549c8a75ba14fe16e44ccfe54ea55ac06dd63b5 SHA512 
a94a98f9405fed474d36ea22733da99011846a68c6a698a5df0d7eedfe5f465f782d90e562623a2b1b9f301590eba015292397b5faf8cd314b2ec5943e93445b
 WHIRLPOOL 
3e968a2dc84b46580892a3617381209ca3d74d8d660b25cb87c2db282aee2e8f3e4faed75f3cbaf7b2b2046bb87e0b547eeb459ed689c30ffc5764be6fdbb27c

diff --git a/app-text/presage/files/presage-0.8.8-automagic.patch 
b/app-text/presage/files/presage-0.8.9-automagic.patch
similarity index 91%
rename from app-text/presage/files/presage-0.8.8-automagic.patch
rename to app-text/presage/files/presage-0.8.9-automagic.patch
index dfb454b..ac7f503 100644
--- a/app-text/presage/files/presage-0.8.8-automagic.patch
+++ b/app-text/presage/files/presage-0.8.9-automagic.patch
@@ -3,7 +3,7 @@
 @@ -23,7 +23,7 @@
  
  
- AC_INIT([presage],[0.8.8],[matteo.vesc...@yahoo.co.uk])
+ AC_INIT([presage],[0.8.9],[matteo.vesc...@yahoo.co.uk])
 -AM_INIT_AUTOMAKE([-Wall -Werror])
 +AM_INIT_AUTOMAKE([-Wall])
  
@@ -98,12 +98,12 @@
  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])])
-@@ -238,7 +264,7 @@
+@@ -239,7 +264,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"])
+-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],
@@ -115,10 +115,11 @@
  have_dbus_python=no
  AC_MSG_CHECKING(for python dbus module)
  $PYTHON -c "import dbus" 2&>/dev/null
-@@ -272,7 +299,7 @@
-   have_dbus_python=no
- fi
- AC_MSG_RESULT($have_dbus_python)
+@@ -275,7 +299,7 @@
+   have_dbus_python=no
+   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"])