Ploticus 2.40.
svn path=/nixpkgs/trunk/; revision=11293
This commit is contained in:
parent
62bcc0f821
commit
c7090b1f60
@ -1,15 +1,30 @@
|
|||||||
{stdenv, fetchurl, zlib, libX11, libpng}:
|
{stdenv, fetchurl, zlib, libX11, libpng}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "ploticus-2.33";
|
name = "ploticus-2.40";
|
||||||
|
|
||||||
builder = ./builder.sh;
|
builder = ./builder.sh;
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://sourceforge/ploticus/pl233src.tar.gz;
|
url = mirror://sourceforge/ploticus/pl240src.tar.gz;
|
||||||
md5 = "1e242200e7e52f7a24041c95f58f2fc1";
|
sha256 = "1gwppsmfxajrpidjrplkhvq2yy35r9hmigpwjmjqv4r7dj7cnrw8";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [zlib libX11 libpng];
|
buildInputs = [zlib libX11 libpng];
|
||||||
|
|
||||||
patches = [./ploticus-install.patch];
|
patches = [./ploticus-install.patch];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = ''Ploticus, a non-interactive software package for
|
||||||
|
producing plots and charts'';
|
||||||
|
|
||||||
|
longDescription = ''Ploticus is a free, GPL'd, non-interactive
|
||||||
|
software package for producing plots, charts, and graphics from
|
||||||
|
data. Ploticus is good for automated or just-in-time graph
|
||||||
|
generation, handles date and time data nicely, and has basic
|
||||||
|
statistical capabilities. It allows significant user control
|
||||||
|
over colors, styles, options and details.'';
|
||||||
|
|
||||||
|
license = "GPL";
|
||||||
|
homepage = http://ploticus.sourceforge.net/;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,12 @@
|
|||||||
diff -ruN pl233src/src/Makefile pl233src.new/src/Makefile
|
--- pl240src/src/Makefile 2008-01-15 21:05:14.000000000 +0100
|
||||||
--- pl233src/src/Makefile 2006-06-02 17:31:46.000000000 +0200
|
+++ pl240src/src/Makefile 2008-03-26 23:51:53.000000000 +0100
|
||||||
+++ pl233src.new/src/Makefile 2006-08-23 18:05:50.000000000 +0200
|
@@ -131,7 +131,7 @@ ZFLAG = -DWZ
|
||||||
@@ -190,7 +190,8 @@
|
|
||||||
|
|
||||||
|
|
||||||
#### If you plan to do a "make install", where do you want the executable(s) to be moved to?
|
#### If you do a "make install", where do you want the executable(s) to be moved to?
|
||||||
-BIN = /usr/local/bin
|
-INSTALLBIN = /usr/local/bin
|
||||||
+#BIN = /usr/local/bin
|
+INSTALLBIN = $(out)/bin
|
||||||
+BIN = $(out)/bin
|
|
||||||
|
|
||||||
|
|
||||||
#### To set a hard-coded directory for prefabs files, uncomment & edit the following..
|
#### For LOCALE support (non-roman alphabets & collation), uncomment the following..
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user