From ced869acaaa67e7e73421f0b8671a1decfcd972a Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sun, 22 Mar 2009 05:04:21 +0100 Subject: [PATCH] Remove helpers/xml-catalogs.sh, it's not needed anymore. --HG-- extra : convert_revision : 5fb5db0d970f5b6cc4729c41bb016bb370ee91b6 --- templates/helpers/xml-catalogs.sh | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 templates/helpers/xml-catalogs.sh diff --git a/templates/helpers/xml-catalogs.sh b/templates/helpers/xml-catalogs.sh deleted file mode 100644 index 51ebb4c112..0000000000 --- a/templates/helpers/xml-catalogs.sh +++ /dev/null @@ -1,30 +0,0 @@ -# -# 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