summaryrefslogtreecommitdiffstats
path: root/dilos/tdesdk/debian/desktop-i18n/findfiles
diff options
context:
space:
mode:
authorDenis Kozadaev <denis@dilos.org>2020-01-30 22:13:12 +0300
committerSlávek Banko <slavek.banko@axis.cz>2020-03-08 15:40:43 +0100
commitf53be2a5db8dc889056420689a1913aeff7b0af5 (patch)
tree80c8bacab0e649d3a42a4525426ad1512f91c438 /dilos/tdesdk/debian/desktop-i18n/findfiles
parentfc267b3a7e513cfa519c60aab4c340a9588e60cb (diff)
downloadtde-packaging-f53be2a5db8dc889056420689a1913aeff7b0af5.tar.gz
tde-packaging-f53be2a5db8dc889056420689a1913aeff7b0af5.zip
DilOS: tdesdk build pack
Signed-off-by: Denis Kozadaev <denis@dilos.org> (cherry picked from commit e803ab9f23e7657fa39666791169e1670f6ce3cf)
Diffstat (limited to 'dilos/tdesdk/debian/desktop-i18n/findfiles')
-rw-r--r--dilos/tdesdk/debian/desktop-i18n/findfiles41
1 files changed, 41 insertions, 0 deletions
diff --git a/dilos/tdesdk/debian/desktop-i18n/findfiles b/dilos/tdesdk/debian/desktop-i18n/findfiles
new file mode 100644
index 000000000..f59fe6bae
--- /dev/null
+++ b/dilos/tdesdk/debian/desktop-i18n/findfiles
@@ -0,0 +1,41 @@
+#! /usr/bin/env bash
+
+filelist=$1
+
+rm -f "$filelist"_* $filelist
+
+touch $filelist
+
+dir=.
+
+find $dir -name "*.directory" -print | grep -v debian >> $filelist
+find $dir -name "*.kdelnk" -print | grep -v debian >> $filelist
+find $dir -name "*.desktop" -print | grep -v debian >> $filelist
+find $dir -name "*.kimap" -print | grep -v debian >> $filelist
+find $dir -name "*.themerc" -print | grep -v debian >> $filelist
+find $dir -name "*.kcsrc" -print | grep -v debian >> $filelist
+find $dir -name "*.setdlg" -print | grep -v debian >> $filelist
+find $dir -name "index.theme" -print | grep -v debian >> $filelist
+find $dir -name "eventsrc" -print | grep -v debian >> $filelist
+find $dir -name "*.protocol" -print | grep -v debian >> $filelist
+
+### TEMPORARY START: we do not have TDE modules
+if true; then
+find ./konqueror -name .svn -prune , -name "directory.*" -type f 2>/dev/null | grep -v debian >> $filelist
+find ./kdesktop -name .svn -prune , -name "directory.*" -type f 2>/dev/null | grep -v debian >> $filelist
+find ./drkonqi -name "*rc" -print 2>/dev/null | grep -v debian >> $filelist
+find ./kimgio -name \*.kimgio -print 2>/dev/null | grep -v debian >> $filelist
+find ./noatun -name \*.plugin -print 2>/dev/null | grep -v debian >> $filelist
+find ./noatun-plugins -name \*.plugin -print 2>/dev/null | grep -v debian >> $filelist
+find ./amor/data -name \*rc -print 2>/dev/null | grep -v debian >> $filelist
+find ./tdeprint -name \*.print -print 2>/dev/null | grep -v debian >> $filelist
+find . -name \*.kksrc -print 2>/dev/null | grep -v debian >> $filelist
+find ./kopete -name \*.plugin -print 2>/dev/null | grep -v debian >> $filelist
+find . -name \*.kdevtemplate -print 2>/dev/null | grep -v debian >> $filelist
+fi
+### TEMPORARY END: we do not have TDE modules
+
+# Extract .directory files in template directories of KOffice
+find . -name .directory|fgrep templates >> $filelist
+
+sort -o $filelist -u $filelist