2009-04-21 23:18:09 +00:00
|
|
|
# This is the builder for all X.org components.
|
2006-01-08 22:09:44 +00:00
|
|
|
source $stdenv/setup
|
|
|
|
|
|
|
|
|
|
|
|
# After installation, automatically add all "Requires" fields in the
|
|
|
|
# pkgconfig files (*.pc) to the propagated build inputs.
|
2007-02-26 16:32:27 +00:00
|
|
|
origPostInstall=$postInstall
|
2006-01-08 22:09:44 +00:00
|
|
|
postInstall() {
|
2007-02-26 16:32:27 +00:00
|
|
|
if test -n "$origPostInstall"; then eval "$origPostInstall"; fi
|
|
|
|
|
2006-01-08 22:09:44 +00:00
|
|
|
local r p requires
|
2015-05-13 11:53:40 +00:00
|
|
|
set +o pipefail
|
2015-10-03 11:33:13 +00:00
|
|
|
requires=$(grep "Requires:" ${!outputDev}/lib/pkgconfig/*.pc | \
|
2006-01-09 12:49:21 +00:00
|
|
|
sed "s/Requires://" | sed "s/,/ /g")
|
2015-05-13 11:53:40 +00:00
|
|
|
set -o pipefail
|
2006-01-08 22:09:44 +00:00
|
|
|
|
|
|
|
echo "propagating requisites $requires"
|
|
|
|
|
|
|
|
for r in $requires; do
|
2017-08-12 16:41:49 +00:00
|
|
|
for p in "${pkgsHostHost[@]}" "${pkgsHostTarget[@]}"; do
|
2017-11-17 18:26:21 +00:00
|
|
|
if test -e $p/lib/pkgconfig/$r.pc; then
|
|
|
|
echo " found requisite $r in $p"
|
|
|
|
propagatedBuildInputs+=" $p"
|
|
|
|
fi
|
|
|
|
done
|
2006-01-08 22:09:44 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-15 15:54:57 +00:00
|
|
|
installFlags="appdefaultdir=$out/share/X11/app-defaults $installFlags"
|
2006-01-08 22:09:44 +00:00
|
|
|
|
|
|
|
|
2006-01-09 12:49:21 +00:00
|
|
|
if test -n "$x11BuildHook"; then
|
2006-01-08 22:09:44 +00:00
|
|
|
source $x11BuildHook
|
2011-02-15 15:54:57 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
enableParallelBuilding=1
|
2006-01-08 22:09:44 +00:00
|
|
|
|
|
|
|
genericBuild
|