summaryrefslogtreecommitdiffstats
path: root/dilos/tdesdk/debian/desktop-i18n/findfiles
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-11-15 19:23:30 +0800
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-11-15 19:23:30 +0800
commit0277521b268b21caf0ee21202b92784f302baadc (patch)
tree5d856f96adfbe46b57da31cf60daa1084b4e7a1e /dilos/tdesdk/debian/desktop-i18n/findfiles
parenteb16e7c7281e182297581fa8d565561869c81bca (diff)
downloadtde-packaging-0277521b268b21caf0ee21202b92784f302baadc.tar.gz
tde-packaging-0277521b268b21caf0ee21202b92784f302baadc.zip
DEB: adjusted to new 'core' folder for main packages.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'dilos/tdesdk/debian/desktop-i18n/findfiles')
-rw-r--r--dilos/tdesdk/debian/desktop-i18n/findfiles41
1 files changed, 0 insertions, 41 deletions
diff --git a/dilos/tdesdk/debian/desktop-i18n/findfiles b/dilos/tdesdk/debian/desktop-i18n/findfiles
deleted file mode 100644
index f59fe6bae..000000000
--- a/dilos/tdesdk/debian/desktop-i18n/findfiles
+++ /dev/null
@@ -1,41 +0,0 @@
-#! /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