diff options
author | Rene Wagner <rw@handhelds.org> | 2004-12-19 16:20:42 +0000 |
---|---|---|
committer | Rene Wagner <rw@handhelds.org> | 2004-12-19 16:20:42 +0000 |
commit | 5e6024e4131b93603b842dc7a400f918c535d36e (patch) | |
tree | ff4b86afe458108a6d35eb009aaa50269e0bec3d /packages/gnuplot | |
parent | 4ced78fc07a64771fc233c9ea928514cce758800 (diff) |
gnuplot: improved icon
BKrev: 41c5aa5a7IWF5Ube0D2iBFyvlqa7Ww
Diffstat (limited to 'packages/gnuplot')
-rw-r--r-- | packages/gnuplot/files/gnuplot.png | bin | 0 -> 9383 bytes | |||
-rw-r--r-- | packages/gnuplot/gnuplot_4.0.0.bb | 28 |
2 files changed, 28 insertions, 0 deletions
diff --git a/packages/gnuplot/files/gnuplot.png b/packages/gnuplot/files/gnuplot.png Binary files differindex e69de29bb2..054cd9e7c7 100644 --- a/packages/gnuplot/files/gnuplot.png +++ b/packages/gnuplot/files/gnuplot.png diff --git a/packages/gnuplot/gnuplot_4.0.0.bb b/packages/gnuplot/gnuplot_4.0.0.bb index e69de29bb2..ca7194ff99 100644 --- a/packages/gnuplot/gnuplot_4.0.0.bb +++ b/packages/gnuplot/gnuplot_4.0.0.bb @@ -0,0 +1,28 @@ +DESCRIPTION = "Gnuplot is a portable command-line driven interactive datafile \ +(text or binary) and function plotting utility." +SECTION = "x11/utils" +PRIORITY = "optional" +MAINTAINER = "Chris Larson <kergoth@handhelds.org>" +DEPENDS = "x11 libpng gd readline" +PR = "r1" + +SRC_URI = "ftp://ftp.gnuplot.info/pub/gnuplot/gnuplot-${PV}.tar.gz \ + file://subdirs.patch;patch=1 \ + file://gnuplot.desktop \ + file://gnuplot.png" + +inherit autotools +acpaths = "" +EXTRA_OECONF = "--with-readline=${STAGING_LIBDIR}/.. \ + --without-plot \ + --with-png=${STAGING_LIBDIR}/.. \ + --with-gd=${STAGING_LIBDIR}/.. \ + --without-lisp-files \ + --without-tutorial" + +do_install_append() { + install -d ${D}${datadir}/applications/ + install -m 0644 ${WORKDIR}/gnuplot.desktop ${D}/${datadir}/applications/ + install -d ${D}${datadir}/pixmaps/ + install -m 0644 ${WORKDIR}/gnuplot.png ${D}${datadir}/pixmaps/ +} |