blob: 106e29c85fd43d850bef40c970156a8e424fb3f8 (
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
39
40
41
42
43
44
45
46
47
48
49
|
DESCRIPTION = "AbiWord is a free word processing program similar to Microsoft(r) Word"
HOMEPAGE = "http://www.abiword.org"
SECTION = "x11/office"
LICENSE = "GPLv2"
DEPENDS = "boost loudmouth libwpd librsvg goffice poppler libglade"
RDEPENDS_${PN} = "abiword"
SRC_URI = "http://www.abiword.org/downloads/abiword/${PV}/source/abiword-plugins-${PV}.tar.gz;name=plugins \
http://www.abiword.org/downloads/abiword/${PV}/source/abiword-${PV}.tar.gz;name=archive \
file://abiword-cxx-for-ld-fix.patch \
"
DEFAULT_PREFERENCE = "2"
inherit autotools
PARALLEL_MAKE=""
# Ugly hack to find libstdc++
export LD="${CXX}"
EXTRA_OECONF = " --without-libwmf \
--without-inter7eps \
--with-abiword=${WORKDIR}/abiword-${PV} \
--with-boost=${STAGING_DIR_HOST} \
--with-boost-thread=boost_thread-mt \
"
PACKAGES_DYNAMIC = "abiword-plugin-*"
python populate_packages_prepend () {
abiword_libdir = bb.data.expand('${libdir}/abiword-2.6/plugins', d)
do_split_packages(d, abiword_libdir, '^libAbi(.*)\.so$', 'abiword-plugin-%s', 'Abiword plugin for %s', extra_depends='')
do_split_packages(d, abiword_libdir, '^libAbi(.*)\.la$', 'abiword-plugin-%s-dev', 'Abiword plugin for %s', extra_depends='')
}
PACKAGES =+ "abiword-plugin-collab-glade"
FILES_abiword-plugin-collab-glade += "${datadir}"
RDEPENDS_abiword-plugin-collab-glade = "abiword-plugin-collab"
FILES_${PN}-dbg += "${libdir}/abiword-2.6/plugins/.debug"
SRC_URI[plugins.md5sum] = "ebdc165d1b6c3c69f11148cf7841f257"
SRC_URI[plugins.sha256sum] = "329521398105348ff466b90e1a7567574bd690639b048b6356ddc353d864b785"
SRC_URI[archive.md5sum] = "d627a5d1061160c683f2257da498355b"
SRC_URI[archive.sha256sum] = "35b1ced07bed8706a81c2c26c42bf95bdf7a4a9c1fba98935cc5ecb5c674f0bb"
|