Added pygame and some of its dependencies. Also added Python Imaging library.

svn path=/nixpkgs/trunk/; revision=9082
This commit is contained in:
Michael Raskin
2007-08-09 17:33:18 +00:00
parent 254b6fe6d3
commit 422433d1b9
5 changed files with 121 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
args:
args.stdenv.mkDerivation {
name = "python-imaging-1.1.6";
src = args.fetchurl {
url = http://effbot.org/downloads/Imaging-1.1.6.tar.gz;
sha256 = "141zidl3s9v4vfi3nsbg42iq1lc2a932gprqr1kij5hrnn53bmvx";
};
buildInputs =(with args; [python zlib libtiff libjpeg freetype]);
configurePhase = (with args;"
sed -e 's@FREETYPE_ROOT = None@FREETYPE_ROOT = libinclude(\"${freetype}\")@' -i setup.py
sed -e 's@JPEG_ROOT = None@JPEG_ROOT = libinclude(\"${libjpeg}\")@' -i setup.py
sed -e 's@TIFF_ROOT = None@TIFF_ROOT = libinclude(\"${libtiff}\")@' -i setup.py
sed -e 's@ZLIB_ROOT = None@ZLIB_ROOT = libinclude(\"${zlib}\")@' -i setup.py
");
buildPhase = "true";
installPhase = "yes Y | python setup.py install --prefix=\${out}";
meta = {
description = "
Python Imaging library.
";
};
}

View File

@@ -0,0 +1,30 @@
args:
args.stdenv.mkDerivation {
name = "pygame-1.7";
src = args.fetchurl {
url = http://www.pygame.org/ftp/pygame-1.7.1release.tar.gz ;
sha256 = "0hl0rmgjcqj217fibwyilz7w9jpg0kh7hsa7vyzd4cgqyliskpqi";
};
buildInputs =(with args; [python pkgconfig SDL SDL_image SDL_ttf]);
configurePhase = (with args;
"
export LOCALBASE=///
sed -e \"/origincdirs =/a'${SDL_image}/include/SDL','${SDL_image}/include',\" -i config_unix.py
sed -e \"/origlibdirs =/aoriglibdirs += '${SDL_image}/lib',\" -i config_unix.py
sed -e \"/origincdirs =/a'${SDL_ttf}/include/SDL','${SDL_ttf}/include',\" -i config_unix.py
sed -e \"/origlibdirs =/aoriglibdirs += '${SDL_ttf}/lib',\" -i config_unix.py
yes Y | python config.py ");
buildPhase = "yes Y | python setup.py build";
installPhase = "yes Y | python setup.py install --prefix=\${out} ";
meta = {
description = "
Python library for games.
";
};
}