#!/bin/bash # # mono-find-provides # # Authors: # Ben Maurer (bmaurer@ximian.com) # # (C) 2005 Novell (http://www.novell.com) # 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/")) a=`which "$0"` d=`dirname "$a"` # Set the prefix, unless it is overriden (used when building mono rpms) : ${prefix=$d/..} exec_prefix=$d/.. libdir=$prefix/@reloc_libdir@ bindir=$d [ -x $bindir/monodis ] || exit 0; [ -f $libdir/libmono.so ] || exit 0; # set LD_LIBRARY_PATH to ensure that libmono.so is found export LD_LIBRARY_PATH=$libdir${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} for i in "${monolist[@]}"; do ($bindir/monodis --assembly $i | awk ' BEGIN { LIBNAME=""; VERSION=""; } /^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 } ') 2>/dev/null done