2014-09-24 23:47:44 +02:00
|
|
|
{ lib, stdenv, fetchurl, pkgconfig, libjpeg, libpng, flex, zlib, perl, libxml2
|
|
|
|
, makeWrapper, libtiff
|
|
|
|
, enableX11 ? false, libX11 }:
|
2009-02-25 23:44:08 +01:00
|
|
|
|
2014-09-24 23:47:44 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2016-01-29 05:02:59 +01:00
|
|
|
name = "netpbm-10.70.00";
|
2009-02-25 23:44:08 +01:00
|
|
|
|
2014-09-24 23:47:44 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gentoo/distfiles/${name}.tar.xz";
|
2016-01-29 05:02:59 +01:00
|
|
|
sha256 = "14vxmzbwsy4rzrqjnzr4cvz1s0amacq69faps3v1j1kr05lcns0j";
|
2009-02-25 23:44:08 +01:00
|
|
|
};
|
|
|
|
|
2013-12-25 11:08:19 +01:00
|
|
|
postPatch = /* CVE-2005-2471, from Arch */ ''
|
|
|
|
substituteInPlace converter/other/pstopnm.c \
|
|
|
|
--replace '"-DSAFER"' '"-DPARANOIDSAFER"'
|
|
|
|
'';
|
|
|
|
|
2014-09-24 23:47:44 +02:00
|
|
|
buildInputs =
|
|
|
|
[ pkgconfig flex zlib perl libpng libjpeg libxml2 makeWrapper libtiff ]
|
|
|
|
++ lib.optional enableX11 libX11;
|
2009-02-25 23:44:08 +01:00
|
|
|
|
2013-07-19 19:42:11 +02:00
|
|
|
configurePhase = ''
|
|
|
|
cp config.mk.in config.mk
|
2014-09-24 23:47:44 +02:00
|
|
|
echo "STATICLIB_TOO = n" >> config.mk
|
2013-07-19 19:42:11 +02:00
|
|
|
substituteInPlace "config.mk" \
|
2016-01-24 08:29:42 +01:00
|
|
|
--replace "TIFFLIB = NONE" "TIFFLIB = ${libtiff.out}/lib/libtiff.so" \
|
2016-04-16 19:39:17 +02:00
|
|
|
--replace "TIFFHDR_DIR =" "TIFFHDR_DIR = ${libtiff.dev}/include"
|
2013-07-19 19:42:11 +02:00
|
|
|
'';
|
2009-02-25 23:44:08 +01:00
|
|
|
|
2010-01-13 22:16:12 +01:00
|
|
|
preBuild = ''
|
2013-07-19 19:42:11 +02:00
|
|
|
export LDFLAGS="-lz"
|
2010-01-13 22:16:12 +01:00
|
|
|
substituteInPlace "pm_config.in.h" \
|
|
|
|
--subst-var-by "rgbPath1" "$out/lib/rgb.txt" \
|
|
|
|
--subst-var-by "rgbPath2" "/var/empty/rgb.txt" \
|
|
|
|
--subst-var-by "rgbPath3" "/var/empty/rgb.txt"
|
2013-07-23 11:12:03 +02:00
|
|
|
touch lib/standardppmdfont.c
|
2010-01-13 22:16:12 +01:00
|
|
|
'';
|
2010-01-13 22:14:10 +01:00
|
|
|
|
2016-02-28 12:59:17 +01:00
|
|
|
enableParallelBuilding = false;
|
2013-07-23 11:12:03 +02:00
|
|
|
|
2009-02-25 23:44:08 +01:00
|
|
|
installPhase = ''
|
2014-09-24 23:47:44 +02:00
|
|
|
make package pkgdir=$out
|
|
|
|
|
|
|
|
rm -rf $out/link $out/*_template $out/{pkginfo,README,VERSION} $out/man/web
|
|
|
|
|
|
|
|
mkdir -p $out/share/netpbm
|
|
|
|
mv $out/misc $out/share/netpbm/
|
2010-01-13 22:16:12 +01:00
|
|
|
|
|
|
|
# wrap any scripts that expect other programs in the package to be in their PATH
|
|
|
|
for prog in ppmquant; do
|
|
|
|
wrapProgram "$out/bin/$prog" --prefix PATH : "$out/bin"
|
|
|
|
done
|
2009-02-25 23:44:08 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://netpbm.sourceforge.net/;
|
|
|
|
description = "Toolkit for manipulation of graphic images";
|
|
|
|
license = "GPL,free";
|
2013-07-19 20:48:26 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-02-25 23:44:08 +01:00
|
|
|
};
|
|
|
|
}
|