Switch to GNU Autoconf 2.62.
svn path=/nixpkgs/trunk/; revision=12230
This commit is contained in:
parent
21e500ac88
commit
117865a28f
@ -1,31 +0,0 @@
|
||||
{stdenv, fetchurl, m4, perl, lzma}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "autoconf-2.62";
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/autoconf/${name}.tar.lzma";
|
||||
sha256 = "0wc70i36cjw5kszvp50d02w8fzh2yxnsa9la6chrf7csb0dnn4jn";
|
||||
};
|
||||
|
||||
buildInputs = [m4 perl lzma];
|
||||
unpackCmd="lzma -d < $src | tar -x ";
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
homepage = http://www.gnu.org/software/autoconf/;
|
||||
description = "GNU Autoconf, a part of the GNU Build System";
|
||||
|
||||
longDescription = ''
|
||||
GNU Autoconf is an extensible package of M4 macros that produce
|
||||
shell scripts to automatically configure software source code
|
||||
packages. These scripts can adapt the packages to many kinds of
|
||||
UNIX-like systems without manual user intervention. Autoconf
|
||||
creates a configuration script for a package from a template
|
||||
file that lists the operating system features that the package
|
||||
can use, in the form of M4 macro calls.
|
||||
'';
|
||||
|
||||
license = "GPLv2+";
|
||||
};
|
||||
}
|
@ -1,10 +1,31 @@
|
||||
{stdenv, fetchurl, m4, perl}:
|
||||
{stdenv, fetchurl, m4, perl, lzma}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "autoconf-2.61";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "autoconf-2.62";
|
||||
src = fetchurl {
|
||||
url = http://ftp.gnu.org/gnu/autoconf/autoconf-2.61.tar.bz2;
|
||||
md5 = "36d3fe706ad0950f1be10c46a429efe0";
|
||||
url = "mirror://gnu/autoconf/${name}.tar.lzma";
|
||||
sha256 = "0wc70i36cjw5kszvp50d02w8fzh2yxnsa9la6chrf7csb0dnn4jn";
|
||||
};
|
||||
|
||||
buildInputs = [m4 perl lzma];
|
||||
unpackCmd="lzma -d < $src | tar -x ";
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
homepage = http://www.gnu.org/software/autoconf/;
|
||||
description = "GNU Autoconf, a part of the GNU Build System";
|
||||
|
||||
longDescription = ''
|
||||
GNU Autoconf is an extensible package of M4 macros that produce
|
||||
shell scripts to automatically configure software source code
|
||||
packages. These scripts can adapt the packages to many kinds of
|
||||
UNIX-like systems without manual user intervention. Autoconf
|
||||
creates a configuration script for a package from a template
|
||||
file that lists the operating system features that the package
|
||||
can use, in the form of M4 macro calls.
|
||||
'';
|
||||
|
||||
license = "GPLv2+";
|
||||
};
|
||||
buildInputs = [m4 perl];
|
||||
}
|
||||
|
@ -1979,14 +1979,7 @@ let pkgs = rec {
|
||||
name = "ant-" + j2sdk14x.name;
|
||||
};
|
||||
|
||||
autoconf = autoconf261;
|
||||
autoconfLatest = autoconf262;
|
||||
|
||||
autoconf261 = import ../development/tools/misc/autoconf {
|
||||
inherit fetchurl stdenv perl m4;
|
||||
};
|
||||
|
||||
autoconf262 = import ../development/tools/misc/autoconf/2.62.nix {
|
||||
autoconf = import ../development/tools/misc/autoconf {
|
||||
inherit fetchurl stdenv perl m4 lzma;
|
||||
};
|
||||
|
||||
@ -3391,8 +3384,7 @@ let pkgs = rec {
|
||||
inherit freetype fontconfig gettext gperf curl
|
||||
libjpeg libtiff libpng libxml2 libxslt sqlite
|
||||
icu cairo perl intltool automake libtool
|
||||
pkgconfig;
|
||||
autoconf = autoconfLatest;
|
||||
pkgconfig autoconf;
|
||||
flex = flex2535;
|
||||
bison = bison23;
|
||||
} null;
|
||||
@ -5599,12 +5591,11 @@ let pkgs = rec {
|
||||
carrier = builderDefsPackage (selectVersion ../applications/networking/instant-messengers/carrier "2.4.2") {
|
||||
inherit fetchurl stdenv pkgconfig perl perlXMLParser libxml2 openssl nss
|
||||
gtkspell aspell gettext ncurses avahi dbus dbus_glib python
|
||||
libtool automake;
|
||||
libtool automake autoconf;
|
||||
GStreamer = gst_all.gstreamer;
|
||||
inherit (gtkLibs) gtk glib;
|
||||
inherit (gnome) startupnotification GConf ;
|
||||
inherit (xlibs) libXScrnSaver scrnsaverproto libX11 xproto kbproto;
|
||||
autoconf = autoconfLatest;
|
||||
} null;
|
||||
funpidgin = carrier;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user