New test.
[mono.git] / scripts / mono-find-provides.in
index c3f59fdd763ef5b07abf6eda9cd017639001bf3f..f7ee80ea4cb2218f5f124cc950a37aca5b3ebb56 100644 (file)
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 #
 # mono-find-provides
 #
@@ -12,12 +12,20 @@ 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"`
+
 # Set the prefix, unless it is overriden (used when building mono rpms)
-: ${prefix=@prefix@}
+: ${prefix=$d/..}
 
-exec_prefix=@exec_prefix@
-libdir=@libdir@
-bindir=@bindir@
+exec_prefix=$d/..
+libdir=$prefix/@reloc_libdir@
+bindir=$d
 
 [ -x $bindir/monodis ] || exit 0;
 [ -f $libdir/libmono.so ] || exit 0;
@@ -32,6 +40,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
                 }