add enchant support to kdelibs

svn path=/nixpkgs/trunk/; revision=21610
This commit is contained in:
Yury G. Kudryashov 2010-05-05 18:17:50 +00:00
parent 320ce20929
commit 5008f2dba6
2 changed files with 6 additions and 7 deletions

View File

@ -61,7 +61,7 @@ pkgs.recurseIntoAttrs (rec {
kdelibs = import ./libs {
inherit (pkgs) stdenv fetchurl lib cmake qt4 perl bzip2 pcre fam libxml2 libxslt;
inherit (pkgs) xz flex bison giflib jasper openexr aspell avahi shared_mime_info
kerberos acl attr shared_desktop_ontologies;
kerberos acl attr shared_desktop_ontologies enchant;
inherit (pkgs.xlibs) libXScrnSaver;
inherit automoc4 phonon strigi soprano qca2 attica polkit_qt;
};

View File

@ -1,7 +1,7 @@
{ stdenv, fetchurl, cmake, lib, perl
, qt4, bzip2, pcre, fam, libxml2, libxslt, shared_mime_info, giflib, jasper
, xz, flex, bison, openexr, aspell, avahi, kerberos, acl, attr, shared_desktop_ontologies, libXScrnSaver
, automoc4, phonon, strigi, soprano, qca2, attica, polkit_qt
, automoc4, phonon, strigi, soprano, qca2, attica, polkit_qt, enchant
}:
stdenv.mkDerivation {
@ -15,14 +15,13 @@ stdenv.mkDerivation {
buildInputs = [
cmake perl qt4 stdenv.gcc.libc xz flex bison bzip2 pcre fam libxml2 libxslt
shared_mime_info giflib jasper /*openexr*/ aspell avahi kerberos acl attr
libXScrnSaver
libXScrnSaver enchant
automoc4 phonon strigi soprano qca2 attica polkit_qt
];
propagatedBuildInputs = [ shared_desktop_ontologies ];
# I don't know why cmake does not find the acl files (but finds attr files)
# cmake fails to find acl.h because of C++-style comment
cmakeFlags = [ "-DHAVE_ACL_LIBACL_H=ON" "-DHAVE_SYS_ACL_H=ON" ];
meta = {