2007-02-03 Marek Sieradzki <marek.sieradzki@gmail.com>
[mono.git] / scripts / mono-find-provides.in
index 7f677202006328bbaf90c3e5f58c551225fd48a2..de468c27e685d0c96086dd1f0aadab8c38e75d74 100644 (file)
@@ -12,6 +12,11 @@ IFS=$'\n'
 filelist=($(grep -Ev '/usr/doc/|/usr/share/doc/'))
 monolist=($(printf "%s\n" "${filelist[@]}" | egrep "\\.(exe|dll)\$"))
 
+# Only include files with /gac/ in path
+#  (Allows packages to contain private assemblies that don't conflict with other packages)
+#monolist=($(printf "%s\n" "${monolist[@]}" | egrep "/gac/"))
+# Disabled... see ChangeLog
+
 a=`which "$0"`
 d=`dirname "$a"`
 
@@ -22,8 +27,11 @@ exec_prefix=$d/..
 libdir=$prefix/@reloc_libdir@
 bindir=$d
 
-[ -x $bindir/monodis ] || exit 0;
-[ -f $libdir/libmono.so ] || exit 0;
+# Bail out if monodis or libmono is missing
+if [ ! -x $bindir/monodis ] || [ ! -f $libdir/libmono.so ] ; then
+       echo "monodis missing or unusable, exiting..."
+       exit 1
+fi
 
 
 # set LD_LIBRARY_PATH to ensure that libmono.so is found
@@ -35,6 +43,14 @@ for i in "${monolist[@]}"; do
                 /^Version:/ { VERSION=$2 }
                 /^Name:/    { LIBNAME=$2 }
                 END {
+                       if (LIBNAME ~ /^policy/) {
+                               cnt = split(LIBNAME, toks, ".")
+                               VERSION=toks[2] "." toks[3] ".0.0"
+                               LIBNAME=""
+                               for (i=4; i<= cnt; i++)
+                                       LIBNAME = (LIBNAME toks[i] ".")
+                               LIBNAME=substr(LIBNAME, 1, length(LIBNAME)-1)
+                       }
                         if (VERSION && LIBNAME)
                                 print "mono(" LIBNAME ") = " VERSION
                 }