23fa45a18b
- 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
30 lines
840 B
Bash
30 lines
840 B
Bash
#
|
|
# This helper registers DTDs and XML/SGML catalogs through the
|
|
# xmlcatmgr application, as done in pkgsrc.
|
|
#
|
|
|
|
xmlcatmgr_cmd=$XBPS_MASTERDIR/bin/xmlcatmgr
|
|
sgml_catalog=$XBPS_MASTERDIR/share/sgml/catalog
|
|
xml_catalog=$XBPS_MASTERDIR/share/xml/catalog
|
|
|
|
if [ -x $xmlcatmgr_cmd -a -f $sgml_catalog -a -f $xml_catalog ]; then
|
|
if [ -n "$sgml_entries" ]; then
|
|
echo "=> Registering SGML catalogs for \`$pkgname-$version'."
|
|
set -- ${sgml_entries}
|
|
while [ $# -gt 0 ]; do
|
|
$xmlcatmgr_cmd -sc $sgml_catalog add "$1" "$2" "$3"
|
|
shift; shift; shift;
|
|
done
|
|
fi
|
|
|
|
if [ -n "$xml_entries" ]; then
|
|
echo "=> Registering XML catalogs for \`$pkgname-$version'."
|
|
set -- ${xml_entries}
|
|
while [ $# -gt 0 ]; do
|
|
$xmlcatmgr_cmd -c $xml_catalog add "$1" "$2" "$3"
|
|
shift; shift; shift;
|
|
done
|
|
fi
|
|
fi
|
|
|
|
unset xmlcatmgr_cmd sgml_catalog xml_catalog
|