diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-04-03 22:56:40 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-04-03 22:56:40 +0900 |
commit | 11394aecd1f906fee2ebd2b90412aeba4651fbff (patch) | |
tree | bcf750380e6d9fc7dbe524e16bbe2afde25dcfa0 /ubuntu/_base/tdesdk/debian/desktop-i18n/findfiles | |
parent | d24bd898174453b586ac90f2ef7a60165fa26fde (diff) | |
download | tde-packaging-11394aecd1f906fee2ebd2b90412aeba4651fbff.tar.gz tde-packaging-11394aecd1f906fee2ebd2b90412aeba4651fbff.zip |
DEB: use _base folder for a distro instead of specific distros (squeeze
and maverick).
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ubuntu/_base/tdesdk/debian/desktop-i18n/findfiles')
-rw-r--r-- | ubuntu/_base/tdesdk/debian/desktop-i18n/findfiles | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/ubuntu/_base/tdesdk/debian/desktop-i18n/findfiles b/ubuntu/_base/tdesdk/debian/desktop-i18n/findfiles new file mode 100644 index 000000000..f59fe6bae --- /dev/null +++ b/ubuntu/_base/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 |