diff options
| -rw-r--r-- | meta-gnome/recipes-gnome/gnumeric/gnumeric_1.12.0.bb | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/meta-gnome/recipes-gnome/gnumeric/gnumeric_1.12.0.bb b/meta-gnome/recipes-gnome/gnumeric/gnumeric_1.12.0.bb new file mode 100644 index 0000000000..4f4059412f --- /dev/null +++ b/meta-gnome/recipes-gnome/gnumeric/gnumeric_1.12.0.bb | |||
| @@ -0,0 +1,43 @@ | |||
| 1 | LICENSE = "GPLv2 | GPLv3" | ||
| 2 | LIC_FILES_CHKSUM = "file://COPYING;md5=be0de417af78dd340558810d1ced52e6" | ||
| 3 | SECTION = "x11/utils" | ||
| 4 | S = "${WORKDIR}/gnumeric-${PV}" | ||
| 5 | DEPENDS = "gdk-pixbuf libgsf gtk+3 libxml2 libglade libart-lgpl intltool-native libgnomecanvas libgnomeprint libbonoboui orbit2-native goffice" | ||
| 6 | DESCRIPTION = "Gnumeric spreadsheet for GNOME" | ||
| 7 | |||
| 8 | GNOME_COMPRESS_TYPE = "xz" | ||
| 9 | |||
| 10 | SRC_URI[archive.md5sum] = "3fd87cca95334b5d8ac922989670fe27" | ||
| 11 | SRC_URI[archive.sha256sum] = "037b53d909e5d1454b2afda8c4fb1e7838e260343e36d4e36245f4a5d0e04111" | ||
| 12 | |||
| 13 | inherit gnome | ||
| 14 | |||
| 15 | EXTRA_OECONF=" --without-perl " | ||
| 16 | |||
| 17 | PACKAGES_DYNAMIC += "gnumeric-plugin-*" | ||
| 18 | PACKAGES += "libspreadsheet libspreadsheet-dev gnumeric-goffice gnumeric-goffice-dbg" | ||
| 19 | |||
| 20 | FILES_${PN}-dbg += "${libdir}/gnumeric/${PV}/plugins/*/.debug" | ||
| 21 | FILES_${PN}-dev = "${includedir} ${libdir}/pkgconfig" | ||
| 22 | FILES_${PN}-staticdev = "${libdir}/libspreadsheet.la" | ||
| 23 | FILES_libspreadsheet = "${libdir}/libspreadsheet-${PV}.so" | ||
| 24 | FILES_libspreadsheet-dev = "${libdir}/libspreadsheet.so" | ||
| 25 | FILES_gnumeric-goffice-dbg += "${libdir}/goffice/*/plugins/gnumeric/.debug" | ||
| 26 | FILES_gnumeric-goffice = "${libdir}/goffice/*/plugins/gnumeric/*" | ||
| 27 | |||
| 28 | # This hack works around the problem mentioned here: | ||
| 29 | # https://mail.gnome.org/archives/gnumeric-list/2010-February/msg00006.html | ||
| 30 | do_install_prepend() { | ||
| 31 | sed -i ${S}/doc/C/Makefile -e 's/\tfor file in $(omffile); do/\t-for file in $(omffile); do/' | ||
| 32 | } | ||
| 33 | |||
| 34 | python populate_packages_prepend () { | ||
| 35 | gnumeric_libdir = bb.data.expand('${libdir}/gnumeric/${PV}/plugins', d) | ||
| 36 | |||
| 37 | do_split_packages(d, gnumeric_libdir, '^(.*)/.*$', | ||
| 38 | output_pattern='gnumeric-plugin-%s', | ||
| 39 | description='Gnumeric plugin %s', | ||
| 40 | extra_depends='', | ||
| 41 | recursive=True, | ||
| 42 | prepend=True) | ||
| 43 | } | ||
