uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
80
pkgs/tools/graphics/ploticus/default.nix
Normal file
80
pkgs/tools/graphics/ploticus/default.nix
Normal file
|
|
@ -0,0 +1,80 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, zlib
|
||||
, libX11
|
||||
, libpng
|
||||
, libjpeg
|
||||
, gd
|
||||
, freetype
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ploticus";
|
||||
version = "2.42";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/ploticus/ploticus/${version}/ploticus${lib.replaceStrings [ "." ] [ "" ] version}_src.tar.gz";
|
||||
sha256 = "PynkufQFIDqT7+yQDlgW2eG0OBghiB4kHAjKt91m4LA=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Replace hardcoded FHS path with $out.
|
||||
./ploticus-install.patch
|
||||
|
||||
# Set the location of the PREFABS directory.
|
||||
./set-prefabs-dir.patch
|
||||
|
||||
# Use gd from Nixpkgs instead of the vendored one.
|
||||
# This is required for non-ASCII fonts to work:
|
||||
# http://ploticus.sourceforge.net/doc/fonts.html
|
||||
./use-gd-package.patch
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
zlib
|
||||
libX11
|
||||
libpng
|
||||
gd
|
||||
freetype
|
||||
libjpeg
|
||||
];
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
preBuild = ''
|
||||
cd src
|
||||
'';
|
||||
makeFlags = [ "CC=cc" ];
|
||||
|
||||
preInstall = ''
|
||||
mkdir -p "$out/bin"
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
cd ..
|
||||
|
||||
# Install the “prefabs”.
|
||||
mkdir -p "$out/share/ploticus/prefabs"
|
||||
cp -rv prefabs/* "$out/share/ploticus/prefabs"
|
||||
|
||||
# Add aliases for backwards compatibility.
|
||||
ln -s "pl" "$out/bin/ploticus"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "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 = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ pSub ];
|
||||
homepage = "http://ploticus.sourceforge.net/";
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
};
|
||||
}
|
||||
12
pkgs/tools/graphics/ploticus/ploticus-install.patch
Normal file
12
pkgs/tools/graphics/ploticus/ploticus-install.patch
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
--- pl240src/src/Makefile 2008-01-15 21:05:14.000000000 +0100
|
||||
+++ pl240src/src/Makefile 2008-03-26 23:51:53.000000000 +0100
|
||||
@@ -131,7 +131,7 @@ ZFLAG = -DWZ
|
||||
|
||||
|
||||
#### If you do a "make install", where do you want the executable(s) to be moved to?
|
||||
-INSTALLBIN = /usr/local/bin
|
||||
+INSTALLBIN = $(out)/bin
|
||||
|
||||
|
||||
#### For LOCALE support (non-roman alphabets & collation), uncomment the following..
|
||||
|
||||
11
pkgs/tools/graphics/ploticus/set-prefabs-dir.patch
Normal file
11
pkgs/tools/graphics/ploticus/set-prefabs-dir.patch
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- a/src/pl.h
|
||||
+++ b/src/pl.h
|
||||
@@ -8,7 +8,7 @@
|
||||
#include <stdlib.h>
|
||||
#include "plg.h"
|
||||
|
||||
-#define PREFABS_DIR "" /* INSTALLERS can set this to a valid pathname, so that users don't need to set PLOTICUS_PREFABS env var */
|
||||
+#define PREFABS_DIR "@out@/share/ploticus/prefabs" /* INSTALLERS can set this to a valid pathname, so that users don't need to set PLOTICUS_PREFABS env var */
|
||||
|
||||
#define PLVERSION "2.42-May2013" /* see also the Copyright page, and page headers and footers */
|
||||
|
||||
34
pkgs/tools/graphics/ploticus/use-gd-package.patch
Normal file
34
pkgs/tools/graphics/ploticus/use-gd-package.patch
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
--- a/src/Makefile
|
||||
+++ b/src/Makefile
|
||||
@@ -91,10 +91,10 @@
|
||||
|
||||
|
||||
########### Option 1: use bundled GD16 (PNG only). Requires libpng and zlib.
|
||||
-exetarget: plpng
|
||||
-GD16LIBS = -lpng -lz
|
||||
-GD16H = -I/usr/local/include
|
||||
-ZFLAG = -DWZ
|
||||
+# exetarget: plpng
|
||||
+# GD16LIBS = -lpng -lz
|
||||
+# GD16H = -I/usr/local/include
|
||||
+# ZFLAG = -DWZ
|
||||
### These should remain commented unless your libs are not in usual places, then alter to suit...
|
||||
### GD16LIBS = /home/scg/lib/libpng.a /home/scg/lib/libz.a
|
||||
### GD16H = -I/home/scg/lib
|
||||
@@ -111,11 +111,11 @@
|
||||
|
||||
########### Option 4: use your own GD resource with FreeType2 (ttf) fonts enabled.
|
||||
########### Requires GD 1.84+, libpng, zlib, libjpeg and libfreetype
|
||||
-# exetarget: plgd18
|
||||
-# GD18LIBS = -lgd -lpng -lz -ljpeg -lfreetype
|
||||
-# GD18H =
|
||||
-# GDFREETYPE = -DGDFREETYPE
|
||||
-# ZFLAG = -DWZ
|
||||
+exetarget: plgd18
|
||||
+GD18LIBS = -lgd -lpng -lz -ljpeg -lfreetype
|
||||
+GD18H =
|
||||
+GDFREETYPE = -DGDFREETYPE
|
||||
+ZFLAG = -DWZ
|
||||
|
||||
########### Option 5: don't use GD at all.
|
||||
# exetarget: plnogd
|
||||
Loading…
Add table
Add a link
Reference in a new issue