From 7b902874f3b1866f13b43e8f90fd76958f7132b4 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Tue, 9 May 2006 08:45:37 +0000 Subject: [PATCH] Oops git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@25930 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- build_tools/prep_moduledeps | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/build_tools/prep_moduledeps b/build_tools/prep_moduledeps index f7f3c703c1..650e24dfd6 100755 --- a/build_tools/prep_moduledeps +++ b/build_tools/prep_moduledeps @@ -1,5 +1,31 @@ #!/bin/sh +get_description() { + x=${1} + TDESC=`cat $x | grep -e *tdesc | cut -f 2 -d '"'` + if [ "$TDESC" = "" ]; then + TDESC=`cat $x | grep -A 2 -e *description | grep -e '\"' | cut -f 2 -d '"'` + fi + if [ "$TDESC" = "" ]; then + TDESC=`cat $x | grep -e MODULE_DESCRIPTION | grep -v return | cut -f 2 -d '"'` + fi + if [ "$TDESC" = "" ]; then + TDESC=`cat $x | grep -e tdesc\\\[\\\] | cut -f 2 -d '"'` + fi + if [ "$TDESC" = "" ]; then + TDESC=`cat $x | grep -e desc\\\[\\\] | grep -v description | cut -f 2 -d '"'` + fi + if [ "$TDESC" = "" ]; then + TDESC=`cat $x | grep -e *desc | grep -v descrip | cut -f 2 -d '"'` + fi + if [ "$TDESC" = "" ]; then + TDESC=`cat $x | grep -e *dtext | grep static | cut -f 2 -d '"'` + fi + if [ "$TDESC" = "" ]; then + TDESC=`cat $x | grep -A 2 -e *synopsis | grep -e '\"' | cut -f 2 -d '"'` + fi +} + process_dir() { dir=${1} prefix=${2}_ @@ -10,7 +36,9 @@ process_dir() { for file in ${dir}/${prefix}*.c do fname=${file##${dir}/} - echo -e "\t\t" + get_description ${file} + desc=${TDESC} + echo -e "\t\t" awk -f build_tools/get_moduledeps ${file} echo -e "\t\t" done