mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
Drop kde3.kdebase
Hydra fails to build it for a while, and nobody noticed. svn path=/nixpkgs/trunk/; revision=29714
This commit is contained in:
parent
c67c7d49b0
commit
7e3c1b357b
@ -1,57 +0,0 @@
|
||||
{ stdenv, fetchurl, pkgconfig, x11, xlibs, zlib, libpng, libjpeg, perl
|
||||
, qt, kdelibs, openssl, bzip2, fontconfig, pam, hal, dbus, glib
|
||||
}:
|
||||
|
||||
# Note: the glib dependency is needed for nspluginviewer.
|
||||
|
||||
let version = "3.5.10"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "kdebase-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kde/stable/${version}/src/kdebase-${version}.tar.bz2";
|
||||
sha256 = "0qbbw78b725kf35p5jx11zq0246zm15pyyhmlpkz4cn5527rvakp";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig x11 zlib libpng libjpeg perl qt kdelibs openssl bzip2
|
||||
fontconfig pam hal dbus glib
|
||||
xlibs.libXrandr xlibs.libXinerama xlibs.libXau xlibs.libXdmcp
|
||||
xlibs.libXcursor xlibs.libfontenc xlibs.imake xlibs.bdftopcf
|
||||
xlibs.libxkbfile xlibs.xf86miscproto xlibs.libXxf86misc
|
||||
xlibs.scrnsaverproto xlibs.libXScrnSaver
|
||||
xlibs.libXcomposite xlibs.libXfixes
|
||||
];
|
||||
|
||||
configureFlags = ''
|
||||
--without-arts
|
||||
--with-ssl-dir=${openssl}
|
||||
--with-extra-includes=${libjpeg}/include
|
||||
'';
|
||||
|
||||
# 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
|
||||
'';
|
||||
|
||||
# Quick hack to work around a faulty dependency in
|
||||
# konqueror/keditbookmarks/Makefile.am (${includedir} should be
|
||||
# ${kdelibs} or so).
|
||||
preBuild = ''
|
||||
ensureDir $out/include
|
||||
ln -s ${kdelibs}/include/kbookmarknotifier.h $out/include/
|
||||
'';
|
||||
|
||||
postInstall = "rm $out/include/kbookmarknotifier.h";
|
||||
|
||||
# Work around some inexplicable build failure starting in kdebase 3.5.9.
|
||||
LDFLAGS = "-L${kdelibs}/lib";
|
||||
|
||||
meta.platforms = stdenv.lib.platforms.linux;
|
||||
}
|
@ -7867,12 +7867,6 @@ let
|
||||
qt = qt3;
|
||||
};
|
||||
|
||||
kdebase = callPackage ../desktops/kde-3/kdebase {
|
||||
stdenv = overrideGCC stdenv gcc43;
|
||||
inherit (kde3) kdelibs;
|
||||
qt = qt3;
|
||||
};
|
||||
|
||||
arts = callPackage ../development/libraries/arts {
|
||||
qt = qt3;
|
||||
inherit (gnome) glib;
|
||||
|
Loading…
Reference in New Issue
Block a user