Section fixes
[vuplus_openembedded] / gnuplot / gnuplot_4.0.0.oe
1 DESCRIPTION = "Gnuplot is a portable command-line driven interactive datafile \
2 (text or binary) and function plotting utility."
3 SECTION = "x11/utils"
4 PRIORITY = "optional"
5 MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
6 DEPENDS = "x11 libpng gd readline"
7
8 SRC_URI = "ftp://ftp.gnuplot.info/pub/gnuplot/gnuplot-${PV}.tar.gz \
9            file://subdirs.patch;patch=1 \
10            file://gnuplot.desktop \
11            file://gnuplot.png"
12
13 inherit autotools 
14 acpaths = ""
15 EXTRA_OECONF = "--with-readline=${STAGING_LIBDIR}/.. \
16                 --without-plot \
17                 --with-png=${STAGING_LIBDIR}/.. \
18                 --with-gd=${STAGING_LIBDIR}/.. \
19                 --without-lisp-files \
20                 --without-tutorial"
21
22 do_install_append() {
23         install -d ${D}${datadir}/applications/
24         install -m 0644 ${WORKDIR}/gnuplot.desktop ${D}/${datadir}/applications/
25         install -d ${D}${datadir}/pixmaps/
26         install -m 0644 ${WORKDIR}/gnuplot.png ${D}${datadir}/pixmaps/
27 }