1999-07-12 19:02:52 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2000-11-30 19:36:21 +01:00
|
|
|
fndir=$DESTDIR$fndir
|
2005-07-20 20:08:39 +02:00
|
|
|
scriptdir=$DESTDIR$scriptdir
|
1999-07-12 19:02:52 +02:00
|
|
|
|
2001-05-20 12:59:27 +02:00
|
|
|
/bin/sh $sdir_top/mkinstalldirs $fndir || exit 1;
|
1999-07-12 19:02:52 +02:00
|
|
|
|
2000-12-04 13:02:28 +01:00
|
|
|
allfuncs="`grep ' functions=.' ${dir_top}/config.modules |
|
2000-11-30 19:36:21 +01:00
|
|
|
sed -e '/^#/d' -e '/ link=no/d' -e 's/^.* functions=//'`"
|
|
|
|
|
|
|
|
allfuncs="`cd $sdir_top; echo ${allfuncs}`"
|
1999-07-12 19:02:52 +02:00
|
|
|
|
2000-11-30 19:36:21 +01:00
|
|
|
# We now have a list of files, but we need to use `test -f' to check
|
|
|
|
# (1) the glob got expanded (2) we are not looking at directories.
|
|
|
|
for file in $allfuncs; do
|
|
|
|
if test -f $sdir_top/$file; then
|
2001-08-07 11:08:50 +02:00
|
|
|
case "$file" in
|
|
|
|
*/CVS/*) continue;;
|
|
|
|
esac
|
2005-07-24 05:15:21 +02:00
|
|
|
if test x$FUNCTIONS_SUBDIRS != x && test x$FUNCTIONS_SUBDIRS != xno; then
|
2001-04-02 15:04:04 +02:00
|
|
|
case "$file" in
|
2003-02-13 17:34:19 +01:00
|
|
|
Completion/*/*)
|
2001-04-02 16:36:36 +02:00
|
|
|
subdir="`echo $file | sed -e 's%/[^/]*/[^/]*$%%'`"
|
2003-02-13 17:34:19 +01:00
|
|
|
instdir="$fndir/$subdir"
|
2001-04-02 16:36:36 +02:00
|
|
|
;;
|
2001-04-02 15:04:04 +02:00
|
|
|
Completion/*)
|
2003-02-13 17:34:19 +01:00
|
|
|
instdir="$fndir/Completion"
|
2001-04-02 15:04:04 +02:00
|
|
|
;;
|
2005-07-20 20:08:39 +02:00
|
|
|
Scripts/*)
|
|
|
|
instdir="$scriptdir"
|
|
|
|
;;
|
2001-04-02 15:04:04 +02:00
|
|
|
*)
|
|
|
|
subdir="`echo $file | sed -e 's%/[^/]*$%%' -e 's%^Functions/%%'`"
|
|
|
|
instdir="$fndir/$subdir"
|
|
|
|
;;
|
|
|
|
esac
|
1999-07-12 19:02:52 +02:00
|
|
|
else
|
2005-07-20 20:08:39 +02:00
|
|
|
case "$file" in
|
|
|
|
Scripts/*)
|
|
|
|
instdir="$scriptdir"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
instdir="$fndir"
|
|
|
|
;;
|
|
|
|
esac
|
1999-07-12 19:02:52 +02:00
|
|
|
fi
|
2001-05-20 12:59:27 +02:00
|
|
|
test -d $instdir || /bin/sh $sdir_top/mkinstalldirs $instdir || exit 1
|
2000-11-30 19:36:21 +01:00
|
|
|
$INSTALL_DATA $sdir_top/$file $instdir || exit 1
|
1999-07-12 19:02:52 +02:00
|
|
|
fi
|
|
|
|
done
|