blob: 6278c920be3325fb4dc2a5dbb6021f6d10f57f46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
DESCRIPTION = "OpenPOBox is an open source implementation of a 'Predictive Operation Based On eXample'"
SECTION = "libs/inputmethods"
LICENSE = "GPL"
DEPENDS = "perl-native ruby-native nkf-native"
PR = "r2"
SRC_URI = "${SOURCEFORGE_MIRROR}/gakusei/pobox-${PV}.tar.bz2 \
http://www.vanille.de/mirror/pbserver-${PV}.tar.gz \
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
FILES_${PN} = "${palmtopdir}/pobox/* ${sysconfdir}/init.d/pbserver"
INITSCRIPT_NAME = "pbserver"
INITSCRIPT_PARAMS = "start 99 5 . stop 01 0 ."
EXTRA_OECONF = "--enable-lookup"
PARALLEL_MAKE = ""
do_compile() {
oe_runmake
cp ${S}/dict/data/fugodic ${WORKDIR}/pbserver/fugodic.txt
oe_runmake -C ${WORKDIR}/pbserver dic
#patch -p1
}
do_install() {
install -d ${D}${palmtopdir}/pobox/
install -m 0755 ${S}/server/pbserver ${D}${palmtopdir}/pobox/
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.sh ${D}${sysconfdir}/init.d/pbserver
}
|