* More freedesktop.org X11 modules.

* Cleaned up some packages.

svn path=/nixpkgs/trunk/; revision=883
This commit is contained in:
Eelco Dolstra
2004-03-30 17:28:41 +00:00
parent 5a4de2c5de
commit 00004fa6da
25 changed files with 111 additions and 179 deletions

View File

@@ -1,16 +0,0 @@
buildinputs="$freetype $expat $x11 $ed"
. $stdenv/setup
# Fontconfig generates a bad `fonts.conf' file is the timezone is not known
# (because it calls `date').
export TZ=UTC
tar xvfz $src
cd fontconfig-*
./configure --prefix=$out --with-confdir=$out/etc/fonts \
--with-expat-includes=$expat/include --with-expat-lib=$expat/lib
make
make install
mkdir $out/nix-support
echo "$freetype" > $out/nix-support/propagated-build-inputs

View File

@@ -1,19 +0,0 @@
{stdenv, fetchurl, x11, freetype, expat, ed}:
assert x11 != null && x11.buildClientLibs;
assert freetype != null;
assert expat != null;
assert ed != null;
stdenv.mkDerivation {
name = "fontconfig-2.2.90";
builder = ./builder.sh;
src = fetchurl {
url = http://pdx.freedesktop.org/software/fontconfig/releases/fontconfig-2.2.90.tar.gz;
md5 = "5cb87476743be1bbf1674ed72a76ae6a";
};
x11 = x11;
freetype = freetype;
expat = expat;
ed = ed;
}

View File

@@ -0,0 +1,5 @@
. $stdenv/setup
configureFlags="--with-confdir=$out/etc/fonts"
genericBuild

View File

@@ -0,0 +1,14 @@
{stdenv, fetchurl, freetype, expat}:
assert freetype != null && expat != null;
stdenv.mkDerivation {
name = "fontconfig-2.2.2";
builder = ./builder.sh;
src = fetchurl {
url = http://freedesktop.org/~fontconfig/release/fontconfig-2.2.2.tar.gz;
md5 = "af6e9a8addfa89aa68d703d5eb004185";
};
buildInputs = [freetype];
propagatedBuildInputs = [expat]; # !!! shouldn't be necessary, but otherwise pango breaks
}

View File

@@ -0,0 +1,10 @@
{stdenv, fetchurl, pkgconfig, xproto, xextensions, libX11}:
stdenv.mkDerivation {
name = "libXext-6.4.2";
src = fetchurl {
url = http://freedesktop.org/~xlibs/release/xlibs-1.0/libXext-6.4.2.tar.bz2;
md5 = "e7c5f5ac3db6d171f8938339f7617281";
};
buildInputs = [pkgconfig xproto xextensions libX11];
}

View File

@@ -0,0 +1,13 @@
{stdenv, fetchurl, pkgconfig, libX11, libXrender, freetype, fontconfig}:
# !!! assert freetype `elem` fontconfig.buildInputs or some such
# assert freetype == fontconfig.freetype;
stdenv.mkDerivation {
name = "libXft-2.1.6";
src = fetchurl {
url = http://freedesktop.org/~xlibs/release/libXft-2.1.6.tar.bz2;
md5 = "ba10c9c3f4758f304f04f8d48e2f81a4";
};
buildInputs = [pkgconfig libX11 libXrender freetype fontconfig];
}

View File

@@ -0,0 +1,11 @@
{stdenv, fetchurl, pkgconfig, libX11, renderext}:
stdenv.mkDerivation {
name = "libXrender-0.8.4";
src = fetchurl {
url = http://freedesktop.org/~xlibs/release/xlibs-1.0/libXrender-0.8.4.tar.bz2;
md5 = "c745339dbe5f05cff8950b71a739e34c";
};
buildInputs = [pkgconfig libX11 renderext];
propagatedBuildInputs = [];
}

View File

@@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "renderext-0.8";
src = fetchurl {
url = http://freedesktop.org/~xlibs/release/xlibs-1.0/renderext-0.8.tar.bz2;
md5 = "b00a97b00bf93ab2ac6442ea13ea9c0b";
};
}

View File

@@ -1,9 +1,9 @@
{stdenv, libX11, libXt}:
{stdenv, libX11, libXt, freetype, fontconfig, libXft, libXext}:
stdenv.mkDerivation {
name = "xlib-1.0";
builder = ./builder.sh;
propagatedBuildInputs = [libX11 libXt];
propagatedBuildInputs = [libX11 libXt freetype fontconfig libXft libXext];
} // {
# For compatability with XFree86.
buildClientLibs = true;

View File

@@ -1,8 +0,0 @@
. $stdenv/setup || exit 1
tar xvfj $src || exit 1
cd freetype-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1
strip -S $out/lib/*.a || exit 1

View File

@@ -1,8 +1,9 @@
{stdenv, fetchurl}: stdenv.mkDerivation {
name = "freetype-2.1.5";
builder = ./builder.sh;
src = fetchurl {
url = http://heanet.dl.sourceforge.net/sourceforge/freetype/freetype-2.1.5.tar.bz2;
md5 = "54537b518b84d04190a1eccd393a29df";
# url = http://cesnet.dl.sourceforge.net/sourceforge/freetype/freetype-2.1.7.tar.bz2;
# md5 = "d71723948d7c0e44c401b5733c50857e";
};
}

View File

@@ -1,11 +0,0 @@
buildinputs="$pkgconfig $perl $glib"
. $stdenv/setup
tar xvfj $src
cd atk-*
./configure --prefix=$out
make
make install
mkdir $out/nix-support
echo "$glib" > $out/nix-support/propagated-build-inputs

View File

@@ -4,12 +4,10 @@ assert pkgconfig != null && glib != null && perl != null;
stdenv.mkDerivation {
name = "atk-1.2.4";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.gtk.org/pub/gtk/v2.2/atk-1.2.4.tar.bz2;
md5 = "2d6d50df31abe0e8892b5d3e7676a02d";
};
pkgconfig = pkgconfig;
glib = glib;
perl = perl;
buildInputs = [pkgconfig perl];
propagatedBuildInputs = [glib];
}

View File

@@ -1,8 +0,0 @@
buildinputs="$pkgconfig $gettext $perl"
. $stdenv/setup || exit 1
tar xvfj $src || exit 1
cd glib-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1

View File

@@ -4,12 +4,9 @@ assert pkgconfig != null && gettext != null && perl != null;
stdenv.mkDerivation {
name = "glib-2.2.3";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.gtk.org/pub/gtk/v2.2/glib-2.2.3.tar.bz2;
md5 = "aa214a10d873b68ddd67cd9de2ccae55";
};
pkgconfig = pkgconfig;
gettext = gettext;
perl = perl;
buildInputs = [pkgconfig gettext perl];
}

View File

@@ -1,21 +0,0 @@
buildinputs="$pkgconfig $x11 $glib $atk $pango $perl $libtiff $libjpeg $libpng"
. $stdenv/setup
IFS=:
for i in $PATH; do echo $i; done
#exit 1
# A utility function for fixing up libtool scripts that scan in
# default directories like /usr. This is a bit of a hack. A better
# solution would be to fix libtool, but since it is included in so
# many packages that is not feasible right now.
tar xvfj $src
cd gtk+-*
fixLibtool ltmain.sh
./configure --prefix=$out
make
make install
mkdir $out/nix-support
echo "$x11 $glib $atk $pango" > $out/nix-support/propagated-build-inputs

View File

@@ -5,24 +5,16 @@ assert pkgconfig != null && x11 != null && glib != null && atk != null
&& pango != null && perl != null && perl != null && libtiff != null
&& libjpeg != null && libpng != null;
assert x11.buildClientLibs;
assert glib == atk.glib;
assert glib == pango.glib;
assert x11 == pango.x11;
#assert glib == atk.glib;
#assert glib == pango.glib;
#assert x11 == pango.x11;
stdenv.mkDerivation {
name = "gtk+-2.2.4";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.gtk.org/pub/gtk/v2.2/gtk+-2.2.4.tar.bz2;
md5 = "605332199533e73bc6eec481fb4f1671";
};
pkgconfig = pkgconfig;
x11 = x11;
glib = glib;
atk = atk;
pango = pango;
perl = perl;
libtiff = libtiff;
libjpeg = libjpeg;
libpng = libpng;
buildInputs = [pkgconfig perl libtiff libjpeg libpng];
propagatedBuildInputs = [x11 glib atk pango];
}

View File

@@ -1,11 +0,0 @@
buildinputs="$pkgconfig $x11 $glib $xft"
. $stdenv/setup
tar xvfj $src
cd pango-*
./configure --prefix=$out
make
make install
mkdir $out/nix-support
echo "$xft $glib" > $out/nix-support/propagated-build-inputs

View File

@@ -1,18 +1,14 @@
{stdenv, fetchurl, pkgconfig, x11, glib, xft}:
{stdenv, fetchurl, pkgconfig, x11, glib}:
assert pkgconfig != null && x11 != null && glib != null && xft != null;
assert pkgconfig != null && x11 != null && glib != null;
assert x11.buildClientLibs;
assert xft.x11 == x11;
stdenv.mkDerivation {
name = "pango-1.2.5";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.gtk.org/pub/gtk/v2.2/pango-1.2.5.tar.bz2;
md5 = "df00fe3e71cd297010f24f439b6c8ee6";
};
pkgconfig = pkgconfig;
x11 = x11;
glib = glib;
xft = xft;
buildInputs = [pkgconfig];
propagatedBuildInputs = [x11 glib];
}

View File

@@ -1,13 +0,0 @@
set -x
buildinputs="$pkgconfig $fontconfig $x11"
. $stdenv/setup
tar xvfz $src
cd xft-*
./configure --prefix=$out --x-includes=$x11/include --x-libraries=$x11/lib
make
make install
mkdir $out/nix-support
echo "$fontconfig" > $out/nix-support/propagated-build-inputs

View File

@@ -1,16 +0,0 @@
{stdenv, fetchurl, pkgconfig, x11, fontconfig}:
assert pkgconfig != null && x11 != null && fontconfig != null;
assert fontconfig.x11 == x11;
stdenv.mkDerivation {
name = "xft-2.1.2";
builder = ./builder.sh;
src = fetchurl {
url = http://pdx.freedesktop.org/software/fontconfig/releases/xft-2.1.2.tar.gz;
md5 = "defb7e801d4938b8b15a426ae57e2f3f";
};
pkgconfig = pkgconfig;
x11 = x11;
fontconfig = fontconfig;
}