diff options
author | Rod Whitby <rod@whitby.id.au> | 2006-02-01 13:00:22 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-01 13:00:22 +0000 |
commit | 1f08c565b557892a5717af0d1283d97e9c4aa61c (patch) | |
tree | c5865906053eef8eea830d9f17b16be9e601a37b | |
parent | 57a0ea251c99054f1da88f4ae0233010a7a062e1 (diff) | |
parent | d68c92b4a63e4f46071a1c35ed1bb1009ba6f324 (diff) |
merge of 11d7aceb4fa662251d4850f8057e05439a0a1b10
and e7435bb445f99b2a8a23053c5faf7ee2326e32d4
-rw-r--r-- | packages/gnome/goffice_0.2.0.bb | 21 | ||||
-rw-r--r-- | packages/gnumeric/gnumeric_1.6.2.bb | 20 |
2 files changed, 41 insertions, 0 deletions
diff --git a/packages/gnome/goffice_0.2.0.bb b/packages/gnome/goffice_0.2.0.bb new file mode 100644 index 0000000000..59372fa5ec --- /dev/null +++ b/packages/gnome/goffice_0.2.0.bb @@ -0,0 +1,21 @@ +DESCRIPTION="Gnome Office Library" +LICENSE="GPLv2" +PR="r0" + +DEPENDS="glib-2.0 gtk+ pango libgnomeprint libgsf libglade libxml2 libart-lgpl" + +inherit gnome pkgconfig + +do_stage() { + gnome_stage_includes + oe_libinstall -so -C goffice libgoffice-1 ${STAGING_LIBDIR} +} + +PACKAGES_DYNAMIC = "goffice-plugin-*" + +python populate_packages_prepend () { + goffice_libdir = bb.data.expand('${libdir}/goffice/${PV}/plugins', d) + + do_split_packages(d, goffice_libdir, '(.*)', 'goffice-plugin-%s', 'Goffice plugin for %s', allow_dirs=True) +} + diff --git a/packages/gnumeric/gnumeric_1.6.2.bb b/packages/gnumeric/gnumeric_1.6.2.bb new file mode 100644 index 0000000000..18ab5472a4 --- /dev/null +++ b/packages/gnumeric/gnumeric_1.6.2.bb @@ -0,0 +1,20 @@ +LICENSE = "GPL" +SECTION = "x11/utils" +S = "${WORKDIR}/gnumeric-${PV}" +MAINTAINER = "Koen Kooi <koen@handhelds.org>" +DEPENDS = "libgsf gtk+ libxml2 goffice libglade libart-lgpl intltool-native libgnomecanvas libgnomeprint libgnomeprintui libbonoboui" +DESCRIPTION = "Gnumeric spreadsheet for GNOME" + +inherit gnome flow-lossage + +SRC_URI += "file://remove-docs.patch;patch=1" + +EXTRA_OECONF=" --without-perl " + +PACKAGES_DYNAMIC = "gnumeric-plugin-*" + +python populate_packages_prepend () { + gnumeric_libdir = bb.data.expand('${libdir}/gnumeric/${PV}/plugins', d) + + do_split_packages(d, gnumeric_libdir, '(.*)', 'gnumeric-plugin-%s', 'Gnumeric plugin for %s', allow_dirs=True) +} |