2009-04-22 01:18:09 +02:00
|
|
|
# This is the builder for all X.org components.
|
2006-01-08 23:09:44 +01:00
|
|
|
source $stdenv/setup
|
|
|
|
|
|
|
|
|
|
|
|
# After installation, automatically add all "Requires" fields in the
|
|
|
|
# pkgconfig files (*.pc) to the propagated build inputs.
|
2007-02-26 17:32:27 +01:00
|
|
|
origPostInstall=$postInstall
|
2006-01-08 23:09:44 +01:00
|
|
|
postInstall() {
|
2007-02-26 17:32:27 +01:00
|
|
|
if test -n "$origPostInstall"; then eval "$origPostInstall"; fi
|
|
|
|
|
2006-01-08 23:09:44 +01:00
|
|
|
local r p requires
|
2006-01-09 13:49:21 +01:00
|
|
|
requires=$(grep "Requires:" $out/lib/pkgconfig/*.pc | \
|
|
|
|
sed "s/Requires://" | sed "s/,/ /g")
|
2006-01-08 23:09:44 +01:00
|
|
|
|
|
|
|
echo "propagating requisites $requires"
|
|
|
|
|
|
|
|
for r in $requires; do
|
2009-11-23 20:45:18 +01:00
|
|
|
if test -n "$crossConfig"; then
|
|
|
|
for p in $crossPkgs; do
|
|
|
|
if test -e $p/lib/pkgconfig/$r.pc; then
|
|
|
|
echo " found requisite $r in $p"
|
|
|
|
propagatedBuildInputs="$propagatedBuildInputs $p"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
else
|
|
|
|
for p in $nativePkgs; do
|
|
|
|
if test -e $p/lib/pkgconfig/$r.pc; then
|
|
|
|
echo " found requisite $r in $p"
|
2012-12-28 19:20:09 +01:00
|
|
|
propagatedNativeBuildInputs="$propagatedNativeBuildInputs $p"
|
2009-11-23 20:45:18 +01:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
2006-01-08 23:09:44 +01:00
|
|
|
done
|
|
|
|
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p "$out/nix-support"
|
2006-01-08 23:09:44 +01:00
|
|
|
echo "$propagatedBuildInputs" > "$out/nix-support/propagated-build-inputs"
|
2012-12-28 19:20:09 +01:00
|
|
|
echo "$propagatedNativeBuildInputs" > "$out/nix-support/propagated-native-build-inputs"
|
2006-01-08 23:09:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-15 16:54:57 +01:00
|
|
|
installFlags="appdefaultdir=$out/share/X11/app-defaults $installFlags"
|
2006-01-08 23:09:44 +01:00
|
|
|
|
|
|
|
|
2006-01-09 13:49:21 +01:00
|
|
|
if test -n "$x11BuildHook"; then
|
2006-01-08 23:09:44 +01:00
|
|
|
source $x11BuildHook
|
2011-02-15 16:54:57 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
enableParallelBuilding=1
|
2006-01-08 23:09:44 +01:00
|
|
|
|
|
|
|
|
|
|
|
genericBuild
|