* Converted some more old descriptors.
svn path=/nixpkgs/trunk/; revision=209
This commit is contained in:
Executable
+15
@@ -0,0 +1,15 @@
|
||||
#! /bin/sh
|
||||
|
||||
. $stdenv/setup || exit 1
|
||||
|
||||
envpkgs="$ssl $db4 $expat"
|
||||
. $setenv
|
||||
|
||||
tar xvfz $src || exit 1
|
||||
cd httpd-* || exit 1
|
||||
LDFLAGS=-Wl,-S ./configure --prefix=$out --enable-ssl --with-ssl=$ssl --with-berkeley-db=$db4 \
|
||||
--with-expat=$expat --enable-mods-shared=all --without-gdbm || exit 1
|
||||
make || exit 1
|
||||
make install || exit 1
|
||||
strip -S $out/lib/*.a || exit 1
|
||||
rm -rf $out/manual || exit 1
|
||||
@@ -0,0 +1,17 @@
|
||||
Package(
|
||||
[ ("name", "httpd-2.0.47")
|
||||
|
||||
, ("build", Relative("httpd/httpd-build.sh"))
|
||||
, ("setenv", Relative("helpers/set-env.sh"))
|
||||
|
||||
, ("src", App(IncludeFix("fetchurl/fetchurl.fix"),
|
||||
[ ("url", "http://apache.cs.uu.nl/dist/httpd/httpd-2.0.47.tar.gz")
|
||||
, ("md5", "63f16638c18b140b649fab32b54d7f9c")
|
||||
]))
|
||||
|
||||
, ("stdenv", IncludeFix("stdenv/stdenv.fix"))
|
||||
, ("ssl", IncludeFix("openssl/openssl.fix"))
|
||||
, ("db4", IncludeFix("db4/db4.fix"))
|
||||
, ("expat", IncludeFix("expat/expat.fix"))
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user