summaryrefslogtreecommitdiffstats
path: root/tderadio3/presets/update-makefile-dot-am.sh
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-02-01 17:25:34 -0600
committerTimothy Pearson <[email protected]>2013-02-01 17:25:34 -0600
commit48906a623383ab5222541ae048e99dd039b62a9a (patch)
tree1c5f588e90899bb1301f79cf97b8f6ddc0b1c367 /tderadio3/presets/update-makefile-dot-am.sh
parenta1e6ce502c334194d31a0b78b11b77e9532da64b (diff)
downloadtderadio-48906a623383ab5222541ae048e99dd039b62a9a.tar.gz
tderadio-48906a623383ab5222541ae048e99dd039b62a9a.zip
Fix FTBFS
Diffstat (limited to 'tderadio3/presets/update-makefile-dot-am.sh')
-rwxr-xr-xtderadio3/presets/update-makefile-dot-am.sh63
1 files changed, 63 insertions, 0 deletions
diff --git a/tderadio3/presets/update-makefile-dot-am.sh b/tderadio3/presets/update-makefile-dot-am.sh
new file mode 100755
index 0000000..edf7421
--- /dev/null
+++ b/tderadio3/presets/update-makefile-dot-am.sh
@@ -0,0 +1,63 @@
+#!/bin/sh
+
+THIS="$0"
+if [ ${THIS:0:1} != "/" ] ; then
+ if [ -e "$PWD/$THIS" ] ; then
+ THIS="$PWD/$THIS"
+ fi
+fi
+
+THISDIR=$(pwd | sed "s/^.*presets\/\?//" )
+OUT=Makefile.am
+HERE=$(pwd)
+
+echo -n "SUBDIRS =" > $OUT
+echo -e "Makefile\nMakefile.in\nmaintainers.txt\nmakemaintainers" > .cvsignore
+
+
+find -mindepth 1 -maxdepth 1 -type d | sed 's/^\.\///' | sed 's/\/$//' | grep -v CVS | \
+ while read line; do
+
+ echo -n " $line" >> $OUT
+
+ cd "$line"
+ "$THIS"
+ cd "$HERE"
+
+ done
+
+echo >> $OUT
+
+
+if [ -n "$THISDIR" ] ; then
+
+ echo -n "EXTRA_DIST =" >> $OUT
+
+
+ ls *.krp 2> /dev/null | while read line; do
+ echo -n " \"$line\"" >> $OUT
+ done
+
+ echo >> $OUT
+
+ echo -e "\ninstall-data-local:" >> $OUT
+ echo " \$(mkinstalldirs) \"\$(DESTDIR)\$(kde_datadir)/kradio/presets/$THISDIR/\"" >> $OUT
+
+ find -mindepth 1 -maxdepth 1 -name "*.krp" | sed 's/^\.\///' | \
+ while read line; do
+
+ echo " \$(INSTALL_DATA) \"\$(srcdir)/$line\" \"\$(DESTDIR)\$(kde_datadir)/kradio/presets/$THISDIR/$line\"" >> $OUT
+
+ done
+
+
+ echo -e "\n\nuninstall-local:" >> $OUT
+
+ find -mindepth 1 -maxdepth 1 -name "*.krp" | sed 's/^\.\///' | \
+ while read line; do
+
+ echo " -rm -f \"\$(DESTDIR)\$(kde_datadir)/kradio/presets/$THISDIR/$line\"" >> $OUT
+
+ done
+
+fi