* Reduced the size of glibc from 130 to 50 MB.

* Adapted some more packages to use stdenv, "fixed" ld.so problems.
* Added a package for libxslt.

svn path=/nixpkgs/trunk/; revision=204
This commit is contained in:
Eelco Dolstra
2003-07-25 14:59:22 +00:00
parent 1dda526c66
commit 7ec0df788f
16 changed files with 70 additions and 27 deletions

View File

@@ -1,10 +1,9 @@
#! /bin/sh
export PATH=$libxml/bin:/bin:/usr/bin:/usr/local/bin
envpkgs="$ssl $db4 $httpd $swig"
. $setenv
. $stdenv/setup || exit 1
export LDFLAGS=-s
envpkgs="$ssl $db4 $httpd $swig $libxml"
. $setenv
if test $localServer; then
extraflags="--with-berkeley-db=$db4 $extraflags"
@@ -27,7 +26,7 @@ echo "extra flags: $extraflags"
tar xvfz $src || exit 1
cd subversion-* || exit 1
./configure --prefix=$out $extraflags || exit 1
LDFLAGS=-Wl,-S ./configure --prefix=$out $extraflags || exit 1
make $extramakeflags || exit 1
make install $extramakeflags || exit 1

View File

@@ -1,15 +1,17 @@
Package(
[ ("name", "subversion-0.25.0")
[ ("name", "subversion-0.26.0")
, ("build", Relative("subversion/subversion-build.sh"))
, ("setenv", Relative("helpers/set-env.sh"))
, ("src", App(IncludeFix("fetchurl/fetchurl.fix"),
[ ("url", "http://subversion.tigris.org/files/documents/15/5110/subversion-0.25.tar.gz")
, ("md5", "a018220d5c790161bc712ccb7d0f1b38")
[ ("url", "http://subversion.tigris.org/files/documents/15/5322/subversion-0.26.0.tar.gz")
, ("md5", "700caa3f59b585d173812c4a078feeba")
]))
, ("stdenv", IncludeFix("stdenv/stdenv.fix"))
, ("httpsClient", "1")
, ("ssl", IncludeFix("openssl/openssl.fix"))
, ("libxml", IncludeFix("libxml2/libxml2.fix"))
]
)