* Build ntpd with capabilities support.

svn path=/nixpkgs/trunk/; revision=7462
This commit is contained in:
Eelco Dolstra
2006-12-22 19:22:57 +00:00
parent 000b1f4cd6
commit 33db7f3dd3
4 changed files with 73 additions and 2 deletions
+21
View File
@@ -0,0 +1,21 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "libcap-1.10";
src = fetchurl {
url = http://www.kernel.org/pub/linux/libs/security/linux-privs/kernel-2.4/libcap-1.10.tar.bz2;
md5 = "4426a413128142cab89eb2e6f13d8571";
};
preBuild = "
sed 's|/usr/include|${stdenv.glibc}/include|' < libcap/Makefile > libcap/Makefile.tmp
mv libcap/Makefile.tmp libcap/Makefile
installFlags=\"LIBDIR=$out/lib INCDIR=$out/include SBINDIR=$out/sbin MANDIR=$out/man\"
";
patches = [
# Borrowed from http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libcap/files/libcap-1.10-syscall.patch?rev=1.2&view=log.
./syscall.patch
];
}