[oe-commits] Koen Kooi : abiword: add 2.8.6

git version control git at git.openembedded.org
Tue Aug 31 08:57:31 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 4e3cee45621b0354c33db1da3f9963571dc03c3b
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=4e3cee45621b0354c33db1da3f9963571dc03c3b

Author: Koen Kooi <koen at openembedded.org>
Date:   Tue Aug 31 10:36:53 2010 +0200

abiword: add 2.8.6

---

 recipes/abiword/abiword_2.8.6.bb |   57 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 57 insertions(+), 0 deletions(-)

diff --git a/recipes/abiword/abiword_2.8.6.bb b/recipes/abiword/abiword_2.8.6.bb
new file mode 100644
index 0000000..730fa7b
--- /dev/null
+++ b/recipes/abiword/abiword_2.8.6.bb
@@ -0,0 +1,57 @@
+require abiword-2.5.inc
+DEPENDS += " loudmouth libwmf-native gtkmathview "
+RCONFLICTS_${PN} = "abiword-embedded"
+
+SRC_URI = "http://www.abisource.com/downloads/abiword/${PV}/source/abiword-${PV}.tar.gz;name=abiword \
+           file://autogen-common.sh \
+           file://nodolt.patch"
+
+SRC_URI[abiword.md5sum] = "f883b0a7f26229a9c66fd6a1a94381aa"
+SRC_URI[abiword.sha256sum] = "d99089a63a6cfc1a6a4a026be9278028d47d224088d24b1853acb67e95683a15"
+
+
+EXTRA_OECONF = " --disable-static  \
+                 --enable-plugins \
+                 --without-gnomevfs \
+                 --enable-collab-backend-xmpp \
+                 --enable-collab-backend-tcp \
+                 --enable-collab-backend-service \
+                 --with-libwmf-config=${STAGING_DIR} \
+"
+
+do_configure() {
+    install -m 0755 ${WORKDIR}/autogen-common.sh ${S}/autogen-common.sh
+    cd ${S}
+    ./autogen-common.sh
+    autotools_do_configure
+}
+
+FILES_${PN} 			+= "${libdir}/libabiword-*.so ${datadir}/mime-info ${datadir}/abiword-${SHRT_VER}/certs ${datadir}/abiword-${SHRT_VER}/ui ${datadir}/abiword-${SHRT_VER}/xsl* ${datadir}/abiword-${SHRT_VER}/mime-info ${datadir}/abiword-${SHRT_VER}/Pr*.xml"
+FILES_abiword-strings           += "${datadir}/abiword-${SHRT_VER}/strings"
+FILES_abiword-systemprofiles    += "${datadir}/abiword-${SHRT_VER}/system.profile*"
+
+PACKAGES_DYNAMIC = "abiword-meta abiword-plugin-*"
+
+python populate_packages_prepend () {
+	abiword_libdir    = bb.data.expand('${libdir}/abiword-2.8/plugins', d)
+	do_split_packages(d, abiword_libdir, '(.*)\.so$', 'abiword-plugin-%s', 'Abiword plugin for %s', extra_depends='')
+
+	metapkg = "abiword-meta"
+	bb.data.setVar('ALLOW_EMPTY_' + metapkg, "1", d)
+	bb.data.setVar('FILES_' + metapkg, "", d)
+	blacklist = [ 'abiword-plugins-dbg', 'abiword-plugins', 'abiword-plugins-doc', 'abiword-plugins-dev', 'abiword-plugins-locale' ]
+	metapkg_rdepends = []
+	packages = bb.data.getVar('PACKAGES', d, 1).split()
+	for pkg in packages[1:]:
+		if not pkg in blacklist and not pkg in metapkg_rdepends and not pkg.count("-dev") and not pkg.count("-dbg") and not pkg.count("static") and not pkg.count("locale") and not pkg.count("abiword-doc"):
+			print "Modifying ", pkg
+			metapkg_rdepends.append(pkg)
+	bb.data.setVar('RDEPENDS_' + metapkg, ' '.join(metapkg_rdepends), d)
+	bb.data.setVar('DESCRIPTION_' + metapkg, 'abiword-plugin meta package', d)
+	packages.append(metapkg)
+	bb.data.setVar('PACKAGES', ' '.join(packages), d)
+}
+
+FILES_${PN}-dev += "${libdir}/abiword-${SHRT_VER}/plugins/*.la"
+FILES_${PN}-dbg += "${libdir}/abiword-${SHRT_VER}/plugins/.debug"
+





More information about the Openembedded-commits mailing list