5227fb1dd5
Many non-conflict problems weren't (fully) resolved in this commit yet.
39 lines
1.2 KiB
Bash
39 lines
1.2 KiB
Bash
# Install gschemas, if any, in a package-specific directory
|
|
installFlagsArray+=("gsettingsschemadir=$out/share/gsettings-schemas/$name/glib-2.0/schemas/")
|
|
|
|
make_glib_find_gsettings_schemas() {
|
|
# For packages that need gschemas of other packages (e.g. empathy)
|
|
if [ -d "$1"/share/gsettings-schemas/*/glib-2.0/schemas ]; then
|
|
addToSearchPath GSETTINGS_SCHEMAS_PATH "$1/share/gsettings-schemas/"*
|
|
fi
|
|
}
|
|
|
|
envHooks+=(make_glib_find_gsettings_schemas)
|
|
|
|
glibPreFixupPhase() {
|
|
# Move gschemas in case the install flag didn't help
|
|
if [ -d "$out/share/glib-2.0/schemas" ]; then
|
|
mkdir -p "$out/share/gsettings-schemas/$name/glib-2.0"
|
|
mv "$out/share/glib-2.0/schemas" "$out/share/gsettings-schemas/$name/glib-2.0/"
|
|
fi
|
|
|
|
addToSearchPath GSETTINGS_SCHEMAS_PATH "$out/share/gsettings-schemas/$name"
|
|
}
|
|
|
|
preFixupPhases+=(glibPreFixupPhase)
|
|
|
|
|
|
preFixupHooks+=(_multioutGtkDocs)
|
|
|
|
# Move documentation to the desired outputs.
|
|
_multioutGtkDocs() {
|
|
if [ "$outputs" = "out" ]; then return; fi;
|
|
_moveToOutput share/gtk-doc "${!outputDoc}"
|
|
|
|
# Remove empty share directory.
|
|
if [ -d "$out/share" ]; then
|
|
rmdir "$out/share" 2> /dev/null || true
|
|
fi
|
|
}
|
|
|