Remove abiword-2.8.6 recipe and patch as it was broken.

This commit is contained in:
Scott McCreary
2014-12-01 01:50:51 +00:00
parent 2d34c52ac2
commit 76bb3f46b7
2 changed files with 0 additions and 100 deletions

View File

@@ -1,16 +0,0 @@
SUMMARY="AbiWord used to work on BeOS but support has long since been removed from AbiWord to build on BeOS/Haiku. Perhaps revisit this if/when they finsihed their port to Qt."
DESCRIPTION="AbiWord"
HOMEPAGE="http://www.abisource.com"
ARCHITECTURES="!all"
BUILD()
{
echo "AbiWord does not support Haiku, so this will not be fixed in 2.x"
echo "Abiword is working on a port to Qt in their post 3.x releases, but it's not yet working."
}
INSTALL()
{
echo "Not supported"
}

View File

@@ -1,84 +0,0 @@
diff -urN abiword-2.8.6/configure.in abiword-2.8.6-haiku/configure.in
--- abiword-2.8.6/configure.in 2010-06-13 13:52:21.002883584 +0000
+++ abiword-2.8.6-haiku/configure.in 2011-04-14 13:24:55.000000000 +0000
@@ -84,6 +84,9 @@
${gsf_req}
${wv_req}
"
+haiku_pkgs="
+ ${fribidi_req}
+"
# optional deps
enchant_req='enchant >= 1.2.0'
@@ -119,6 +122,9 @@
# win32 deps
win_pkgs="$enchant_req"
+#haiku deps
+haiku_pkgs=""
+
#
# System tests
#
@@ -144,6 +150,10 @@
PLATFORM="win"
TOOLKIT="win"
;;
+ *haiku*)
+ PLATFORM="haiku"
+ TOOLKIT="haiku"
+ ;;
*)
PLATFORM="unix"
TOOLKIT="gtk"
@@ -408,6 +418,16 @@
fi
])
+AC_ARG_WITH([haiku],
+ [AS_HELP_STRING([--with-haiku], [(Haiku only) add `finddir B_COMMON_DIRECTORY' prefix to CPP/LDFLAGS])],
+[
+ if test "x$withval" != "xno"; then
+ CPPFLAGS="$CPPFLAGS -I`finddir B_COMMON_DIRECTORY`/include"
+ LDFLAGS="$LDFLAGS -L`finddir B_COMMON_DIRECTORY`/lib"
+ CC=$CXX
+ fi
+])
+
AC_ARG_WITH([fink],
[AS_HELP_STRING([--with-fink], [(Mac OSX only) add `/sw' prefix to CPP/LDFLAGS])],
[
@@ -514,11 +534,14 @@
deps_pkgs="$deps_pkgs $cocoa_pkgs"
SYSTEM_LIBS="-framework Cocoa"
AC_CHECK_PROG([CONVERT], [convert], convert, AC_MSG_ERROR(Cannot find ImageMagick convert))
+elif test "$TOOLKIT" = "haiku"; then
+ deps_pkgs="$haiku_pkgs"
+ SYSTEM_LIBS="-lbe -lroot -lnetwork"
else
deps_pkgs="$deps_pkgs $gtk_pkgs"
fi
-PKG_CHECK_MODULES(DEPS,[$deps_pkgs])
+#PKG_CHECK_MODULES(DEPS,[$deps_pkgs])
dnl specific gtk214 test.
if test "$TOOLKIT" = "gtk"; then
PKG_CHECK_MODULES(GTK214, gtk+-2.0 > 2.14, [abi_cv_gtk214=yes],
@@ -647,6 +670,7 @@
AM_CONDITIONAL([TOOLKIT_COCOA], test "$TOOLKIT" == "cocoa")
AM_CONDITIONAL([TOOLKIT_GTK], test "$TOOLKIT" == "gtk")
AM_CONDITIONAL([TOOLKIT_WIN], test "$TOOLKIT" == "win")
+AM_CONDITIONAL([TOOLKIT_HAIKU], test "$TOOLKIT" == "haiku")
if test "$enable_dynamic" == ""; then
enable_dynamic="no"
@@ -783,7 +807,7 @@
eval $(echo "enable_$plugin")="auto"
done
else
- default_plugins="opendocument"
+ default_plugins=""
if test "$abi_cv_disable_default_plugins" != "yes"; then
PLUGINS="$default_plugins"