diff options
author | Emanoil Kotsev <[email protected]> | 2018-11-12 21:18:37 +0100 |
---|---|---|
committer | Emanoil Kotsev <[email protected]> | 2023-01-14 03:44:08 +0000 |
commit | e274309d9293777aaaecebccaa29a339a05bd4f9 (patch) | |
tree | a00349c31b90cdedaa6e351dfe93950b55903dce /src/tdebluez-common | |
parent | 63c233987977aa48b701edeb47079a6153359fbe (diff) | |
download | tdebluez-e274309d9293777aaaecebccaa29a339a05bd4f9.tar.gz tdebluez-e274309d9293777aaaecebccaa29a339a05bd4f9.zip |
Based on KDE3 bluez4 version a TDE bluez5 version was created
Signed-off-by: Emanoil Kotsev <[email protected]>
Diffstat (limited to 'src/tdebluez-common')
66 files changed, 2794 insertions, 0 deletions
diff --git a/src/tdebluez-common/CMakeLists.txt b/src/tdebluez-common/CMakeLists.txt new file mode 100644 index 0000000..8dbf649 --- /dev/null +++ b/src/tdebluez-common/CMakeLists.txt @@ -0,0 +1,67 @@ +################################################# +# +# (C) 2018 Emanoil Kotsev +# deloptes (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +project( tdebluez-common ) + +# include( ConfigureChecks.cmake ) + +# import required +#tde_import( lib... ) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR} + ${CMAKE_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/tdebluez-common + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +#link_directories( +# ${TQT_LIBRARY_DIRS} +#) + + +##### other data ################################ +# Example +#install( FILES knotes.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} ) +#install( FILES knoteconfig.kcfg knotesglobalconfig.kcfg DESTINATION ${KCFG_INSTALL_DIR} ) +#install( FILES knotesappui.rc knotesui.rc DESTINATION ${DATA_INSTALL_DIR}/knotes ) +#install( FILES local.desktop DESTINATION ${SERVICES_INSTALL_DIR}/tderesources/knotes ) +#install( FILES knotes_manager.desktop DESTINATION ${SERVICES_INSTALL_DIR}/tderesources ) + +# # from tdebase/applnk/Makefile.am +# install-data-local: +# $(mkinstalldirs) $(DESTDIR)$(kde_appsdir)/Settings/Network/Bluetooth +# $(INSTALL_DATA) $(srcdir)/kde-settings-network-bluetooth.directory \ +# $(DESTDIR)$(kde_appsdir)/Settings/Network/Bluetooth/.directory +# +# uninstall-local: +# -rm -f $(DESTDIR)$(kde_appsdir)/Settings/Network/Bluetooth/.directory + +##### install import cmake modules ############### +#tde_install_export( ) + +# Bluetooth directory entry in the control center +install( FILES tde-settings-network-bluetooth.directory + DESTINATION ${DATA_INSTALL_DIR}/tdebluez ) + +# Bluetooth access to system debus org.bluez +install( FILES org.trinitydesktop.tdebluez.conf + DESTINATION ${DBUS_SYS_DIR} ) +# DESTINATION ${DBUS_SYSTEM_CONF_DIRECTORY} ) + + + +add_subdirectory( icons ) +add_subdirectory( mimetypes ) +#add_subdirectory( dunhandler ) +#add_subdirectory( faxhandler )
\ No newline at end of file diff --git a/src/tdebluez-common/README b/src/tdebluez-common/README new file mode 100644 index 0000000..a397554 --- /dev/null +++ b/src/tdebluez-common/README @@ -0,0 +1,3 @@ +This directory contains some files which are shared +among the various modules in tdebluez. + diff --git a/src/tdebluez-common/dunhandler/CMakeLists.txt b/src/tdebluez-common/dunhandler/CMakeLists.txt new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/src/tdebluez-common/dunhandler/CMakeLists.txt diff --git a/src/tdebluez-common/dunhandler/Makefile.am b/src/tdebluez-common/dunhandler/Makefile.am new file mode 100644 index 0000000..17b1e17 --- /dev/null +++ b/src/tdebluez-common/dunhandler/Makefile.am @@ -0,0 +1,7 @@ + +dunhandlerdir = $(kde_datadir)/kdebluetooth/dunhandler +dunhandler_SCRIPTS=dunhandler + +# The desktop file +servicemenudir = $(kde_appsdir)/Utilities +servicemenu_DATA = dunhandler.desktop
\ No newline at end of file diff --git a/src/tdebluez-common/dunhandler/Makefile.in b/src/tdebluez-common/dunhandler/Makefile.in new file mode 100644 index 0000000..cf05434 --- /dev/null +++ b/src/tdebluez-common/dunhandler/Makefile.in @@ -0,0 +1,804 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# KDE tags expanded automatically by am_edit - $Revision$ +# @configure_input@ + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + + +VPATH = @srcdir@ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +target_triplet = @target@ +subdir = kdebluetooth/kdebluetooth-common/dunhandler +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/admin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = dunhandler.desktop +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(dunhandlerdir)" \ + "$(DESTDIR)$(servicemenudir)" +SCRIPTS = $(dunhandler_SCRIPTS) +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +DATA = $(servicemenu_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +am__DIST_COMMON = $(srcdir)/Makefile.in \ + $(srcdir)/dunhandler.desktop.in \ + $(top_srcdir)/admin/mkinstalldirs +#>- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +#>+ 1 +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) $(KDE_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +ARTSCCONFIG = @ARTSCCONFIG@ +AUTOCONF = @AUTOCONF@ +AUTODIRS = @AUTODIRS@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BLUETOOTH_CFLAGS = @BLUETOOTH_CFLAGS@ +BLUETOOTH_LIBS = @BLUETOOTH_LIBS@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONF_FILES = @CONF_FILES@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DBUSTQT_CFLAGS = @DBUSTQT_CFLAGS@ +DBUSTQT_LIBS = @DBUSTQT_LIBS@ +DBUS_CFLAGS = @DBUS_CFLAGS@ +DBUS_LIBS = @DBUS_LIBS@ +DCOPIDL = @DCOPIDL@ +DCOPIDL2CPP = @DCOPIDL2CPP@ +DCOPIDLNG = @DCOPIDLNG@ +DCOP_DEPENDENCIES = @DCOP_DEPENDENCIES@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DOXYGEN = @DOXYGEN@ +DOXYGEN_PROJECT_NAME = @DOXYGEN_PROJECT_NAME@ +DOXYGEN_PROJECT_NUMBER = @DOXYGEN_PROJECT_NUMBER@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENABLE_PERMISSIVE_FLAG = @ENABLE_PERMISSIVE_FLAG@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +FRAMEWORK_COREAUDIO = @FRAMEWORK_COREAUDIO@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +HAVE_GCC_VISIBILITY = @HAVE_GCC_VISIBILITY@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +KBTOBEXSRV_BINDIR = @KBTOBEXSRV_BINDIR@ +KCFG_DEPENDENCIES = @KCFG_DEPENDENCIES@ +KCONFIG_COMPILER = @KCONFIG_COMPILER@ +KDEBLUETOOTH_VERSION = @KDEBLUETOOTH_VERSION@ +KDECONFIG = @KDECONFIG@ +KDE_CHECK_PLUGIN = @KDE_CHECK_PLUGIN@ +KDE_EXTRA_RPATH = @KDE_EXTRA_RPATH@ +KDE_HAS_DOXYGEN = @KDE_HAS_DOXYGEN@ +KDE_HAVE_DOT = @KDE_HAVE_DOT@ +KDE_INCLUDES = @KDE_INCLUDES@ +KDE_LDFLAGS = @KDE_LDFLAGS@ +KDE_MT_LDFLAGS = @KDE_MT_LDFLAGS@ +KDE_MT_LIBS = @KDE_MT_LIBS@ +KDE_NO_UNDEFINED = @KDE_NO_UNDEFINED@ +KDE_PLUGIN = @KDE_PLUGIN@ +KDE_RPATH = @KDE_RPATH@ +KDE_USE_CLOSURE_FALSE = @KDE_USE_CLOSURE_FALSE@ +KDE_USE_CLOSURE_TRUE = @KDE_USE_CLOSURE_TRUE@ +KDE_USE_FINAL_FALSE = @KDE_USE_FINAL_FALSE@ +KDE_USE_FINAL_TRUE = @KDE_USE_FINAL_TRUE@ +KDE_USE_FPIE = @KDE_USE_FPIE@ +KDE_USE_NMCHECK_FALSE = @KDE_USE_NMCHECK_FALSE@ +KDE_USE_NMCHECK_TRUE = @KDE_USE_NMCHECK_TRUE@ +KDE_USE_PIE = @KDE_USE_PIE@ +KDE_XSL_STYLESHEET = @KDE_XSL_STYLESHEET@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LDFLAGS_AS_NEEDED = @LDFLAGS_AS_NEEDED@ +LDFLAGS_NEW_DTAGS = @LDFLAGS_NEW_DTAGS@ +LIBCOMPAT = @LIBCOMPAT@ +LIBCRYPT = @LIBCRYPT@ +LIBDL = @LIBDL@ +LIBJPEG = @LIBJPEG@ +LIBOBJS = @LIBOBJS@ +LIBPNG = @LIBPNG@ +LIBPTHREAD = @LIBPTHREAD@ +LIBRESOLV = @LIBRESOLV@ +LIBS = @LIBS@ +LIBSM = @LIBSM@ +LIBSOCKET = @LIBSOCKET@ +LIBTOOL = @LIBTOOL@ +LIBTQT_LDFLAGS = @LIBTQT_LDFLAGS@ +LIBUCB = @LIBUCB@ +LIBUTIL = @LIBUTIL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIBZ = @LIBZ@ +LIB_ARTS = @LIB_ARTS@ +LIB_BLUETOOTH = @LIB_BLUETOOTH@ +LIB_KAB = @LIB_KAB@ +LIB_KDED = @LIB_KDED@ +LIB_KFM = @LIB_KFM@ +LIB_KJS = @LIB_KJS@ +LIB_LOCKDEV = @LIB_LOCKDEV@ +LIB_POLL = @LIB_POLL@ +LIB_QPE = @LIB_QPE@ +LIB_QT = @LIB_QT@ +LIB_QUI = @LIB_QUI@ +LIB_SDP = @LIB_SDP@ +LIB_SMB = @LIB_SMB@ +LIB_TDEABC = @LIB_TDEABC@ +LIB_TDECORE = @LIB_TDECORE@ +LIB_TDEDNSSD = @LIB_TDEDNSSD@ +LIB_TDEFILE = @LIB_TDEFILE@ +LIB_TDEHTML = @LIB_TDEHTML@ +LIB_TDEIMPROXY = @LIB_TDEIMPROXY@ +LIB_TDEIO = @LIB_TDEIO@ +LIB_TDENEWSTUFF = @LIB_TDENEWSTUFF@ +LIB_TDEPARTS = @LIB_TDEPARTS@ +LIB_TDEPIM = @LIB_TDEPIM@ +LIB_TDEPRINT = @LIB_TDEPRINT@ +LIB_TDESPELL = @LIB_TDESPELL@ +LIB_TDESYCOCA = @LIB_TDESYCOCA@ +LIB_TDEUI = @LIB_TDEUI@ +LIB_TDEUNITTEST = @LIB_TDEUNITTEST@ +LIB_TDEUTILS = @LIB_TDEUTILS@ +LIB_X11 = @LIB_X11@ +LIB_XEXT = @LIB_XEXT@ +LIB_XRENDER = @LIB_XRENDER@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MAKETDEWIDGETS = @MAKETDEWIDGETS@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MCOPIDL = @MCOPIDL@ +MEINPROC = @MEINPROC@ +MKDIR_P = @MKDIR_P@ +MOC = @MOC@ +MSGFMT = @MSGFMT@ +NM = @NM@ +NMEDIT = @NMEDIT@ +NOOPT_CFLAGS = @NOOPT_CFLAGS@ +NOOPT_CXXFLAGS = @NOOPT_CXXFLAGS@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OPENOBEX_CFLAGS = @OPENOBEX_CFLAGS@ +OPENOBEX_LIBS = @OPENOBEX_LIBS@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PERL = @PERL@ +PKG_CONFIG = @PKG_CONFIG@ +QTDOCDIR = @QTDOCDIR@ +QTE_NORTTI = @QTE_NORTTI@ +QT_INCLUDES = @QT_INCLUDES@ +QT_LDFLAGS = @QT_LDFLAGS@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +TOPSUBDIRS = @TOPSUBDIRS@ +TQTDCOPIDL = @TQTDCOPIDL@ +TQTDCOPIDL2CPP = @TQTDCOPIDL2CPP@ +TQTDCOPIDLNG = @TQTDCOPIDLNG@ +TQTMCOPIDL = @TQTMCOPIDL@ +TQTMOC = @TQTMOC@ +UIC = @UIC@ +UIC_TR = @UIC_TR@ +USER_INCLUDES = @USER_INCLUDES@ +USER_LDFLAGS = @USER_LDFLAGS@ +USE_EXCEPTIONS = @USE_EXCEPTIONS@ +USE_RTTI = @USE_RTTI@ +USE_THREADS = @USE_THREADS@ +VERSION = @VERSION@ +WOVERLOADED_VIRTUAL = @WOVERLOADED_VIRTUAL@ +XGETTEXT = @XGETTEXT@ +XMKMF = @XMKMF@ +XMLLINT = @XMLLINT@ +X_EXTRA_LIBS = @X_EXTRA_LIBS@ +X_INCLUDES = @X_INCLUDES@ +X_LDFLAGS = @X_LDFLAGS@ +X_PRE_LIBS = @X_PRE_LIBS@ +X_RPATH = @X_RPATH@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +all_includes = @all_includes@ +all_libraries = @all_libraries@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dunhandler_dir = @dunhandler_dir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +faxhandler_dir = @faxhandler_dir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +kde_appsdir = @kde_appsdir@ +kde_bindir = @kde_bindir@ +kde_confdir = @kde_confdir@ +kde_datadir = @kde_datadir@ +kde_htmldir = @kde_htmldir@ +kde_icondir = @kde_icondir@ +kde_includes = @kde_includes@ +kde_kcfgdir = @kde_kcfgdir@ +kde_libraries = @kde_libraries@ +kde_libs_htmldir = @kde_libs_htmldir@ +kde_libs_prefix = @kde_libs_prefix@ +kde_locale = @kde_locale@ +kde_mimedir = @kde_mimedir@ +kde_moduledir = @kde_moduledir@ +kde_qtver = @kde_qtver@ +kde_servicesdir = @kde_servicesdir@ +kde_servicetypesdir = @kde_servicetypesdir@ +kde_sounddir = @kde_sounddir@ +kde_styledir = @kde_styledir@ +kde_templatesdir = @kde_templatesdir@ +kde_wallpaperdir = @kde_wallpaperdir@ +kde_widgetdir = @kde_widgetdir@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +qt_includes = @qt_includes@ +qt_libraries = @qt_libraries@ +runstatedir = @runstatedir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target = @target@ +target_alias = @target_alias@ +target_cpu = @target_cpu@ +target_os = @target_os@ +target_vendor = @target_vendor@ +tdeinitdir = @tdeinitdir@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +x_includes = @x_includes@ +x_libraries = @x_libraries@ +xdg_appsdir = @xdg_appsdir@ +xdg_directorydir = @xdg_directorydir@ +xdg_menudir = @xdg_menudir@ +dunhandlerdir = $(kde_datadir)/kdebluetooth/dunhandler +dunhandler_SCRIPTS = dunhandler + +# The desktop file +servicemenudir = $(kde_appsdir)/Utilities +servicemenu_DATA = dunhandler.desktop +#>- all: all-am +#>+ 1 +all: docs-am all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) +#>- @for dep in $?; do \ +#>- case '$(am__configure_deps)' in \ +#>- *$$dep*) \ +#>- ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ +#>- && { if test -f $@; then exit 0; else break; fi; }; \ +#>- exit 1;; \ +#>- esac; \ +#>- done; \ +#>- echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign kdebluetooth/kdebluetooth-common/dunhandler/Makefile'; \ +#>- $(am__cd) $(top_srcdir) && \ +#>- $(AUTOMAKE) --foreign kdebluetooth/kdebluetooth-common/dunhandler/Makefile +#>+ 12 + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign kdebluetooth/kdebluetooth-common/dunhandler/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign kdebluetooth/kdebluetooth-common/dunhandler/Makefile + cd $(top_srcdir) && perl admin/am_edit kdebluetooth/kdebluetooth-common/dunhandler/Makefile.in +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +dunhandler.desktop: $(top_builddir)/config.status $(srcdir)/dunhandler.desktop.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +install-dunhandlerSCRIPTS: $(dunhandler_SCRIPTS) + @$(NORMAL_INSTALL) + @list='$(dunhandler_SCRIPTS)'; test -n "$(dunhandlerdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(dunhandlerdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(dunhandlerdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n' \ + -e 'h;s|.*|.|' \ + -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) { files[d] = files[d] " " $$1; \ + if (++n[d] == $(am__install_max)) { \ + print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ + else { print "f", d "/" $$4, $$1 } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(dunhandlerdir)$$dir'"; \ + $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(dunhandlerdir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-dunhandlerSCRIPTS: + @$(NORMAL_UNINSTALL) + @list='$(dunhandler_SCRIPTS)'; test -n "$(dunhandlerdir)" || exit 0; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 's,.*/,,;$(transform)'`; \ + dir='$(DESTDIR)$(dunhandlerdir)'; $(am__uninstall_files_from_dir) + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-servicemenuDATA: $(servicemenu_DATA) + @$(NORMAL_INSTALL) + @list='$(servicemenu_DATA)'; test -n "$(servicemenudir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(servicemenudir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(servicemenudir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(servicemenudir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(servicemenudir)" || exit $$?; \ + done + +uninstall-servicemenuDATA: + @$(NORMAL_UNINSTALL) + @list='$(servicemenu_DATA)'; test -n "$(servicemenudir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(servicemenudir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(SCRIPTS) $(DATA) +installdirs: + for dir in "$(DESTDIR)$(dunhandlerdir)" "$(DESTDIR)$(servicemenudir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +#>- clean: clean-am +#>+ 1 +clean: kde-rpo-clean clean-am + +#>- clean-am: clean-generic clean-libtool mostlyclean-am +#>+ 1 +clean-am: clean-bcheck clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-dunhandlerSCRIPTS install-servicemenuDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-dunhandlerSCRIPTS uninstall-servicemenuDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dunhandlerSCRIPTS install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am \ + install-servicemenuDATA install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am uninstall-dunhandlerSCRIPTS \ + uninstall-servicemenuDATA + +.PRECIOUS: Makefile + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: + +#>+ 2 +KDE_DIST=dunhandler dunhandler.desktop.in configure.in.in Makefile.in Makefile.am + +#>+ 2 +docs-am: + +#>+ 15 +force-reedit: + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign kdebluetooth/kdebluetooth-common/dunhandler/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign kdebluetooth/kdebluetooth-common/dunhandler/Makefile + cd $(top_srcdir) && perl admin/am_edit kdebluetooth/kdebluetooth-common/dunhandler/Makefile.in + + +#>+ 21 +clean-bcheck: + rm -f *.bchecktest.cc *.bchecktest.cc.class a.out + +bcheck: bcheck-am + +bcheck-am: + @for i in ; do \ + if test $(srcdir)/$$i -nt $$i.bchecktest.cc; then \ + echo "int main() {return 0;}" > $$i.bchecktest.cc ; \ + echo "#include \"$$i\"" >> $$i.bchecktest.cc ; \ + echo "$$i"; \ + if ! $(CXX) $(DEFS) -I. -I$(srcdir) -I$(top_builddir) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(KDE_CXXFLAGS) --dump-class-hierarchy -c $$i.bchecktest.cc; then \ + rm -f $$i.bchecktest.cc; exit 1; \ + fi ; \ + echo "" >> $$i.bchecktest.cc.class; \ + perl $(top_srcdir)/admin/bcheck.pl $$i.bchecktest.cc.class || { rm -f $$i.bchecktest.cc; exit 1; }; \ + rm -f a.out; \ + fi ; \ + done + + +#>+ 3 +final: + $(MAKE) all-am + +#>+ 3 +final-install: + $(MAKE) install-am + +#>+ 3 +no-final: + $(MAKE) all-am + +#>+ 3 +no-final-install: + $(MAKE) install-am + +#>+ 3 +kde-rpo-clean: + -rm -f *.rpo + +#>+ 3 +nmcheck: +nmcheck-am: nmcheck diff --git a/src/tdebluez-common/dunhandler/configure.in.in b/src/tdebluez-common/dunhandler/configure.in.in new file mode 100644 index 0000000..505e06a --- /dev/null +++ b/src/tdebluez-common/dunhandler/configure.in.in @@ -0,0 +1,4 @@ +dnl AC_OUTPUT(kdebluetooth/kdebluetooth-common/dunhandler/dunhandler.desktop) +KDE_EXPAND_MAKEVAR(dunhandler_dir, kde_datadir) +AC_SUBST(dunhandler_dir) + diff --git a/src/tdebluez-common/dunhandler/dunhandler b/src/tdebluez-common/dunhandler/dunhandler new file mode 100644 index 0000000..ab7aa83 --- /dev/null +++ b/src/tdebluez-common/dunhandler/dunhandler @@ -0,0 +1,70 @@ +#!/bin/sh +#/*************************************************************************** +# dunhandler - a script for tdeio_sdp +# ------------------- +# begin : Mon March 29 2004 +# copyright : (C) 2004 by Simone Gotti +# email : [email protected] +# ***************************************************************************/ +# +#/*************************************************************************** +# * * +# * This program is free software; you can redistribute it and/or modify * +# * it under the terms of the GNU General Public License as published by * +# * the Free Software Foundation; either version 2 of the License, or * +# * (at your option) any later version. * +# * * +# ***************************************************************************/ + + + +# get the btaddress and the rfcomm channel from the command line +BTADDR=$(echo $1 | cut -d'/' -f3 | cut -d'[' -f2 | cut -d']' -f1) +PARAMS=$(echo $1 | cut -d'?' -f2 ) + +OLDIFS=$IFS +IFS='&' +for i in $PARAMS; do + if test $(echo $i | cut -d'=' -f1) = "rfcommchannel"; then + RFCOMM_CHANNEL=$(echo $i | cut -d'=' -f2) + fi +done; +IFS=$OLDIFS + +RFCOMM_SHOW_OUT=$(rfcomm show) + +# Check if the channel is already binded +BINDED_CHANNEL=$(echo $RFCOMM_SHOW_OUT | grep -i $BTADDR | grep -i " "$RFCOMM_CHANNEL" " | cut -d' ' -f1 | cut -d':' -f1) + +if test "x"$BINDED_CHANNEL != "x"; then + MESSAGE1="A bind between the bluetooth device (using the dial-up-networking profile) and /dev/rfcomm$DEV_NUMBER already exists. You can use any connection program (kppp, pppd script etc...) using /dev/rfcomm$DEV_NUMBER like the modem device" + + kdialog --msgbox "$MESSAGE1" +else + +# Find the first unbinded /dev/rfcommX +DEV_NUMBER=0 +while test "x"$(echo $RFCOMM_SHOW_OUT | grep "rfcomm"$DEV_NUMBER":"| cut -d' ' -f1 ) != "x"; do + DEV_NUMBER=$[$DEV_NUMBER+1] + if test $DEV_NUMBER -gt 255; then break; fi; +done; + + +# do the bind +echo "doing: rfcomm bind $DEV_NUMBER $BTADDR $RFCOMM_CHANNEL" + +if test -e /def/rfcomm$DEV_NUMBER; then +EXIT_CODE=$(tdesu -f/dev/rfcomm$DEV_NUMBER -c "rfcomm bind $DEV_NUMBER $BTADDR $RFCOMM_CHANNEL") +else +EXIT_CODE=$(tdesu -c "rfcomm bind $DEV_NUMBER $BTADDR $RFCOMM_CHANNEL") +fi + +echo $EXIT_CODE + +MESSAGE1="Created a bind between the bluetooth device (using the dial-up-networking profile) and /dev/rfcomm$DEV_NUMBER. You can use any connection program (kppp, pppd script etc...) using /dev/rfcomm$DEV_NUMBER like the modem device" + +kdialog --msgbox "$MESSAGE1" + +fi; + + diff --git a/src/tdebluez-common/dunhandler/dunhandler.desktop.in b/src/tdebluez-common/dunhandler/dunhandler.desktop.in new file mode 100644 index 0000000..057ba2c --- /dev/null +++ b/src/tdebluez-common/dunhandler/dunhandler.desktop.in @@ -0,0 +1,10 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=@dunhandler_dir@/kdebluetooth/dunhandler/dunhandler +Exec=dunhandler %u +Icon=network_local +Type=Application +Comment=An OBEX Object Push client for the KdeBluetooth Framework +Comment[et]=OBEX objekti saatmise klient KdeBluetooth raamistikule +MimeType=bluetooth/dun-profile; +Hidden=true diff --git a/src/tdebluez-common/faxhandler/Makefile.am b/src/tdebluez-common/faxhandler/Makefile.am new file mode 100644 index 0000000..61db809 --- /dev/null +++ b/src/tdebluez-common/faxhandler/Makefile.am @@ -0,0 +1,7 @@ + +dunhandlerdir = $(kde_datadir)/kdebluetooth/faxhandler +dunhandler_SCRIPTS=faxhandler kbtfax + +# The desktop file +servicemenudir = $(kde_appsdir)/Utilities +servicemenu_DATA = faxhandler.desktop diff --git a/src/tdebluez-common/faxhandler/Makefile.in b/src/tdebluez-common/faxhandler/Makefile.in new file mode 100644 index 0000000..f4e7952 --- /dev/null +++ b/src/tdebluez-common/faxhandler/Makefile.in @@ -0,0 +1,804 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# KDE tags expanded automatically by am_edit - $Revision$ +# @configure_input@ + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + + +VPATH = @srcdir@ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +target_triplet = @target@ +subdir = kdebluetooth/kdebluetooth-common/faxhandler +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/admin/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = faxhandler.desktop +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(dunhandlerdir)" \ + "$(DESTDIR)$(servicemenudir)" +SCRIPTS = $(dunhandler_SCRIPTS) +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +DATA = $(servicemenu_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +am__DIST_COMMON = $(srcdir)/Makefile.in \ + $(srcdir)/faxhandler.desktop.in \ + $(top_srcdir)/admin/mkinstalldirs +#>- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +#>+ 1 +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) $(KDE_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +ARTSCCONFIG = @ARTSCCONFIG@ +AUTOCONF = @AUTOCONF@ +AUTODIRS = @AUTODIRS@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BLUETOOTH_CFLAGS = @BLUETOOTH_CFLAGS@ +BLUETOOTH_LIBS = @BLUETOOTH_LIBS@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONF_FILES = @CONF_FILES@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DBUSTQT_CFLAGS = @DBUSTQT_CFLAGS@ +DBUSTQT_LIBS = @DBUSTQT_LIBS@ +DBUS_CFLAGS = @DBUS_CFLAGS@ +DBUS_LIBS = @DBUS_LIBS@ +DCOPIDL = @DCOPIDL@ +DCOPIDL2CPP = @DCOPIDL2CPP@ +DCOPIDLNG = @DCOPIDLNG@ +DCOP_DEPENDENCIES = @DCOP_DEPENDENCIES@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DOXYGEN = @DOXYGEN@ +DOXYGEN_PROJECT_NAME = @DOXYGEN_PROJECT_NAME@ +DOXYGEN_PROJECT_NUMBER = @DOXYGEN_PROJECT_NUMBER@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENABLE_PERMISSIVE_FLAG = @ENABLE_PERMISSIVE_FLAG@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +FRAMEWORK_COREAUDIO = @FRAMEWORK_COREAUDIO@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +HAVE_GCC_VISIBILITY = @HAVE_GCC_VISIBILITY@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +KBTOBEXSRV_BINDIR = @KBTOBEXSRV_BINDIR@ +KCFG_DEPENDENCIES = @KCFG_DEPENDENCIES@ +KCONFIG_COMPILER = @KCONFIG_COMPILER@ +KDEBLUETOOTH_VERSION = @KDEBLUETOOTH_VERSION@ +KDECONFIG = @KDECONFIG@ +KDE_CHECK_PLUGIN = @KDE_CHECK_PLUGIN@ +KDE_EXTRA_RPATH = @KDE_EXTRA_RPATH@ +KDE_HAS_DOXYGEN = @KDE_HAS_DOXYGEN@ +KDE_HAVE_DOT = @KDE_HAVE_DOT@ +KDE_INCLUDES = @KDE_INCLUDES@ +KDE_LDFLAGS = @KDE_LDFLAGS@ +KDE_MT_LDFLAGS = @KDE_MT_LDFLAGS@ +KDE_MT_LIBS = @KDE_MT_LIBS@ +KDE_NO_UNDEFINED = @KDE_NO_UNDEFINED@ +KDE_PLUGIN = @KDE_PLUGIN@ +KDE_RPATH = @KDE_RPATH@ +KDE_USE_CLOSURE_FALSE = @KDE_USE_CLOSURE_FALSE@ +KDE_USE_CLOSURE_TRUE = @KDE_USE_CLOSURE_TRUE@ +KDE_USE_FINAL_FALSE = @KDE_USE_FINAL_FALSE@ +KDE_USE_FINAL_TRUE = @KDE_USE_FINAL_TRUE@ +KDE_USE_FPIE = @KDE_USE_FPIE@ +KDE_USE_NMCHECK_FALSE = @KDE_USE_NMCHECK_FALSE@ +KDE_USE_NMCHECK_TRUE = @KDE_USE_NMCHECK_TRUE@ +KDE_USE_PIE = @KDE_USE_PIE@ +KDE_XSL_STYLESHEET = @KDE_XSL_STYLESHEET@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LDFLAGS_AS_NEEDED = @LDFLAGS_AS_NEEDED@ +LDFLAGS_NEW_DTAGS = @LDFLAGS_NEW_DTAGS@ +LIBCOMPAT = @LIBCOMPAT@ +LIBCRYPT = @LIBCRYPT@ +LIBDL = @LIBDL@ +LIBJPEG = @LIBJPEG@ +LIBOBJS = @LIBOBJS@ +LIBPNG = @LIBPNG@ +LIBPTHREAD = @LIBPTHREAD@ +LIBRESOLV = @LIBRESOLV@ +LIBS = @LIBS@ +LIBSM = @LIBSM@ +LIBSOCKET = @LIBSOCKET@ +LIBTOOL = @LIBTOOL@ +LIBTQT_LDFLAGS = @LIBTQT_LDFLAGS@ +LIBUCB = @LIBUCB@ +LIBUTIL = @LIBUTIL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIBZ = @LIBZ@ +LIB_ARTS = @LIB_ARTS@ +LIB_BLUETOOTH = @LIB_BLUETOOTH@ +LIB_KAB = @LIB_KAB@ +LIB_KDED = @LIB_KDED@ +LIB_KFM = @LIB_KFM@ +LIB_KJS = @LIB_KJS@ +LIB_LOCKDEV = @LIB_LOCKDEV@ +LIB_POLL = @LIB_POLL@ +LIB_QPE = @LIB_QPE@ +LIB_QT = @LIB_QT@ +LIB_QUI = @LIB_QUI@ +LIB_SDP = @LIB_SDP@ +LIB_SMB = @LIB_SMB@ +LIB_TDEABC = @LIB_TDEABC@ +LIB_TDECORE = @LIB_TDECORE@ +LIB_TDEDNSSD = @LIB_TDEDNSSD@ +LIB_TDEFILE = @LIB_TDEFILE@ +LIB_TDEHTML = @LIB_TDEHTML@ +LIB_TDEIMPROXY = @LIB_TDEIMPROXY@ +LIB_TDEIO = @LIB_TDEIO@ +LIB_TDENEWSTUFF = @LIB_TDENEWSTUFF@ +LIB_TDEPARTS = @LIB_TDEPARTS@ +LIB_TDEPIM = @LIB_TDEPIM@ +LIB_TDEPRINT = @LIB_TDEPRINT@ +LIB_TDESPELL = @LIB_TDESPELL@ +LIB_TDESYCOCA = @LIB_TDESYCOCA@ +LIB_TDEUI = @LIB_TDEUI@ +LIB_TDEUNITTEST = @LIB_TDEUNITTEST@ +LIB_TDEUTILS = @LIB_TDEUTILS@ +LIB_X11 = @LIB_X11@ +LIB_XEXT = @LIB_XEXT@ +LIB_XRENDER = @LIB_XRENDER@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MAKETDEWIDGETS = @MAKETDEWIDGETS@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MCOPIDL = @MCOPIDL@ +MEINPROC = @MEINPROC@ +MKDIR_P = @MKDIR_P@ +MOC = @MOC@ +MSGFMT = @MSGFMT@ +NM = @NM@ +NMEDIT = @NMEDIT@ +NOOPT_CFLAGS = @NOOPT_CFLAGS@ +NOOPT_CXXFLAGS = @NOOPT_CXXFLAGS@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OPENOBEX_CFLAGS = @OPENOBEX_CFLAGS@ +OPENOBEX_LIBS = @OPENOBEX_LIBS@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PERL = @PERL@ +PKG_CONFIG = @PKG_CONFIG@ +QTDOCDIR = @QTDOCDIR@ +QTE_NORTTI = @QTE_NORTTI@ +QT_INCLUDES = @QT_INCLUDES@ +QT_LDFLAGS = @QT_LDFLAGS@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +TOPSUBDIRS = @TOPSUBDIRS@ +TQTDCOPIDL = @TQTDCOPIDL@ +TQTDCOPIDL2CPP = @TQTDCOPIDL2CPP@ +TQTDCOPIDLNG = @TQTDCOPIDLNG@ +TQTMCOPIDL = @TQTMCOPIDL@ +TQTMOC = @TQTMOC@ +UIC = @UIC@ +UIC_TR = @UIC_TR@ +USER_INCLUDES = @USER_INCLUDES@ +USER_LDFLAGS = @USER_LDFLAGS@ +USE_EXCEPTIONS = @USE_EXCEPTIONS@ +USE_RTTI = @USE_RTTI@ +USE_THREADS = @USE_THREADS@ +VERSION = @VERSION@ +WOVERLOADED_VIRTUAL = @WOVERLOADED_VIRTUAL@ +XGETTEXT = @XGETTEXT@ +XMKMF = @XMKMF@ +XMLLINT = @XMLLINT@ +X_EXTRA_LIBS = @X_EXTRA_LIBS@ +X_INCLUDES = @X_INCLUDES@ +X_LDFLAGS = @X_LDFLAGS@ +X_PRE_LIBS = @X_PRE_LIBS@ +X_RPATH = @X_RPATH@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +all_includes = @all_includes@ +all_libraries = @all_libraries@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dunhandler_dir = @dunhandler_dir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +faxhandler_dir = @faxhandler_dir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +kde_appsdir = @kde_appsdir@ +kde_bindir = @kde_bindir@ +kde_confdir = @kde_confdir@ +kde_datadir = @kde_datadir@ +kde_htmldir = @kde_htmldir@ +kde_icondir = @kde_icondir@ +kde_includes = @kde_includes@ +kde_kcfgdir = @kde_kcfgdir@ +kde_libraries = @kde_libraries@ +kde_libs_htmldir = @kde_libs_htmldir@ +kde_libs_prefix = @kde_libs_prefix@ +kde_locale = @kde_locale@ +kde_mimedir = @kde_mimedir@ +kde_moduledir = @kde_moduledir@ +kde_qtver = @kde_qtver@ +kde_servicesdir = @kde_servicesdir@ +kde_servicetypesdir = @kde_servicetypesdir@ +kde_sounddir = @kde_sounddir@ +kde_styledir = @kde_styledir@ +kde_templatesdir = @kde_templatesdir@ +kde_wallpaperdir = @kde_wallpaperdir@ +kde_widgetdir = @kde_widgetdir@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +qt_includes = @qt_includes@ +qt_libraries = @qt_libraries@ +runstatedir = @runstatedir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target = @target@ +target_alias = @target_alias@ +target_cpu = @target_cpu@ +target_os = @target_os@ +target_vendor = @target_vendor@ +tdeinitdir = @tdeinitdir@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +x_includes = @x_includes@ +x_libraries = @x_libraries@ +xdg_appsdir = @xdg_appsdir@ +xdg_directorydir = @xdg_directorydir@ +xdg_menudir = @xdg_menudir@ +dunhandlerdir = $(kde_datadir)/kdebluetooth/faxhandler +dunhandler_SCRIPTS = faxhandler kbtfax + +# The desktop file +servicemenudir = $(kde_appsdir)/Utilities +servicemenu_DATA = faxhandler.desktop +#>- all: all-am +#>+ 1 +all: docs-am all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) +#>- @for dep in $?; do \ +#>- case '$(am__configure_deps)' in \ +#>- *$$dep*) \ +#>- ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ +#>- && { if test -f $@; then exit 0; else break; fi; }; \ +#>- exit 1;; \ +#>- esac; \ +#>- done; \ +#>- echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign kdebluetooth/kdebluetooth-common/faxhandler/Makefile'; \ +#>- $(am__cd) $(top_srcdir) && \ +#>- $(AUTOMAKE) --foreign kdebluetooth/kdebluetooth-common/faxhandler/Makefile +#>+ 12 + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign kdebluetooth/kdebluetooth-common/faxhandler/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign kdebluetooth/kdebluetooth-common/faxhandler/Makefile + cd $(top_srcdir) && perl admin/am_edit kdebluetooth/kdebluetooth-common/faxhandler/Makefile.in +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +faxhandler.desktop: $(top_builddir)/config.status $(srcdir)/faxhandler.desktop.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +install-dunhandlerSCRIPTS: $(dunhandler_SCRIPTS) + @$(NORMAL_INSTALL) + @list='$(dunhandler_SCRIPTS)'; test -n "$(dunhandlerdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(dunhandlerdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(dunhandlerdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n' \ + -e 'h;s|.*|.|' \ + -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) { files[d] = files[d] " " $$1; \ + if (++n[d] == $(am__install_max)) { \ + print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ + else { print "f", d "/" $$4, $$1 } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(dunhandlerdir)$$dir'"; \ + $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(dunhandlerdir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-dunhandlerSCRIPTS: + @$(NORMAL_UNINSTALL) + @list='$(dunhandler_SCRIPTS)'; test -n "$(dunhandlerdir)" || exit 0; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 's,.*/,,;$(transform)'`; \ + dir='$(DESTDIR)$(dunhandlerdir)'; $(am__uninstall_files_from_dir) + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-servicemenuDATA: $(servicemenu_DATA) + @$(NORMAL_INSTALL) + @list='$(servicemenu_DATA)'; test -n "$(servicemenudir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(servicemenudir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(servicemenudir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(servicemenudir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(servicemenudir)" || exit $$?; \ + done + +uninstall-servicemenuDATA: + @$(NORMAL_UNINSTALL) + @list='$(servicemenu_DATA)'; test -n "$(servicemenudir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(servicemenudir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(SCRIPTS) $(DATA) +installdirs: + for dir in "$(DESTDIR)$(dunhandlerdir)" "$(DESTDIR)$(servicemenudir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +#>- clean: clean-am +#>+ 1 +clean: kde-rpo-clean clean-am + +#>- clean-am: clean-generic clean-libtool mostlyclean-am +#>+ 1 +clean-am: clean-bcheck clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-dunhandlerSCRIPTS install-servicemenuDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-dunhandlerSCRIPTS uninstall-servicemenuDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dunhandlerSCRIPTS install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am \ + install-servicemenuDATA install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am uninstall-dunhandlerSCRIPTS \ + uninstall-servicemenuDATA + +.PRECIOUS: Makefile + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: + +#>+ 2 +KDE_DIST=faxhandler kbtfax configure.in.in Makefile.am faxhandler.desktop.in Makefile.in + +#>+ 2 +docs-am: + +#>+ 15 +force-reedit: + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign kdebluetooth/kdebluetooth-common/faxhandler/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign kdebluetooth/kdebluetooth-common/faxhandler/Makefile + cd $(top_srcdir) && perl admin/am_edit kdebluetooth/kdebluetooth-common/faxhandler/Makefile.in + + +#>+ 21 +clean-bcheck: + rm -f *.bchecktest.cc *.bchecktest.cc.class a.out + +bcheck: bcheck-am + +bcheck-am: + @for i in ; do \ + if test $(srcdir)/$$i -nt $$i.bchecktest.cc; then \ + echo "int main() {return 0;}" > $$i.bchecktest.cc ; \ + echo "#include \"$$i\"" >> $$i.bchecktest.cc ; \ + echo "$$i"; \ + if ! $(CXX) $(DEFS) -I. -I$(srcdir) -I$(top_builddir) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(KDE_CXXFLAGS) --dump-class-hierarchy -c $$i.bchecktest.cc; then \ + rm -f $$i.bchecktest.cc; exit 1; \ + fi ; \ + echo "" >> $$i.bchecktest.cc.class; \ + perl $(top_srcdir)/admin/bcheck.pl $$i.bchecktest.cc.class || { rm -f $$i.bchecktest.cc; exit 1; }; \ + rm -f a.out; \ + fi ; \ + done + + +#>+ 3 +final: + $(MAKE) all-am + +#>+ 3 +final-install: + $(MAKE) install-am + +#>+ 3 +no-final: + $(MAKE) all-am + +#>+ 3 +no-final-install: + $(MAKE) install-am + +#>+ 3 +kde-rpo-clean: + -rm -f *.rpo + +#>+ 3 +nmcheck-am: nmcheck +nmcheck: diff --git a/src/tdebluez-common/faxhandler/configure.in.in b/src/tdebluez-common/faxhandler/configure.in.in new file mode 100644 index 0000000..f6b5479 --- /dev/null +++ b/src/tdebluez-common/faxhandler/configure.in.in @@ -0,0 +1,4 @@ +dnl AC_OUTPUT(kdebluetooth/kdebluetooth-common/faxhandler/faxhandler.desktop) +KDE_EXPAND_MAKEVAR(faxhandler_dir, kde_datadir) +AC_SUBST(faxhandler_dir) + diff --git a/src/tdebluez-common/faxhandler/faxhandler b/src/tdebluez-common/faxhandler/faxhandler new file mode 100755 index 0000000..6b757b5 --- /dev/null +++ b/src/tdebluez-common/faxhandler/faxhandler @@ -0,0 +1,10 @@ +#!/bin/sh + +# copyright 2004 by Fred Schaettgen <[email protected]> + + +MESSAGE="To send faxes you can set up tdeprintfax to use the kbtfax script, which comes with kdebluetooth. Do you want to read more about that?" + +if $(kdialog --yesno "$MESSAGE" --title "KDE Bluetooth Framework") ; then + konqueror help:/kdebluetooth/otherprofiles.html#fax +fi diff --git a/src/tdebluez-common/faxhandler/faxhandler.desktop.in b/src/tdebluez-common/faxhandler/faxhandler.desktop.in new file mode 100644 index 0000000..7b8707d --- /dev/null +++ b/src/tdebluez-common/faxhandler/faxhandler.desktop.in @@ -0,0 +1,9 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=@faxhandler_dir@/kdebluetooth/faxhandler/faxhandler +Exec=faxhandler %u +Icon=network_local +Type=Application +Comment=A handler for the fax profile +MimeType=bluetooth/fax-profile; +Hidden=true diff --git a/src/tdebluez-common/faxhandler/kbtfax b/src/tdebluez-common/faxhandler/kbtfax new file mode 100755 index 0000000..577c999 --- /dev/null +++ b/src/tdebluez-common/faxhandler/kbtfax @@ -0,0 +1,105 @@ +#!/bin/bash + +# A wrapper for efax to be used together with a bluetooth mobile phone +# and tdeprintfax to send faxes via bluetooth from any kde application. +# +# This script does basically the same as the "efax" command, which is +# already configured in tdeprintfax. +# The difference is that kbtfax will ask you which bluetooth device +# you want to connect to and then sets up a virtual serial device +# with the rfcomm utility. Then the fax command is started and +# finally the rfcomm binding is released. + +# Use the following fax command when printing (without the 'FAXCMDLINE=') +FAXCMDLINE="kbtfax NAME=%user PAGE=%page FROM=%from send %res %number %files" +# This is the same as for eFax, but without the DEV parameter + +# If your device does not support the fax profile +# and works of the serial port profile instead, +# you will have to change this script to use +# SPP instead of FAX for the search UUID. +# Default: SEARCH_UUID="FAX" +SEARCH_UUID="FAX" + +# This will list all possibly relevant services, including fax, +# dialup and serial port profile. It will also list many +# unrelated services like obex push etc., but it should be +# easy to see what's the right choice. +#SEARCH_UUID="0x0003" + +# If you don't want to use the default rfcomm +# device (/dev/rfcomm1) you can specify another one here. +# Default: RFCOMM_DEVICE=1 +RFCOMM_DEVICE=1 + +# ----- End of options ----- + +BIND_ERROR=10 +FAX_ERROR=11 +RELEASE_ERROR=12 +RFCOMM_PERM_ERROR=13 +DEV_ERROR=14 + +if [ "x$1" == "x" ] ; then + + kdialog --inputbox "Use this command for \"Other fax system\" in tdeprintfax:" "$FAXCMDLINE" + + +elif [ "x$KBTFAX_ROOTMODE" != "xYES" ] ; then + +# The script was not called with the special +# argument RFCOMM, so the script was called +# by the user/kprintfax + +# We search for a service now + SEARCH_RESULT=( $(kbtsearch -u $SEARCH_UUID --title "Select fax service") ) + SEARCH_STATUS=$? + echo "Status: $SEARCH_STATUS" + + if [ $SEARCH_STATUS -eq 0 ] ; then + +# The user has selected a service + export ADDRESS=${SEARCH_RESULT[0]} + export CHANNEL=${SEARCH_RESULT[1]} + export KBTFAX_ROOTMODE="YES" + echo "Address=$ADDRESS Channel=$CHANNEL" + tdesu -t -- $0 "$@" + RET=$? + if [ $RET == $BIND_ERROR ] ; then + kdialog --error "Error binding rfcomm device." + elif [ $RET == $FAX_ERROR ] ; then + kdialog --error "Failed to send the fax." + elif [ $RET == $RELEASE_ERROR ] ; then + kdialog --error "Could not release rfcomm device." + elif [ $ERT == 0 ] ; then + kdialog --msgbox "Fax sent." + elif [ $RET == $DEV_ERROR ] ; then + kdialog --error "The rfcomm device /dev/rfcomm$RFCOMM_DEVICE did \ +not exist or had wrong permissions. Please check if the rfcomm utility is wworking correctly." + else + kdialog --error "Unknown error in kbtfax: Root mode returned with code $RET" + fi + exit $RET + else + +# The search dialog was aborted + kdialog --msgbox "Sending fax was aborted." + fi +else + +# Recursive call. We should be running as root +# now, so we can set up rfcomm and call fax + echo "Binding /dev/rfcomm$RFCOMM_DEVICE to $ADDRESS, channel $CHANNEL" + rfcomm bind $RFCOMM_DEVICE $ADDRESS $CHANNEL || exit $BIND_ERROR +# Rfcomm (or is it udev?) seems to need some time +# to set up the device + sleep 5 + [ -w /dev/rfcomm$RFCOMM_DEVICE -a -r /dev/rfcomm$RFCOMM_DEVICE ] || exit $DEV_ERROR + fax "DEV=rfcomm$RFCOMM_DEVICE" "$@" + FAXRET=$? + echo -n "Releasing rfcomm device... " + rfcomm release $ADDRESS || exit $RELEASE_ERROR + [ $FAXRET -eq 0 ] || exit $FAX_ERROR + echo "done." + kdialog --msgbox "kbtfax script root mode done" +fi diff --git a/src/tdebluez-common/icons/CMakeLists.txt b/src/tdebluez-common/icons/CMakeLists.txt new file mode 100644 index 0000000..1978ba9 --- /dev/null +++ b/src/tdebluez-common/icons/CMakeLists.txt @@ -0,0 +1,14 @@ +################################################# +# +# (C) 2018 Emanoil Kotsev +# deloptes (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +##### install icons in /opt/trinity/share/icons ############### +tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/tdebluez/icons ) + diff --git a/src/tdebluez-common/icons/bluetooth.svg b/src/tdebluez-common/icons/bluetooth.svg new file mode 100644 index 0000000..de8078d --- /dev/null +++ b/src/tdebluez-common/icons/bluetooth.svg @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + viewBox="0 0 976 976" + version="1.1" + id="svg6" + sodipodi:docname="bluetooth.svg" + inkscape:version="0.92.4 (5da689c313, 2019-01-14)" + width="976" + height="976"> + <metadata + id="metadata12"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs10" /> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1887" + inkscape:window-height="873" + id="namedview8" + showgrid="false" + inkscape:zoom="0.48360656" + inkscape:cx="136.78185" + inkscape:cy="443.014" + inkscape:window-x="25" + inkscape:window-y="0" + inkscape:window-maximized="0" + inkscape:current-layer="svg6" /> + <rect + y="2.0677919" + x="163.86441" + style="fill:#0a3d91" + ry="291" + height="976" + width="640" + id="rect2" /> + <path + d="M 262.34658,304.21164 676.45662,643.63499 476.86916,840.43425 V 137.264 L 676.45662,325.2183 262.34658,655.79674" + id="path4" + inkscape:connector-curvature="0" + style="fill:none;stroke:#ffffff;stroke-width:64.93599701" /> + <flowRoot + xml:space="preserve" + id="flowRoot18" + style="font-style:normal;font-weight:normal;font-size:12px;line-height:1.25;font-family:Arial;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + transform="translate(72.881352,217.11865)"><flowRegion + id="flowRegion20"><rect + id="rect22" + width="31.016949" + height="29.983051" + x="68.754234" + y="-300.86441" /></flowRegion><flowPara + id="flowPara24" /></flowRoot> <flowRoot + xml:space="preserve" + id="flowRoot26" + style="font-style:normal;font-weight:normal;font-size:12px;line-height:1.25;font-family:Arial;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + transform="translate(72.881352,217.11865)"><flowRegion + id="flowRegion28"><rect + id="rect30" + width="11.372881" + height="12.406779" + x="-48.59322" + y="-301.89832" /></flowRegion><flowPara + id="flowPara32" /></flowRoot></svg> diff --git a/src/tdebluez-common/icons/hi128-app-bluetooth.png b/src/tdebluez-common/icons/hi128-app-bluetooth.png Binary files differnew file mode 100644 index 0000000..c8479fb --- /dev/null +++ b/src/tdebluez-common/icons/hi128-app-bluetooth.png diff --git a/src/tdebluez-common/icons/hi128-app-tdebluez.png b/src/tdebluez-common/icons/hi128-app-tdebluez.png Binary files differnew file mode 100644 index 0000000..969a909 --- /dev/null +++ b/src/tdebluez-common/icons/hi128-app-tdebluez.png diff --git a/src/tdebluez-common/icons/hi16-app-bluetooth.png b/src/tdebluez-common/icons/hi16-app-bluetooth.png Binary files differnew file mode 100644 index 0000000..e00780b --- /dev/null +++ b/src/tdebluez-common/icons/hi16-app-bluetooth.png diff --git a/src/tdebluez-common/icons/hi16-app-tdebluez.png b/src/tdebluez-common/icons/hi16-app-tdebluez.png Binary files differnew file mode 100644 index 0000000..614b79e --- /dev/null +++ b/src/tdebluez-common/icons/hi16-app-tdebluez.png diff --git a/src/tdebluez-common/icons/hi22-app-bluetooth.png b/src/tdebluez-common/icons/hi22-app-bluetooth.png Binary files differnew file mode 100644 index 0000000..e08a297 --- /dev/null +++ b/src/tdebluez-common/icons/hi22-app-bluetooth.png diff --git a/src/tdebluez-common/icons/hi22-app-media-playback-pause.png b/src/tdebluez-common/icons/hi22-app-media-playback-pause.png Binary files differnew file mode 100644 index 0000000..dc90c8b --- /dev/null +++ b/src/tdebluez-common/icons/hi22-app-media-playback-pause.png diff --git a/src/tdebluez-common/icons/hi22-app-media-playback-start.png b/src/tdebluez-common/icons/hi22-app-media-playback-start.png Binary files differnew file mode 100644 index 0000000..8ea1a5a --- /dev/null +++ b/src/tdebluez-common/icons/hi22-app-media-playback-start.png diff --git a/src/tdebluez-common/icons/hi22-app-media-playback-stop.png b/src/tdebluez-common/icons/hi22-app-media-playback-stop.png Binary files differnew file mode 100644 index 0000000..3156247 --- /dev/null +++ b/src/tdebluez-common/icons/hi22-app-media-playback-stop.png diff --git a/src/tdebluez-common/icons/hi22-app-media-seek-backward.png b/src/tdebluez-common/icons/hi22-app-media-seek-backward.png Binary files differnew file mode 100644 index 0000000..8b4781a --- /dev/null +++ b/src/tdebluez-common/icons/hi22-app-media-seek-backward.png diff --git a/src/tdebluez-common/icons/hi22-app-media-seek-forward.png b/src/tdebluez-common/icons/hi22-app-media-seek-forward.png Binary files differnew file mode 100644 index 0000000..054b4cb --- /dev/null +++ b/src/tdebluez-common/icons/hi22-app-media-seek-forward.png diff --git a/src/tdebluez-common/icons/hi22-app-media-skip-backward.png b/src/tdebluez-common/icons/hi22-app-media-skip-backward.png Binary files differnew file mode 100644 index 0000000..ad460b4 --- /dev/null +++ b/src/tdebluez-common/icons/hi22-app-media-skip-backward.png diff --git a/src/tdebluez-common/icons/hi22-app-media-skip-forward.png b/src/tdebluez-common/icons/hi22-app-media-skip-forward.png Binary files differnew file mode 100644 index 0000000..82c5b49 --- /dev/null +++ b/src/tdebluez-common/icons/hi22-app-media-skip-forward.png diff --git a/src/tdebluez-common/icons/hi22-app-tdebluelock.png b/src/tdebluez-common/icons/hi22-app-tdebluelock.png Binary files differnew file mode 100644 index 0000000..b380ab8 --- /dev/null +++ b/src/tdebluez-common/icons/hi22-app-tdebluelock.png diff --git a/src/tdebluez-common/icons/hi22-app-tdebluez.png b/src/tdebluez-common/icons/hi22-app-tdebluez.png Binary files differnew file mode 100644 index 0000000..cb9d886 --- /dev/null +++ b/src/tdebluez-common/icons/hi22-app-tdebluez.png diff --git a/src/tdebluez-common/icons/hi32-app-bluetooth.png b/src/tdebluez-common/icons/hi32-app-bluetooth.png Binary files differnew file mode 100644 index 0000000..6ee36fd --- /dev/null +++ b/src/tdebluez-common/icons/hi32-app-bluetooth.png diff --git a/src/tdebluez-common/icons/hi32-app-tdebluelock.png b/src/tdebluez-common/icons/hi32-app-tdebluelock.png Binary files differnew file mode 100644 index 0000000..066a496 --- /dev/null +++ b/src/tdebluez-common/icons/hi32-app-tdebluelock.png diff --git a/src/tdebluez-common/icons/hi32-app-tdebluez.png b/src/tdebluez-common/icons/hi32-app-tdebluez.png Binary files differnew file mode 100644 index 0000000..20974ff --- /dev/null +++ b/src/tdebluez-common/icons/hi32-app-tdebluez.png diff --git a/src/tdebluez-common/icons/hi48-app-bluetooth.png b/src/tdebluez-common/icons/hi48-app-bluetooth.png Binary files differnew file mode 100644 index 0000000..5ea294a --- /dev/null +++ b/src/tdebluez-common/icons/hi48-app-bluetooth.png diff --git a/src/tdebluez-common/icons/hi48-app-tdebluez.png b/src/tdebluez-common/icons/hi48-app-tdebluez.png Binary files differnew file mode 100644 index 0000000..863ce50 --- /dev/null +++ b/src/tdebluez-common/icons/hi48-app-tdebluez.png diff --git a/src/tdebluez-common/icons/hi64-app-bluetooth.png b/src/tdebluez-common/icons/hi64-app-bluetooth.png Binary files differnew file mode 100644 index 0000000..47aa24f --- /dev/null +++ b/src/tdebluez-common/icons/hi64-app-bluetooth.png diff --git a/src/tdebluez-common/icons/hi64-app-tdebluez.png b/src/tdebluez-common/icons/hi64-app-tdebluez.png Binary files differnew file mode 100644 index 0000000..03f6dcb --- /dev/null +++ b/src/tdebluez-common/icons/hi64-app-tdebluez.png diff --git a/src/tdebluez-common/icons/hisc-app-tdebluez.svgz b/src/tdebluez-common/icons/hisc-app-tdebluez.svgz Binary files differnew file mode 100644 index 0000000..413e74f --- /dev/null +++ b/src/tdebluez-common/icons/hisc-app-tdebluez.svgz diff --git a/src/tdebluez-common/icons/inkscape-converter.sh b/src/tdebluez-common/icons/inkscape-converter.sh new file mode 100644 index 0000000..37ba75f --- /dev/null +++ b/src/tdebluez-common/icons/inkscape-converter.sh @@ -0,0 +1,14 @@ +inkscape -z -e hi128-app-tdebluez.png -h128 tde-bluetooth.svg +inkscape -z -e hi16-app-tdebluez.png -h16 tde-bluetooth.svg +inkscape -z -e hi22-app-tdebluez.png -h22 tde-bluetooth.svg +inkscape -z -e hi32-app-tdebluez.png -h32 tde-bluetooth.svg +inkscape -z -e hi48-app-tdebluez.png -h48 tde-bluetooth.svg +inkscape -z -e hi64-app-tdebluez.png -h64 tde-bluetooth.svg + +inkscape -z -e hi128-app-bluetooth.png -h128 bluetooth.svg +inkscape -z -e hi16-app-bluetooth.png -h16 bluetooth.svg +inkscape -z -e hi22-app-bluetooth.png -h22 bluetooth.svg +inkscape -z -e hi32-app-bluetooth.png -h32 bluetooth.svg +inkscape -z -e hi48-app-bluetooth.png -h48 bluetooth.svg +inkscape -z -e hi64-app-bluetooth.png -h64 bluetooth.svg + diff --git a/src/tdebluez-common/icons/tde-bluetooth.svg b/src/tdebluez-common/icons/tde-bluetooth.svg new file mode 100644 index 0000000..8d4a7d1 --- /dev/null +++ b/src/tdebluez-common/icons/tde-bluetooth.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="210mm" + height="210mm" + viewBox="0 0 210 210" + version="1.1" + id="svg3740" + inkscape:version="0.92.4 (5da689c313, 2019-01-14)" + sodipodi:docname="tde-bluetooth.svg"> + <defs + id="defs3734" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="0.35" + inkscape:cx="-232.85714" + inkscape:cy="445.71429" + inkscape:document-units="mm" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1887" + inkscape:window-height="1018" + inkscape:window-x="25" + inkscape:window-y="0" + inkscape:window-maximized="1" /> + <metadata + id="metadata3737"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-87)"> + <rect + y="93.044044" + x="43.845242" + style="fill:#0a3d91;stroke-width:0.1917409" + ry="58.060863" + height="194.73334" + width="117.92857" + id="rect2" /> + <path + d="m 62.179732,153.31429 76.305318,67.72238 -36.77666,39.26575 V 120.00459 l 36.77666,37.501 -76.305318,65.95762" + id="path4" + inkscape:connector-curvature="0" + style="fill:none;stroke:#ffffff;stroke-width:12.45088673" /> + <text + xml:space="preserve" + style="font-style:normal;font-weight:normal;font-size:95.53657532px;line-height:1.25;font-family:Arial;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:7.96138191px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="82.105263" + y="209.84634" + id="text16" + transform="scale(0.9224945,1.0840173)"><tspan + sodipodi:role="line" + id="tspan14" + x="82.105263" + y="209.84634" + style="fill:#ffffff;stroke-width:7.96138191px">T</tspan></text> + </g> +</svg> diff --git a/src/tdebluez-common/mimetypes/CMakeLists.txt b/src/tdebluez-common/mimetypes/CMakeLists.txt new file mode 100644 index 0000000..9e912b8 --- /dev/null +++ b/src/tdebluez-common/mimetypes/CMakeLists.txt @@ -0,0 +1,37 @@ +################################################# +# +# (C) 2018 Emanoil Kotsev +# deloptes (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +#shellmimedir = $(kde_mimedir)/bluetooth +#/opt/trinity/share/mimelnk +install( FILES + av-device-class.desktop + computer-device-class.desktop + imaging-device-class.desktop + health-device-class.desktop + keyboard-device-class.desktop + lan-device-class.desktop + misc-device-class.desktop + mouse-device-class.desktop + peripheral-device-class.desktop + phone-device-class.desktop + toy-device-class.desktop + wearable-device-class.desktop + unknown-device-class.desktop + dun-profile.desktop + fax-profile.desktop + handsfree-profile.desktop + headset-profile.desktop + obex-ftp-profile.desktop + obex-objectpush-profile.desktop + serial-port-profile.desktop + synchronization-profile.desktop + unknown-profile.desktop + DESTINATION ${MIME_INSTALL_DIR}/bluetooth ) diff --git a/src/tdebluez-common/mimetypes/av-device-class.desktop b/src/tdebluez-common/mimetypes/av-device-class.desktop new file mode 100644 index 0000000..befe686 --- /dev/null +++ b/src/tdebluez-common/mimetypes/av-device-class.desktop @@ -0,0 +1,32 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/av-device-class +Icon=audio-x-generic +Comment=Audio/Video Bluetooth Device +Comment[ar]=جهاز صوتي/مرئي Bluetooth +Comment[bg]=Аудио/видео Bluetooth устройство +Comment[bs]=Audio/video Bluetooth uređaj +Comment[ca]=Dispositiu Bluetooth àudio/vídeo +Comment[da]=Audio/Video Bluetooth-enhed +Comment[de]=Audio/Video Bluetooth-Gerät +Comment[el]=Συσκευή ήχου/βίντεο Bluetooth +Comment[es]=Dispositivo Bluetooth audio/vídeo +Comment[et]=Audio/video Bluetoothi seade +Comment[fr]=Périphérique Audio/Vidéo Bluetooth +Comment[gl]=Dispositivo Bluetooth Áudio/Vídeo +Comment[it]=Dispositivo Bluetooth Audio/Video +Comment[ja]=オーディオ/ビデオ Bluetooth デバイス +Comment[lt]=Audio/video Bluetooth įrenginys +Comment[nl]=Bluetooth Audio/Video-apparaat +Comment[pa]=ਆਡੀਓ/ਵੀਡਿਓ ਬਲਿਊਟੁੱਥ ਜੰਤਰ +Comment[pl]=Urządzenie Bluetooth Audio/Wideo +Comment[pt]=Dispositivo Bluetooth Áudio/Vídeo +Comment[pt_BR]=Dispositivo Bluetooth Áudio/Vídeo +Comment[sr]=Аудио-видео bluetooth уређај +Comment[sr@Latn]=Audio-video bluetooth uređaj +Comment[sv]=Blåtandsenhet med ljud eller video +Comment[ta]=அடியோ/விடியோ புலுடுத் கருவி +Comment[tg]=Дастгоҳи аудио/видео Bluetoot +Comment[tr]=Bluetooth Ses/Görüntü Aygıtı +Comment[xx]=xxAudio/Video Bluetooth Devicexx diff --git a/src/tdebluez-common/mimetypes/computer-device-class.desktop b/src/tdebluez-common/mimetypes/computer-device-class.desktop new file mode 100644 index 0000000..c20ff0f --- /dev/null +++ b/src/tdebluez-common/mimetypes/computer-device-class.desktop @@ -0,0 +1,32 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/computer-device-class +Icon=konsole +X-TDE-IsAlso=inode/directory +Comment=Computer/PDA Bluetooth Device +Comment[bg]=Компютърно/PDA Bluetooth устройство +Comment[bs]=Računar/PDA Bluetooth uređaj +Comment[ca]=Dispositiu Bluetooth ordinador/PDA +Comment[da]=Computer/PDA Bluetooth-enhed +Comment[de]=Computer/PDA Bluetooth-Gerät +Comment[el]=Συσκευή υπολογιστή/PDA Bluetooth +Comment[es]=Dispositivo Bluetooth computadora/PDA +Comment[et]=Arvuti/PDA Bluetoothi seade +Comment[fr]=Périphérique ordinateur ou PDA Bluetooth +Comment[gl]=Dispositivo Bluetooth Computador/PDA +Comment[it]=Dispositivo Bluetooth Computer/PDA +Comment[ja]=コンピュータ/PDA Bluetooth デバイス +Comment[lt]=Kompiuterio/PDA Bluetooth įrenginys +Comment[nl]=Bluetooth computer/PDA-apparaat +Comment[pa]=ਕੰਪਿਊਟਰ/PDA ਬਲਿਊਟੁੱਥ ਜੰਤਰ +Comment[pl]=Urządzenie Bluetooth komputer/PDA +Comment[pt]=Dispositivo Bluetooth Computador/PDA +Comment[pt_BR]=Dispositivo Bluetooth Computador/PDA +Comment[sr]=Рачунар/PDA bluetooth уређај +Comment[sr@Latn]=Računar/PDA bluetooth uređaj +Comment[sv]=Blåtandsenhet i dator eller handdator +Comment[ta]=கணிணி/PDA புலுடுத் கருவி +Comment[tg]=Дастгоҳи компютер/PDA Bluetooth +Comment[tr]=Bluetooth Bilgisayar/PDA Aygıtı +Comment[xx]=xxComputer/PDA Bluetooth Devicexx diff --git a/src/tdebluez-common/mimetypes/dun-profile.desktop b/src/tdebluez-common/mimetypes/dun-profile.desktop new file mode 100644 index 0000000..dd0d5de --- /dev/null +++ b/src/tdebluez-common/mimetypes/dun-profile.desktop @@ -0,0 +1,30 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/dun-profile +Icon=network_local +Comment=Bluetooth Dial-Up Networking Profile +Comment[bg]=Профил за връзка с Bluetooth (Dial-Up) +Comment[bs]=Bluetooth dial-up networking profil +Comment[ca]=Perfil de xarxa telefònica Bluetooth +Comment[da]=Bluetooth opkalds-netværkprofil +Comment[de]=Bluetooth Netzwerkeinwahl-Profil +Comment[el]=Προφίλ δικτύου μέσω τηλεφωνικής κλήσης Bluetooth +Comment[es]=Perfil de red telefónica Bluetooth +Comment[et]=Bluetoothi sissehelistamisteenuse profiil +Comment[fr]=Profil Réseau Bluetooth +Comment[gl]=Perfil de Rede Dial-Up Bluetooth +Comment[it]=Profilo di rete telefonica Bluetooth +Comment[ja]=Bluetooth ダイアルアップ ネットワーク プロファイル (DUN) +Comment[lt]=Bluetooth Dial-Up ryšio profilis +Comment[nl]=Bluetooth inbelnetwerkprofiel +Comment[pa]=ਬਲਿਊਟੁੱਥ ਡਾਇਲਅੱਪ ਨੈਟਵਰਕ ਪ੍ਰੋਫਾਇਲ +Comment[pl]=Profil sieci wdzwanianej Bluetooth +Comment[pt]=Perfil de Rede 'Dial-Up' Bluetooth +Comment[pt_BR]=Perfil de Rede 'Dial-Up' Bluetooth +Comment[sr]=Bluetooth профил повезивања преко телефона +Comment[sr@Latn]=Bluetooth profil povezivanja preko telefona +Comment[sv]=Blåtandsprofil för uppringt nätverk +Comment[ta]=புலுடுத் தொலைபேசி முலம் இனைகும் முறை +Comment[tr]=Bluetooth Çevirmeli Bağlantı Profili +Comment[xx]=xxBluetooth Dial-Up Networking Profilexx diff --git a/src/tdebluez-common/mimetypes/fax-profile.desktop b/src/tdebluez-common/mimetypes/fax-profile.desktop new file mode 100644 index 0000000..1c4ff8c --- /dev/null +++ b/src/tdebluez-common/mimetypes/fax-profile.desktop @@ -0,0 +1,31 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/fax-profile +Icon=printer2 +Comment=Bluetooth Fax Profile +Comment[ar]=مواصفات فاكس Bluetooth +Comment[bg]=Профил за факс с Bluetooth +Comment[bs]=Bluetooth fax profil +Comment[ca]=Perfil de fax Bluetooth +Comment[da]=Bluetooth fax-profil +Comment[de]=Bluetooth Fax-Profil +Comment[el]=Προφίλ Bluetooth Fax +Comment[es]=Perfil de fax Bluetooth +Comment[et]=Bluetoothi faksiprofiil +Comment[fr]=Profil de Fax Bluetooth +Comment[gl]=Perfil de Fax Bluetooth +Comment[it]=Profilo Fax Bluetooth +Comment[ja]=Bluetooth ファクス プロファイル (FAX) +Comment[lt]=Bluetooth fakso profilis +Comment[nl]=Bluetooth faxprofiel +Comment[pa]=ਬਲਿਊਟੁੱਥ ਫੈਕਸ ਪ੍ਰੋਫਾਇਲ +Comment[pl]=Profil Bluetooth faksowania +Comment[pt]=Perfil de Fax Bluetooth +Comment[pt_BR]=Perfil de Fax Bluetooth +Comment[sr]=Bluetooth профил за факс +Comment[sr@Latn]=Bluetooth profil za faks +Comment[sv]=Blåtandsprofil för telefax +Comment[ta]=புலுடுத் தொலை நகல் பக்கநோக்கு +Comment[tr]=Bluetooth Faks Profili +Comment[xx]=xxBluetooth Fax Profilexx diff --git a/src/tdebluez-common/mimetypes/handsfree-profile.desktop b/src/tdebluez-common/mimetypes/handsfree-profile.desktop new file mode 100644 index 0000000..90ecf70 --- /dev/null +++ b/src/tdebluez-common/mimetypes/handsfree-profile.desktop @@ -0,0 +1,29 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/handsfree-profile +Icon=kaddressbook +Comment=Bluetooth Hands-Free Profile +Comment[bg]=Профил Hands-Free за Bluetooth +Comment[bs]=Bluetooth hands-free profil +Comment[ca]=Perfil de mans lliures Bluetooth +Comment[da]=Bluetooth Hands-Free-profil +Comment[de]=Bluetooth Hands-Free-Profil +Comment[el]=Προφίλ Bluetooth Hands-Free +Comment[es]=Perfil manos libres Bluetooth +Comment[et]=Bluetoothi handsfree profiil +Comment[fr]=Profil Hands-Free Bluetooth +Comment[gl]=Perfil de Maos-Libres Bluetooth +Comment[it]=Profilo viva voce Bluetooth +Comment[ja]=Bluetooth ハンズフリー プロファイル (HFP) +Comment[lt]=Bluetooth laisvų rankų profilis +Comment[nl]=Bluetooth Hands-Free-profiel +Comment[pl]=Profil Bluetooth zestawu słuchawkowego +Comment[pt]=Perfil Mãos-Livres Bluetooth +Comment[pt_BR]=Perfil Mãos-Livres Bluetooth +Comment[sr]=Bluetooth хендсфри профил +Comment[sr@Latn]=Bluetooth hendsfri profil +Comment[sv]=Blåtandsprofil för handsfree +Comment[ta]=புலுடுத் கைஇல்லா பக்கநோக்கு +Comment[tr]=Bluetooth Eller Serbest Profili +Comment[xx]=xxBluetooth Hands-Free Profilexx diff --git a/src/tdebluez-common/mimetypes/headset-profile.desktop b/src/tdebluez-common/mimetypes/headset-profile.desktop new file mode 100644 index 0000000..e5c38cf --- /dev/null +++ b/src/tdebluez-common/mimetypes/headset-profile.desktop @@ -0,0 +1,30 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/headset-profile +Icon=kaddressbook +Comment=Bluetooth Headset Profile +Comment[bg]=Профил Headset за Bluetooth +Comment[bs]=Bluetooth headset profil +Comment[ca]=Perfil d'auriculars Bluetooth +Comment[da]=Bluetooth Headset-profil +Comment[de]=Bluetooth Headset-Profil +Comment[el]=Προφίλ Bluetooth ακουστικών +Comment[es]=Perfil de auriculares Bluetooth +Comment[et]=Bluetoothi peakomplekti profiil +Comment[fr]=Profil Headset Bluetooth +Comment[gl]=Perfil de Auricular Bluetooth +Comment[it]=Profilo cuffie Bluetooth +Comment[ja]=Bluetooth ヘッドセット プロファイル (HSP) +Comment[lt]=Bluetooth ausinių profilis +Comment[nl]=Bluetooth Headset-profiel +Comment[pa]=ਬਲਿਊਟੁੱਥ ਹੈਡਸੈਟ ਪ੍ਰੋਫਾਇਲ +Comment[pl]=Profil Bluetooth zestawu słuchawek z mikrofonem +Comment[pt]=Perfil de Auricular Bluetooth +Comment[pt_BR]=Perfil de Auricular Bluetooth +Comment[sr]=Bluetooth профил за слушалице +Comment[sr@Latn]=Bluetooth profil za slušalice +Comment[sv]=Blåtandsprofil för headset +Comment[ta]=புலுடுத் தலைஅமைப்பு பக்கநோக்கு +Comment[tr]=Bluetooth Kulaklıklı Mikrofon Profili +Comment[xx]=xxBluetooth Headset Profilexx diff --git a/src/tdebluez-common/mimetypes/health-device-class.desktop b/src/tdebluez-common/mimetypes/health-device-class.desktop new file mode 100644 index 0000000..fbc682d --- /dev/null +++ b/src/tdebluez-common/mimetypes/health-device-class.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/health-device-class +Icon=health +X-TDE-IsAlso=inode/directory +Comment=Health Bluetooth Device +Comment[bg]=Медицинско Bluetooth устройство +Comment[xx]=xxHealth Bluetooth Devicexx diff --git a/src/tdebluez-common/mimetypes/imaging-device-class.desktop b/src/tdebluez-common/mimetypes/imaging-device-class.desktop new file mode 100644 index 0000000..24b5f48 --- /dev/null +++ b/src/tdebluez-common/mimetypes/imaging-device-class.desktop @@ -0,0 +1,30 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/imaging-device-class +Icon=camera_unmount +Comment=Imaging Bluetooth Device +Comment[bg]=Bluetooth устройство за снимка +Comment[bs]=Imaging Bluetooth uređaj +Comment[ca]=Dispositiu Bluetooth d'imatges +Comment[da]=Imaging Bluetooth-enhed +Comment[de]=Imaging Bluetooth-Gerät +Comment[el]=Συσκευή εικόνας Bluetooth +Comment[es]=Dispositivo Bluetooth de imágenes +Comment[et]=Bluetoothi pildiseade +Comment[fr]=Périphérique d'imagerie Bluetooth +Comment[gl]=Dispositivo Bluetooth con Imaxe +Comment[it]=Dispositivo fotografico Bluetooth +Comment[ja]=イメージング Bluetooth デバイス +Comment[lt]=Bluetooth paveikslėlių įrenginys +Comment[nl]=Bluetooth imaging-apparaat +Comment[pa]=ਚਿੱਤਰ ਬਲਿਊਟੁੱਥ ਜੰਤਰ +Comment[pl]=Urządzenie Bluetooth obrazowania +Comment[pt]=Dispositivo Bluetooth com Imagem +Comment[pt_BR]=Dispositivo Bluetooth com Imagem +Comment[sr]=Bluetooth уређај за прављење слика +Comment[sr@Latn]=Bluetooth uređaj za pravljenje slika +Comment[sv]=Blåtandsenhet med kamera +Comment[ta]=புலுடுத் நினைக்கும் கருவி +Comment[tr]=Bluetooth Görüntü Aygıtı +Comment[xx]=xxImaging Bluetooth Devicexx diff --git a/src/tdebluez-common/mimetypes/keyboard-device-class.desktop b/src/tdebluez-common/mimetypes/keyboard-device-class.desktop new file mode 100644 index 0000000..1445b7b --- /dev/null +++ b/src/tdebluez-common/mimetypes/keyboard-device-class.desktop @@ -0,0 +1,29 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/keyboard-device-class +Icon=keyboard +Comment=Peripheral Bluetooth Device +Comment[bg]=Периферно Bluetooth устройство +Comment[ca]=Dispositiu Bluetooth perifèric +Comment[da]=Perifer Bluetooth-enhed +Comment[de]=Peripheriegerät für Bluetooth +Comment[el]=Περιφερειακή συσκευή Bluetooth +Comment[es]=Dispositivo Bluetooth periférico +Comment[et]=Väline Bluetoothi seade +Comment[fr]=Périphérique Bluetooth +Comment[gl]=Dispositivo Bluetooth Periférico +Comment[it]=Dispositivo Bluetooth periferico +Comment[ja]=周辺機器 Bluetooth デバイス +Comment[lt]=Periferinis Bluetooth įrenginys +Comment[nl]=Bluetooth randapparaat +Comment[pa]=ਪੈਰਾਫੀਰਲ ਬਲਿਊਟੁੱਥ ਜੰਤਰ +Comment[pl]=Urządzenie peryferyjne Bluetooth +Comment[pt]=Dispositivo Bluetooth Periférico +Comment[pt_BR]=Dispositivo Bluetooth Periférico +Comment[sr]=Периферијски bluetooth уређај +Comment[sr@Latn]=Periferijski bluetooth uređaj +Comment[sv]=Extern Blåtandsenhet +Comment[ta]=புற புலுடுத் கருவி +Comment[tr]=Çevresel Bluetooth Aygıtı +Comment[xx]=xxPeripheral Bluetooth Devicexx diff --git a/src/tdebluez-common/mimetypes/lan-device-class.desktop b/src/tdebluez-common/mimetypes/lan-device-class.desktop new file mode 100644 index 0000000..5035fd7 --- /dev/null +++ b/src/tdebluez-common/mimetypes/lan-device-class.desktop @@ -0,0 +1,30 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/lan-device-class +Icon=nfs_unmount +Comment=LAN/Networking Bluetooth Device +Comment[bg]=Мрежово/LAN Bluetooth устройство +Comment[ca]=Dispositiu Bluetooth de xarxa +Comment[da]=LAN/Netværk Bluetooth-enhed +Comment[de]=LAN/Netwerk Bluetooth-Gerät +Comment[el]=Δικτυακή συσκευή Bluetooth +Comment[es]=Dispositivo Bluetooth de redes +Comment[et]=Kohtvõrgu/interneti Bluetoothi seade +Comment[fr]=Périphérique LAN/Réseau Bluetooth +Comment[gl]=Dispositivo de Rede Bluetooth +Comment[it]=Dispositivo Bluetooth di LAN/Rete +Comment[ja]=LAN/ネットワーク Bluetooth デバイス +Comment[lt]=Bluetooth LAN/tinklo įrenginys +Comment[nl]=Bluetooth LAN-/netwerk-apparaat +Comment[pa]=LAN/ਨੈਟਵਰਕ ਬਲਿਊਟੁੱਥ ਜੰਤਰ +Comment[pl]=Urządzenie Bluetooth LAN/sieciowe +Comment[pt]=Dispositivo de Rede Bluetooth +Comment[pt_BR]=Dispositivo de Rede Bluetooth +Comment[sr]=LAN/мрежни bluetooth уређај +Comment[sr@Latn]=LAN/mrežni bluetooth uređaj +Comment[sv]=Blåtandsenhet för lokalt nätverk +Comment[ta]=LAN/புலுடுத் வலை இனைப்பு கருவி +Comment[tg]=Дастгоҳи шабака/LAN Bluetooth +Comment[tr]=LAN/Ağ Bluetooth Aygıtı +Comment[xx]=xxLAN/Networking Bluetooth Devicexx diff --git a/src/tdebluez-common/mimetypes/misc-device-class.desktop b/src/tdebluez-common/mimetypes/misc-device-class.desktop new file mode 100644 index 0000000..67a510b --- /dev/null +++ b/src/tdebluez-common/mimetypes/misc-device-class.desktop @@ -0,0 +1,30 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/misc-device-class +Icon=tdebluez +X-TDE-IsAlso=inode/directory +Comment=Miscellaneous Bluetooth Device +Comment[bg]=Разни Bluetooth устройства +Comment[ca]=Dispositiu Bluetooth divers +Comment[da]=Diverse Bluetooth-enheder +Comment[de]=Vielseitiges Bluetooth-Gerät +Comment[el]=Συσκευή Bluetooth άλλης κατηγορίας +Comment[es]=Dispositivo Bluetooth diverso +Comment[et]=Mitmesugused Bluetoothi seadmed +Comment[fr]=Périphérique Bluetooth divers +Comment[gl]=Dispositivo Bluetooth +Comment[it]=Dispositivo Bluetooth vario +Comment[ja]=その他の Bluetooth デバイス +Comment[lt]=Kitas Bluetooth įrenginys +Comment[nl]=Ander Bluetooth-apparaat +Comment[pa]=ਫੁਟਕਲ ਬਲਿਊਟੁੱਥ ਜੰਤਰ +Comment[pl]=Inne urządzenie Bluetooth +Comment[pt]=Dispositivo Bluetooth Variado +Comment[pt_BR]=Dispositivo Bluetooth Variado +Comment[sr]=Неодређени bluetooth уређај +Comment[sr@Latn]=Neodređeni bluetooth uređaj +Comment[sv]=Annan Blåtandsenhet +Comment[ta]=இதர புலுடுத் கருவி +Comment[tr]=Çeşitli Bluetooth Aygıtları +Comment[xx]=xxMiscellaneous Bluetooth Devicexx diff --git a/src/tdebluez-common/mimetypes/mouse-device-class.desktop b/src/tdebluez-common/mimetypes/mouse-device-class.desktop new file mode 100644 index 0000000..00a5880 --- /dev/null +++ b/src/tdebluez-common/mimetypes/mouse-device-class.desktop @@ -0,0 +1,29 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/mouse-device-class +Icon=mouse +Comment=Peripheral Bluetooth Device +Comment[bg]=Периферно Bluetooth устройство +Comment[ca]=Dispositiu Bluetooth perifèric +Comment[da]=Perifer Bluetooth-enhed +Comment[de]=Peripheriegerät für Bluetooth +Comment[el]=Περιφερειακή συσκευή Bluetooth +Comment[es]=Dispositivo Bluetooth periférico +Comment[et]=Väline Bluetoothi seade +Comment[fr]=Périphérique Bluetooth +Comment[gl]=Dispositivo Bluetooth Periférico +Comment[it]=Dispositivo Bluetooth periferico +Comment[ja]=周辺機器 Bluetooth デバイス +Comment[lt]=Periferinis Bluetooth įrenginys +Comment[nl]=Bluetooth randapparaat +Comment[pa]=ਪੈਰਾਫੀਰਲ ਬਲਿਊਟੁੱਥ ਜੰਤਰ +Comment[pl]=Urządzenie peryferyjne Bluetooth +Comment[pt]=Dispositivo Bluetooth Periférico +Comment[pt_BR]=Dispositivo Bluetooth Periférico +Comment[sr]=Периферијски bluetooth уређај +Comment[sr@Latn]=Periferijski bluetooth uređaj +Comment[sv]=Extern Blåtandsenhet +Comment[ta]=புற புலுடுத் கருவி +Comment[tr]=Çevresel Bluetooth Aygıtı +Comment[xx]=xxPeripheral Bluetooth Devicexx diff --git a/src/tdebluez-common/mimetypes/obex-ftp-profile.desktop b/src/tdebluez-common/mimetypes/obex-ftp-profile.desktop new file mode 100644 index 0000000..a16bcbd --- /dev/null +++ b/src/tdebluez-common/mimetypes/obex-ftp-profile.desktop @@ -0,0 +1,29 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/obex-ftp-profile +Icon=nfs_unmount +Comment=OBEX File Transfer Profile +Comment[bg]=Профил за пренос на OBEX файл +Comment[ca]=Perfil de transferència de fitxers OBEX +Comment[da]=OBEX filoverførselsprofil +Comment[de]=OBEX Dateitransferprotokoll +Comment[el]=Προφίλ μεταφοράς αρχείων OBEX +Comment[es]=Perfil de transferencia de archivos OBEX +Comment[et]=OBEX failiedastuse profiil +Comment[fr]=Profil de transfert de fichiers via OBEX +Comment[gl]=Perfil de Transferéncia de Ficheiros OBEX +Comment[it]=Profilo di trasferimento file OBEX +Comment[ja]=OBEX ファイル転送プロファイル (FTP) +Comment[lt]=OBEX bylų persiuntimo profilis +Comment[nl]=OBEX bestandsoverdrachtprofiel +Comment[pa]=OBEX ਫਾਇਲ ਸੰਚਾਰ ਪ੍ਰੋਫਾਇਲ +Comment[pl]=Profil transferu plików OBEX +Comment[pt]=Perfil de Transferência de Ficheiros OBEX +Comment[pt_BR]=Perfil de Transferência de Ficheiros OBEX +Comment[sr]=Профил за OBEX пренос фајлова +Comment[sr@Latn]=Profil za OBEX prenos fajlova +Comment[sv]=OBEX-filöverföringsprofil +Comment[ta]=OBEX கோப்பு மாற்று பக்கநோக்கு +Comment[tr]=OBEX Dosya Transfer Profili +Comment[xx]=xxOBEX File Transfer Profilexx diff --git a/src/tdebluez-common/mimetypes/obex-objectpush-profile.desktop b/src/tdebluez-common/mimetypes/obex-objectpush-profile.desktop new file mode 100644 index 0000000..d1b0ce6 --- /dev/null +++ b/src/tdebluez-common/mimetypes/obex-objectpush-profile.desktop @@ -0,0 +1,32 @@ +[Desktop Entry] +Encoding=UTF-8 +Comment=OBEX Object Push Profile +Comment[bg]=Профил OBEX Object Push +Comment[ca]=Perfil d'enviament d'objectes OBEX +Comment[da]=OBEX objekt-skubbeprofil +Comment[de]=OBEX Object-Push-Profil +Comment[el]=Προφίλ αποστολής αντικειμένων OBEX +Comment[es]=Perfil de envío de objetos OBEX +Comment[et]=OBEX objekti saatmise profiil +Comment[fr]=Profil OBEX Object Push +Comment[gl]=Perfil de Envio de Obxectos OBEX +Comment[it]=Profilo di Oggetto Push OBEX +Comment[ja]=OBEX オブジェクトプッシュ プロファイル (OPP) +Comment[lt]=OBEX persiuntimo profilis +Comment[nl]=OBEX Object Push-profiel +Comment[pa]=OBEX Object Push ਪ੍ਰੋਫਾਇਲ +Comment[pl]=Profil OBEX Object Push +Comment[pt]=Perfil de Envio de Objectos OBEX +Comment[pt_BR]=Perfil de Envio de Objectos OBEX +Comment[sr]=Профил за OBEX гурање објеката +Comment[sr@Latn]=Profil za OBEX guranje objekata +Comment[sv]=OBEX-objektsändingsprofil +Comment[ta]=OBEX பொருள் விளக்கக்குறிப்பு +Comment[tr]=OBEX Nesne Ekleme Profili +Comment[xx]=xxOBEX Object Push Profilexx +Icon=mail_send +Type=MimeType +MimeType=bluetooth/obex-object-push-profile +Patterns= +NoDisplay=false +X-TDE-AutoEmbed=true diff --git a/src/tdebluez-common/mimetypes/peripheral-device-class.desktop b/src/tdebluez-common/mimetypes/peripheral-device-class.desktop new file mode 100644 index 0000000..55eaa3f --- /dev/null +++ b/src/tdebluez-common/mimetypes/peripheral-device-class.desktop @@ -0,0 +1,29 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/peripheral-device-class +Icon=joystick +Comment=Peripheral Bluetooth Device +Comment[bg]=Периферно Bluetooth устройство +Comment[ca]=Dispositiu Bluetooth perifèric +Comment[da]=Perifer Bluetooth-enhed +Comment[de]=Peripheriegerät für Bluetooth +Comment[el]=Περιφερειακή συσκευή Bluetooth +Comment[es]=Dispositivo Bluetooth periférico +Comment[et]=Väline Bluetoothi seade +Comment[fr]=Périphérique Bluetooth +Comment[gl]=Dispositivo Bluetooth Periférico +Comment[it]=Dispositivo Bluetooth periferico +Comment[ja]=周辺機器 Bluetooth デバイス +Comment[lt]=Periferinis Bluetooth įrenginys +Comment[nl]=Bluetooth randapparaat +Comment[pa]=ਪੈਰਾਫੀਰਲ ਬਲਿਊਟੁੱਥ ਜੰਤਰ +Comment[pl]=Urządzenie peryferyjne Bluetooth +Comment[pt]=Dispositivo Bluetooth Periférico +Comment[pt_BR]=Dispositivo Bluetooth Periférico +Comment[sr]=Периферијски bluetooth уређај +Comment[sr@Latn]=Periferijski bluetooth uređaj +Comment[sv]=Extern Blåtandsenhet +Comment[ta]=புற புலுடுத் கருவி +Comment[tr]=Çevresel Bluetooth Aygıtı +Comment[xx]=xxPeripheral Bluetooth Devicexx diff --git a/src/tdebluez-common/mimetypes/phone-device-class.desktop b/src/tdebluez-common/mimetypes/phone-device-class.desktop new file mode 100644 index 0000000..b1b28f8 --- /dev/null +++ b/src/tdebluez-common/mimetypes/phone-device-class.desktop @@ -0,0 +1,32 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/phone-device-class +Icon=kaddressbook +X-TDE-IsAlso=inode/directory +Comment=Phone Bluetooth Device +Comment[ar]=جهاز هاتف Bluetooth +Comment[bg]=Телефонно Bluetooth устройство +Comment[ca]=Dispositiu Bluetooth telefònic +Comment[da]=Telefon Bluetooth-enhed +Comment[de]=Bluetooth-Gerät für Telefonie +Comment[el]=Τηλεφωνική συσκευή Bluetooth +Comment[es]=Dispositivo bluetooth telefónico +Comment[et]=Telefoni Bluetoothi seade +Comment[fr]=Téléphone Bluetooth +Comment[gl]=Teléfone con Bluetooth +Comment[it]=Dispositivo Bluetooth telefonico +Comment[ja]=電話 Bluetooth デバイス +Comment[lt]=Bluetooth telefono įrenginys +Comment[nl]=Bluetooth telefoon +Comment[pa]=ਫੋਨ ਬਲਿਊਟੁੱਥ ਜੰਤਰ +Comment[pl]=Urządzenie Bluetooth - telefon +Comment[pt]=Dispositivo Bluetooth Telefone +Comment[pt_BR]=Dispositivo Bluetooth Telefone +Comment[sr]=Телефонски bluetooth уређај +Comment[sr@Latn]=Telefonski bluetooth uređaj +Comment[sv]=Blåtandsenhet i telefon +Comment[ta]=தொலைபெசி புலுடுத் கருவி +Comment[tg]=Дастгоҳи телефони Bluetooth +Comment[tr]=Bluetooth Telefon Aygıtı +Comment[xx]=xxPhone Bluetooth Devicexx diff --git a/src/tdebluez-common/mimetypes/serial-port-profile.desktop b/src/tdebluez-common/mimetypes/serial-port-profile.desktop new file mode 100644 index 0000000..439de4a --- /dev/null +++ b/src/tdebluez-common/mimetypes/serial-port-profile.desktop @@ -0,0 +1,29 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/serial-port-profile +Icon=input_devices_settings +Comment=Bluetooth Serial Port Profile +Comment[bg]=Профил за сериен порт за Bluetooth +Comment[ca]=Perfil de port sèrie Bluetooth +Comment[da]=Bluetooth seriel port profil +Comment[de]=Serielles Bluetooth-Anschlussprofil +Comment[el]=Προφίλ σειριακής θύρας Bluetooth +Comment[es]=Perfil Bluetooth de puerto serie +Comment[et]=Bluetoothi jadapordi profiil +Comment[fr]=Profil de port série Bluetooth +Comment[gl]=Perfil Bluetooth de Porto Série +Comment[it]=Profilo di porta seriale Bluetooth +Comment[ja]=Bluetooth シリアルポート プロファイル (SPP) +Comment[lt]=Bluetooth nuoseklaus prievado profilis +Comment[nl]=Bluetooth seriële-poort-profiel +Comment[pa]=ਬਲਿਊਟੁੱਥ ਸੀਰੀਅਲ ਪੋਰਟ ਪ੍ਰੋਫਾਇਲ +Comment[pl]=Profil Bluetooth portu szeregowego +Comment[pt]=Perfil Bluetooth de Portal Série +Comment[pt_BR]=Perfil Bluetooth de Portal Série +Comment[sr]=Bluetooth профил серијског порта +Comment[sr@Latn]=Bluetooth profil serijskog porta +Comment[sv]=Blåtandsprofil för serieport +Comment[ta]=புலுடுத் தொடர் துரை பக்கநோக்கு +Comment[tr]=Bluetooth Seri Port Profili +Comment[xx]=xxBluetooth Serial Port Profilexx diff --git a/src/tdebluez-common/mimetypes/synchronization-profile.desktop b/src/tdebluez-common/mimetypes/synchronization-profile.desktop new file mode 100644 index 0000000..50efd3c --- /dev/null +++ b/src/tdebluez-common/mimetypes/synchronization-profile.desktop @@ -0,0 +1,31 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/synchronization-profile +Icon=pda_blue +Comment=Bluetooth Synchronization Profile +Comment[ar]=مواصفات مقارنة التزامن Bluetooth +Comment[bg]=Профил за синхронизиране на Bluetooth +Comment[ca]=Perfil de sincronització Bluetooth +Comment[da]=Bluetooth synkroniseringsprofil +Comment[de]=Bluetooth Synchronisationsprofil +Comment[el]=Προφίλ συγχρονισμού Bluetooth +Comment[en_GB]=Bluetooth Synchronisation Profile +Comment[es]=Perfil de sincronización Bluetooth +Comment[et]=Bluetoothi sünkroprofiil +Comment[fr]=Profil de Synchronisation Bluetooth +Comment[gl]=Perfil de Sincronizazón Bluetooth +Comment[it]=Profilo di sincronizzazione Bluetooth +Comment[ja]=Bluetooth 同期プロファイル (SYNC) +Comment[lt]=Bluetooth sinchronizacijos profilis +Comment[nl]=Bluetooth synchronisatieprofiel +Comment[pa]=ਬਲਿਊਟੁੱਥ ਸਮਕਾਲੀ ਪ੍ਰੋਫਾਇਲ +Comment[pl]=Profil Bluetooth synchronizacji +Comment[pt]=Perfil de Sincronização Bluetooth +Comment[pt_BR]=Perfil de Sincronização Bluetooth +Comment[sr]=Bluetooth профил синхронизације +Comment[sr@Latn]=Bluetooth profil sinhronizacije +Comment[sv]=Blåtandsprofil för synkronisering +Comment[ta]=புலுடுத் ஒத்திசை பக்கநோக்கு +Comment[tr]=Bluetooth Eşzamanlama Profili +Comment[xx]=xxBluetooth Synchronization Profilexx diff --git a/src/tdebluez-common/mimetypes/toy-device-class.desktop b/src/tdebluez-common/mimetypes/toy-device-class.desktop new file mode 100644 index 0000000..b2b40d3 --- /dev/null +++ b/src/tdebluez-common/mimetypes/toy-device-class.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/toy-device-class +Icon=package_toys +X-TDE-IsAlso=inode/directory +Comment=Toy Bluetooth Device +Comment[bg]=Играчка Bluetooth устройство +Comment[xx]=xxToy Bluetooth Devicexx diff --git a/src/tdebluez-common/mimetypes/unknown-device-class.desktop b/src/tdebluez-common/mimetypes/unknown-device-class.desktop new file mode 100644 index 0000000..5a05925 --- /dev/null +++ b/src/tdebluez-common/mimetypes/unknown-device-class.desktop @@ -0,0 +1,30 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/unknown-device-class +Icon=tdebluez +Comment=Unknown Bluetooth Device Class +Comment[ar]=فئة جهاز Bluetooth غير معروف +Comment[bg]=Неизвестен клас на Bluetooth устройство +Comment[ca]=Classe de dispositiu Bluetooth desconegut +Comment[da]=Ukendt Bluetooth enhedsklasse +Comment[de]=Unbekannte Bluetooth-Geräteklasse +Comment[el]=Άγνωστη κλάση συσκευής Bluetooth +Comment[es]=Clase de dispositivo Bluetooth desconocida +Comment[et]=Tundmatu Bluetoothi seadme klass +Comment[fr]=Classe du périphérique Bluetooth inconnue +Comment[gl]=Clase de dispositivo Bluetooth descoñecida +Comment[it]=Classe di dispositivo Bluetooth ignota +Comment[ja]=未知の Bluetooth デバイスクラス +Comment[lt]=Nežinoma Bluetooth įrenginio klasė +Comment[nl]=Onbekende Bluetooth apparaatklasse +Comment[pa]=ਅਣਜਾਣ ਬਲਿਊਟੁੱਥ ਜੰਤਰ ਕਲਾਸ +Comment[pl]=Nieznana klasa urządzenia Bluetooth +Comment[pt]=Classe de dispositivo Bluetooth desconhecida +Comment[pt_BR]=Classe de dispositivo Bluetooth desconhecida +Comment[sr]=Непозната класа bluetooth уређаја +Comment[sr@Latn]=Nepoznata klasa bluetooth uređaja +Comment[sv]=Okänd klass av Blåtandsenhet +Comment[ta]=தேரியாத புலுடுத் கருவி வகுப்புகள் +Comment[tr]=Bilinmeyen Bluetooth Aygıt Sınıfı +Comment[xx]=xxUnknown Bluetooth Device Classxx diff --git a/src/tdebluez-common/mimetypes/unknown-profile.desktop b/src/tdebluez-common/mimetypes/unknown-profile.desktop new file mode 100644 index 0000000..926c29e --- /dev/null +++ b/src/tdebluez-common/mimetypes/unknown-profile.desktop @@ -0,0 +1,33 @@ +[Desktop Entry] +Encoding=UTF-8 +Comment=Unknown Bluetooth Profile +Comment[ar]=مواصفات Bluetooth غير معروفة +Comment[bg]=Неизвестен профил на Bluetooth +Comment[br]=Profil Bluetooth dianav +Comment[ca]=Perfil Bluetooth desconegut +Comment[da]=Ukendt Bluetooth-profil +Comment[de]=Unkekanntes Bluetooth Profil +Comment[el]=Άγνωστο προφίλ Bluetooth +Comment[es]=Perfil Bluetooth desconocido +Comment[et]=Tundmatu Bluetoothi profiil +Comment[fr]=Profil Bluetooth inconnu +Comment[gl]=Perfil Bluetooth Descoñecido +Comment[it]=Profilo Bluetooth ignoto +Comment[ja]=未知の Bluetooth プロファイル +Comment[lt]=Nežinomas Bluetooth profilis +Comment[nl]=Onbekend Bluetooth-profiel +Comment[pa]=ਅਣਜਾਣ ਬਲਿਊਟੁੱਥ ਪ੍ਰੋਫਾਇਲ +Comment[pl]=Nieznany profil Bluetooth +Comment[pt]=Perfil Bluetooth Desconhecido +Comment[pt_BR]=Perfil Bluetooth Desconhecido +Comment[sr]=Непознати bluetooth профил +Comment[sr@Latn]=Nepoznati bluetooth profil +Comment[sv]=Okänd Blåtandsprofil +Comment[ta]=தெரியாத ப்ளூ டூத் விளக்கக்குறிப்பு +Comment[tg]=Профили Bluetooth номуайян +Comment[tr]=Bilinmeyen Bluetooth Profili +Comment[xx]=xxUnknown Bluetooth Profilexx +Icon=misc +Type=MimeType +MimeType=bluetooth/unknown-profile +Patterns= diff --git a/src/tdebluez-common/mimetypes/wearable-device-class.desktop b/src/tdebluez-common/mimetypes/wearable-device-class.desktop new file mode 100644 index 0000000..fe1f182 --- /dev/null +++ b/src/tdebluez-common/mimetypes/wearable-device-class.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=MimeType +MimeType=bluetooth/wearable-device-class +Icon=kaddressbook +X-TDE-IsAlso=inode/directory +Comment=Wearable Bluetooth Device +Comment[bg]=Преносимо Bluetooth устройство +Comment[xx]=xxWearable Bluetooth Devicexx diff --git a/src/tdebluez-common/org.trinitydesktop.tdebluez.conf b/src/tdebluez-common/org.trinitydesktop.tdebluez.conf new file mode 100644 index 0000000..fa48877 --- /dev/null +++ b/src/tdebluez-common/org.trinitydesktop.tdebluez.conf @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8"?> <!-- -*- XML -*- --> +<!DOCTYPE busconfig PUBLIC + "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN" + "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> +<busconfig> + <!-- Only root can own the service --> + <policy user="root"> + <allow own="org.trinitydesktop.tdebluez"/> + <allow send_destination="org.bluez"/> + <allow send_destination="org.trinitydesktop.tdebluez"/> + <allow send_path="/org/trinitydesktop/tdebluez" + send_interface="org.bluez.Agent1"/> + <allow send_path="/org/trinitydesktop/tdebluez" + send_interface="org.freedesktop.DBus.Introspectable"/> + </policy> + + <policy at_console="true"> + <!-- Users with physical access to the machine are allowed access --> + <allow send_destination="org.bluez"/> + <allow send_destination="org.trinitydesktop.tdebluez"/> + <allow send_path="/org/trinitydesktop/tdebluez" + send_interface="org.freedesktop.DBus.Introspectable"/> + <allow send_path="/org/trinitydesktop/tdebluez" + send_interface="org.bluez.Agent1"/> + </policy> + + <!-- allow users of bluetooth group to communicate --> + <policy group="bluetooth"> + <allow own="org.trinitydesktop.tdebluez"/> + <allow send_destination="org.bluez"/> + <allow send_destination="org.trinitydesktop.tdebluez"/> + <allow send_path="/org/trinitydesktop/tdebluez" + send_interface="org.freedesktop.DBus.Introspectable"/> + <allow send_path="/org/trinitydesktop/tdebluez" + send_interface="org.bluez.Agent1"/> + </policy> + + <policy context="default"> + <!-- Everyone else is denied access --> + <deny send_destination="org.trinitydesktop.tdebluez"/> + </policy> +</busconfig> diff --git a/src/tdebluez-common/org.trinitydesktop.tdebluez.service b/src/tdebluez-common/org.trinitydesktop.tdebluez.service new file mode 100644 index 0000000..9b0928a --- /dev/null +++ b/src/tdebluez-common/org.trinitydesktop.tdebluez.service @@ -0,0 +1,4 @@ +[D-BUS Service] +Name=org.trinitydesktop.tdebluez +Exec=/bin/false +User=root diff --git a/src/tdebluez-common/tde-settings-network-bluetooth.directory b/src/tdebluez-common/tde-settings-network-bluetooth.directory new file mode 100644 index 0000000..54636e7 --- /dev/null +++ b/src/tdebluez-common/tde-settings-network-bluetooth.directory @@ -0,0 +1,7 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Bluetooth +Name[pa]=ਬਲਿਊਟੁੱਥ +Name[sv]=Blåtand +Name[xx]=xxBluetoothxx +Icon=tdebluez |