2006-01-31 15:22:10 +00:00
|
|
|
{ stdenv, fetchurl, libX11, libXt, libXext, zlib, perl, qt, openssl, pcre
|
|
|
|
, pkgconfig, libjpeg, libpng, libtiff, libxml2, libxslt, libtool, expat
|
2007-09-21 14:07:25 +01:00
|
|
|
, freetype, bzip2, cups
|
2006-01-31 15:22:10 +00:00
|
|
|
}:
|
2005-11-12 14:52:16 +00:00
|
|
|
|
2008-05-20 10:36:55 +01:00
|
|
|
let version = "3.5.9"; in
|
2007-09-21 14:07:25 +01:00
|
|
|
|
2005-11-12 14:52:16 +00:00
|
|
|
stdenv.mkDerivation {
|
2007-09-21 14:07:25 +01:00
|
|
|
name = "kdelibs-${version}";
|
2007-03-26 14:39:50 +01:00
|
|
|
|
2005-11-12 14:52:16 +00:00
|
|
|
src = fetchurl {
|
2007-09-21 14:07:25 +01:00
|
|
|
url = "mirror://kde/stable/${version}/src/kdelibs-${version}.tar.bz2";
|
2008-05-20 10:36:55 +01:00
|
|
|
md5 = "55e5f00874933d1a7ba7c95e369a205e";
|
2005-11-12 14:52:16 +00:00
|
|
|
};
|
|
|
|
|
2007-08-09 17:55:14 +01:00
|
|
|
passthru = {inherit openssl libX11 libjpeg qt;};
|
2007-03-26 14:39:50 +01:00
|
|
|
|
2005-11-12 14:52:16 +00:00
|
|
|
buildInputs = [
|
|
|
|
libX11 libXt libXext zlib perl qt openssl pcre
|
2006-01-31 15:22:10 +00:00
|
|
|
pkgconfig libjpeg libpng libtiff libxml2 libxslt expat
|
2007-09-21 14:07:25 +01:00
|
|
|
libtool freetype bzip2 cups
|
2005-11-12 14:52:16 +00:00
|
|
|
];
|
2006-08-11 23:26:55 +01:00
|
|
|
|
2008-03-26 09:53:04 +00:00
|
|
|
# Prevent configure from looking for pkg-config and freetype-config
|
|
|
|
# in the wrong location (it looks in /usr/bin etc. *before* looking
|
|
|
|
# in $PATH).
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace configure \
|
|
|
|
--replace /usr/bin /no-such-path \
|
|
|
|
--replace /usr/local/bin /no-such-path \
|
|
|
|
--replace /opt/local/bin /no-such-path
|
|
|
|
'';
|
|
|
|
|
2008-05-20 10:36:55 +01:00
|
|
|
configureFlags = ''
|
2006-08-11 23:26:55 +01:00
|
|
|
--without-arts
|
|
|
|
--with-ssl-dir=${openssl}
|
|
|
|
--with-extra-includes=${libjpeg}/include
|
|
|
|
--x-includes=${libX11}/include
|
|
|
|
--x-libraries=${libX11}/lib
|
2008-05-20 10:36:55 +01:00
|
|
|
'';
|
2005-11-12 14:52:16 +00:00
|
|
|
}
|