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
|
|
|
|
for p in $pkgs; do
|
|
|
|
if test -e $p/lib/pkgconfig/$r.pc; then
|
|
|
|
echo " found requisite $r in $p"
|
|
|
|
propagatedBuildInputs="$propagatedBuildInputs $p"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
ensureDir "$out/nix-support"
|
|
|
|
echo "$propagatedBuildInputs" > "$out/nix-support/propagated-build-inputs"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
installFlags="appdefaultdir=$out/share/X11/app-defaults"
|
|
|
|
|
|
|
|
|
2006-01-09 13:49:21 +01:00
|
|
|
if test -n "$x11BuildHook"; then
|
2006-01-08 23:09:44 +01:00
|
|
|
source $x11BuildHook
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
genericBuild
|