--- /dev/null
+#!/bin/sh
+
+killproc()
+{
+ pid=`/bin/ps -e x |
+ /bin/grep $1 |
+ /bin/grep -v grep |
+ /bin/sed -e 's/^ *//' -e 's/ .*//'`
+ [ "$pid" != "" ] && kill $pid
+}
+
+usage()
+{
+ echo "Usage: $0 {start|stop}"
+}
+
+if [ $# -lt 1 ] ; then usage ; exit ; fi
+
+case "$1" in
+start)
+ echo -n "Start pbserver"
+ # make sure lo interface is configured (otherwise qpobox will not bind to pbserver)
+ ifconfig lo|grep 127.0.0.1 >/dev/null || ifconfig lo 127.0.0.1
+ cd /opt/QtPalmtop/pobox; ./pbserver > /dev/null &
+ echo
+ sleep 1
+ ;;
+
+stop)
+ echo -n "Stop pbserver"
+ killproc pbserver
+ echo
+ ;;
+
+esac
+
+exit 0
+
--- /dev/null
+
+#
+# Signed off by Michael 'Mickey' Lauer <mickey@Vanille.de>
+#
+
+--- OpenPOBox/server/Makefile.in~remove-local-includes
++++ OpenPOBox/server/Makefile.in
+@@ -11,8 +11,6 @@
+ # -I../asearch -I../romakana -I../include -g
+
+ CFLAGS = -DUNIX @CFLAGS@ \
+- -I/usr/local/include -I/usr/local/lib/glib/include \
+- -I@prefix@/include \
+ -I../asearch -I../romakana -I../include -g
+
+ pbserver: pbserver.o server.o poboxlib.o romakana_he.o lookup.o
DEPENDS = "perl-native ruby-native nkf-native"
PR = "r2"
-BROKEN = "1"
-
SRC_URI = "http://pitecan.com/OpenPOBox/dist/pobox-${PV}.tgz \
http://www.vanille.de/mirror/pbserver-${PV}.tar.gz \
- file://OpenPOBox-1.25.diff;patch=1"
+ file://OpenPOBox-1.25.diff;patch=1 \
+ file://remove-local-includes.patch;patch=1 \
+ file://pbserver.sh"
S = "${WORKDIR}/OpenPOBox"
inherit autotools update-rc.d
oe_runmake
cp ${S}/dict/data/fugodic ${WORKDIR}/pbserver/fugodic.txt
oe_runmake -C ${WORKDIR}/pbserver dic
+ #patch -p1
}
do_install() {
install -m 0644 ${WORKDIR}/pbserver/staticdic ${D}${palmtopdir}/pobox/
install -m 0644 ${WORKDIR}/pbserver/learndic ${D}${palmtopdir}/pobox/
install -d ${D}${sysconfdir}/init.d/
- install -m 0755 ${WORKDIR}/pbserver/pbserver.sh ${D}${sysconfdir}/init.d/pbserver
+ install -m 0755 ${WORKDIR}/pbserver.sh ${D}${sysconfdir}/init.d/pbserver
}