* Build ntpd with capabilities support.
svn path=/nixpkgs/trunk/; revision=7462
This commit is contained in:
@@ -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
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user