[Nix-dev] Re: GConf update problem

Sander van der Burg - EWI S.vanderBurg at tudelft.nl
Thu Feb 24 16:41:27 CET 2011


The best solution is probably to patch the autoconf files. I still remember when I tried to package GNOME, some libraries were not added to the rpath of executables and may still not run. This probably does not occur if the makefiles correctly include all dependencies.

-----Original Message-----
From: nix-dev-bounces at cs.uu.nl on behalf of Sander van der Burg - EWI
Sent: Thu 2/24/2011 4:16 PM
To: Roelof Wobben; nix-dev at cs.uu.nl
Subject: RE: [Nix-dev] Re: GConf update problem
 
This is a typical problem which occurs with broken autoconf files. The configure script does not detect glib properly. In order to deal with this issue you can either patch the configure.ac file to let it properly detect glib (check the autotools manual for more info: http://sourceware.org/autobook/), or implement a workaround, for instance by setting the CFLAGS and LIBS environment variables to extend the search directories of the compiler and linker.

I also stumbled upon these problems once and there is no trivial way to fix it.

-----Original Message-----
From: nix-dev-bounces at cs.uu.nl on behalf of Roelof Wobben
Sent: Thu 2/24/2011 4:14 PM
To: nix-dev at cs.uu.nl
Subject: RE: [Nix-dev] Re: GConf update problem
 

Hello, 

No one who can help me ?

Roelof


From: rwobben at hotmail.com
To: urkud+nix at ya.ru; nix-dev at cs.uu.nl
Subject: RE: [Nix-dev] Re: GConf update problem
Date: Thu, 24 Feb 2011 11:30:19 +0000
CC: 










> To: nix-dev at cs.uu.nl
> From: urkud+nix at ya.ru
> Date: Thu, 24 Feb 2011 14:16:31 +0300
> Subject: [Nix-dev] Re: GConf update problem
> 
> Roelof Wobben wrote:
> 
> > 
> > Hello,
> > 
> > 
> > Im trying to update Gconf to version 2.28-1
> > But the building stops here :
> Post gconf/default.nix here.
> 
> AFAIR, gconf is deprecated. Why do you care about gconf?
> 
> _______________________________________________
> nix-dev mailing list
> nix-dev at cs.uu.nl
> https://mail.cs.uu.nl/mailman/listinfo/nix-dev





I care about because I need it to  build Gnome 2.30.


build script of GConf : 


{ stdenv, fetchurl, pkgconfig, dbus_glib, glib, ORBit2, libxml2
, policykit, intltool, dbus_libs }:

stdenv.mkDerivation {
  name = "GConf-2.28.1";
  
  src = fetchurl {
    url = http://ftp.gnome.org/pub/gnome/sources/GConf/2.28/GConf-2.28.1.tar.bz2;
    md5 = "27663faf0af4f6a6d534de9270f6d24a";
  };

  buildInputs = [ pkgconfig ORBit2 dbus_libs dbus_glib libxml2 policykit intltool ];
  propagatedBuildInputs = [ glib ];
}


Roelof
 		 	   		  

_______________________________________________
nix-dev mailing list
nix-dev at cs.uu.nl
https://mail.cs.uu.nl/mailman/listinfo/nix-dev 		 	   		  


-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.science.uu.nl/pipermail/nix-dev/attachments/20110224/1ceec7ae/attachment.html 


More information about the nix-dev mailing list