Reorganize the tree for easier and better handling.
- Template helpers have been moved to templates/helpers. - Documentation to docs/. - Common scripts have been moved to utils/sh. - Fixed install-destdir when executed via chroot. - Added a build-pkg target that builds a binary package. The package must be installed into destdir before using. - Misc tweaks and fixes. --HG-- extra : convert_revision : 0896e8f24bb7592116aaf77ae9c776033818a3d8
This commit is contained in:
parent
8373117030
commit
23fa45a18b
20 changed files with 65 additions and 79 deletions
17
templates/helpers/gtk-update-immodules.sh
Normal file
17
templates/helpers/gtk-update-immodules.sh
Normal file
|
@ -0,0 +1,17 @@
|
|||
#
|
||||
# This helper updates GTK's gtk.immodules modules file every time
|
||||
# a template requests this process.
|
||||
#
|
||||
gtk_version="2.0"
|
||||
gtk_query_immodules_cmd=$XBPS_MASTERDIR/bin/gtk-query-immodules-$gtk_version
|
||||
gtk_immodules_db=$XBPS_SYSCONFDIR/gtk-$gtk_version/gtk.immodules
|
||||
|
||||
if [ -x $gtk_query_immodules_cmd -a -w $gtk_immodules_db ]; then
|
||||
$gtk_query_immodules_cmd > $gtk_immodules_db
|
||||
[ "$?" -eq 0 ] && \
|
||||
echo "=> Updated GTK+ $(basename $gtk_immodules_db) modules file."
|
||||
fi
|
||||
|
||||
unset gtk_version
|
||||
unset gtk_query_immodules_cmd
|
||||
unset gtk_immodules_db
|
Loading…
Add table
Add a link
Reference in a new issue