* strigi: build without log4cxx (I don't think we need it), as

log4cxx is broken on GCC 4.3.

svn path=/nixpkgs/branches/stdenv-updates/; revision=14821
This commit is contained in:
Eelco Dolstra 2009-04-01 09:47:19 +00:00
parent 3693c7a03d
commit 151bd1c17f
2 changed files with 26 additions and 8 deletions

View File

@ -1,13 +1,23 @@
{stdenv, fetchurl, cmake, perl,
bzip2, qt4, libxml2, exiv2, fam, log4cxx, cluceneCore}:
{ stdenv, fetchurl, cmake, perl, bzip2, qt4, libxml2, exiv2, fam
, log4cxx, cluceneCore
}:
stdenv.mkDerivation {
name = "strigi-0.6.4";
src = fetchurl {
url = mirror://sourceforge/strigi/strigi-0.6.4.tar.bz2;
md5 = "324fd9606ac77765501717ff92c04f9a";
};
CLUCENE_HOME=cluceneCore;
buildInputs = [ cmake perl
bzip2 stdenv.gcc.libc qt4 libxml2 exiv2 fam log4cxx cluceneCore ];
CLUCENE_HOME = cluceneCore;
buildInputs = [
cmake perl bzip2 stdenv.gcc.libc qt4 libxml2 exiv2 fam /* log4cxx */ cluceneCore
];
meta = {
homepage = http://strigi.sourceforge.net/;
description = "A very fast and efficient crawler to index data on your harddrive";
};
}

View File

@ -1,11 +1,19 @@
{stdenv, fetchurl, autoconf, automake, libtool, libxml2, cppunit, boost,
apr, aprutil, db45, expat}:
{ stdenv, fetchurl, autoconf, automake, libtool, libxml2, cppunit, boost
, apr, aprutil, db45, expat
}:
stdenv.mkDerivation {
name = "log4cxx-0.10.0";
src = fetchurl {
url = http://apache.mirrors.hoobly.com/logging/log4cxx/0.10.0/apache-log4cxx-0.10.0.tar.gz;
sha256 = "130cjafck1jlqv92mxbn47yhxd2ccwwnprk605c6lmm941i3kq0d";
};
buildInputs = [ autoconf automake libtool libxml2 cppunit boost apr aprutil db45 expat];
buildInputs = [autoconf automake libtool libxml2 cppunit boost apr aprutil db45 expat];
meta = {
homepage = http://logging.apache.org/log4cxx/index.html;
description = "A logging framework for C++ patterned after Apache log4j";
};
}