summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/gnuplot/gnuplot.inc
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@gmail.com>2018-03-18 20:08:32 +0100
committerArmin Kuster <akuster808@gmail.com>2018-03-21 18:45:10 -0700
commit2a3bc6d719068bd71b7c6daae200fce2c0958ead (patch)
treea2a793e0196231feda561f3d865ba70ba52f8a5b /meta-oe/recipes-extended/gnuplot/gnuplot.inc
parenta26ac6adece18a575abb371b2b6d153fdb777048 (diff)
downloadmeta-openembedded-2a3bc6d719068bd71b7c6daae200fce2c0958ead.tar.gz
gnuplot: update 5.0.5 -> 5.2.2 and rework
* merge gnuplot.inc to recipe - nothing else requres gnuplot.inc * add native build required to build all kind of docs * patches were far from applying so they were reworked: * subdirs.patch -> 0001...-0002... * lua-loadlibs-configure-in-fix.patch: Test with lua in PACKAGECONFIG without issues * qt4 packageconfig was replaced by qt5 (build tested) * make desktop file work Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/gnuplot/gnuplot.inc')
-rw-r--r--meta-oe/recipes-extended/gnuplot/gnuplot.inc42
1 files changed, 0 insertions, 42 deletions
diff --git a/meta-oe/recipes-extended/gnuplot/gnuplot.inc b/meta-oe/recipes-extended/gnuplot/gnuplot.inc
deleted file mode 100644
index 19ee874e2d..0000000000
--- a/meta-oe/recipes-extended/gnuplot/gnuplot.inc
+++ /dev/null
@@ -1,42 +0,0 @@
1DESCRIPTION = "Gnuplot is a portable command-line driven interactive datafile \
2(text or binary) and function plotting utility."
3HOMEPAGE = "http://www.gnuplot.info/"
4SECTION = "console/scientific"
5LICENSE = "gnuplot"
6LIC_FILES_CHKSUM = "file://Copyright;md5=243a186fc2fd3b992125d60d5b1bab8f"
7DEPENDS = "virtual/libx11 gd readline"
8
9inherit autotools distro_features_check
10# depends on virtual/libx11
11REQUIRED_DISTRO_FEATURES = "x11"
12
13acpaths = ""
14
15PACKAGECONFIG ??= "cairo"
16PACKAGECONFIG[cairo] = "--with-cairo,--without-cairo,cairo pango"
17PACKAGECONFIG[lua] = "--with-lua,--without-lua,lua"
18# there's compilation failure if qt4 is enabled
19PACKAGECONFIG[qt4] = "--with-qt,--without-qt,qt4-x11-free"
20
21EXTRA_OECONF = "--with-readline=${STAGING_LIBDIR}/.. \
22 --without-tutorial \
23 --disable-wxwidgets"
24
25do_compile_prepend() {
26 install -m 0644 ${WORKDIR}/qtplot-0.2/qtopia.trm ${S}/term/
27}
28
29do_install_append() {
30 install -d ${D}${datadir}/applications/
31 install -m 0644 ${WORKDIR}/gnuplot.desktop ${D}${datadir}/applications/
32 install -d ${D}${datadir}/pixmaps/
33 install -m 0644 ${WORKDIR}/gnuplot.png ${D}${datadir}/pixmaps/
34}
35
36PACKAGES =+ "${PN}-x11-dbg ${PN}-x11"
37DESCRIPTION_${PN}-x11 = "X11 display terminal for Gnuplot."
38SECTION_${PN}-x11 = "x11/scientific"
39FILES_${PN}-x11 = "${libexecdir} ${datadir}/applications ${datadir}/pixmaps ${libdir}/X11 "
40
41FILES_${PN} += "${datadir}/texmf"
42FILES_${PN}-x11-dbg += "${libexecdir}/gnuplot/*/.debug"