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
|
2015-05-13 13:53:40 +02:00
|
|
|
set +o pipefail
|
2015-10-03 13:33:13 +02:00
|
|
|
requires=$(grep "Requires:" ${!outputDev}/lib/pkgconfig/*.pc | \
|
2006-01-09 13:49:21 +01:00
|
|
|
sed "s/Requires://" | sed "s/,/ /g")
|
2015-05-13 13:53:40 +02:00
|
|
|
set -o pipefail
|
2006-01-08 23:09:44 +01:00
|
|
|
|
|
|
|
echo "propagating requisites $requires"
|
|
|
|
|
|
|
|
for r in $requires; do
|
2017-08-12 18:41:49 +02:00
|
|
|
for p in "${pkgsHostHost[@]}" "${pkgsHostTarget[@]}"; do
|
2017-11-17 19:26:21 +01:00
|
|
|
if test -e $p/lib/pkgconfig/$r.pc; then
|
|
|
|
echo " found requisite $r in $p"
|
|
|
|
propagatedBuildInputs+=" $p"
|
|
|
|
fi
|
|
|
|
done
|
2006-01-08 23:09:44 +01:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|