parent
64c3be47ff
commit
b10a61b1fd
@ -1,22 +0,0 @@
|
||||
## Makefile.am for folder file meta info plugin
|
||||
|
||||
INCLUDES = $(all_includes)
|
||||
|
||||
# these are the headers for your project
|
||||
noinst_HEADERS = kfile_torrent.h bbase.h bdict.h bytetape.h \
|
||||
bstring.h bint.h blist.h
|
||||
|
||||
kde_module_LTLIBRARIES = kfile_torrent.la
|
||||
|
||||
kfile_torrent_la_SOURCES = bytetape.cpp bint.cpp bstring.cpp blist.cpp bdict.cpp kfile_torrent.cpp
|
||||
kfile_torrent_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
|
||||
kfile_torrent_la_LIBADD = $(LIB_KIO)
|
||||
|
||||
# let automoc handle all of the meta source files (moc)
|
||||
METASOURCES = AUTO
|
||||
|
||||
services_DATA = kfile_torrent.desktop
|
||||
servicesdir = $(kde_servicesdir)
|
||||
|
||||
messages:
|
||||
$(XGETTEXT) *.cpp -o $(podir)/kfile_torrent.pot
|
@ -1,64 +0,0 @@
|
||||
#################################################
|
||||
#
|
||||
# (C) 2010-2011 Serghei Amelian
|
||||
# serghei (DOT) amelian (AT) gmail.com
|
||||
#
|
||||
# Improvements and feedback are welcome
|
||||
#
|
||||
# This file is released under GPL >= 2
|
||||
#
|
||||
#################################################
|
||||
|
||||
add_definitions( -DKDE_NO_COMPAT )
|
||||
|
||||
include_directories(
|
||||
${TDE_INCLUDE_DIR}
|
||||
${TQT_INCLUDE_DIRS}
|
||||
)
|
||||
|
||||
link_directories(
|
||||
${TQT_LIBRARY_DIRS}
|
||||
)
|
||||
|
||||
|
||||
##### other data ################################
|
||||
|
||||
install( FILES
|
||||
kopete-pluginloader.upd kopete-account-kconf_update.upd
|
||||
kopete-pluginloader2.upd kopete-jabberproxytype-kconf_update.upd
|
||||
kopete-jabberpriorityaddition-kconf_update.upd
|
||||
kopete-nameTracking.upd
|
||||
DESTINATION ${KCONF_UPDATE_INSTALL_DIR} )
|
||||
|
||||
install( PROGRAMS
|
||||
kopete-pluginloader.pl kopete-jabberpriorityaddition-kconf_update.sh
|
||||
kopete-pluginloader2.sh kopete-jabberproxytype-kconf_update.sh
|
||||
kopete-account-0.10.pl kopete-account-kconf_update.sh
|
||||
DESTINATION ${KCONF_UPDATE_INSTALL_DIR} )
|
||||
|
||||
|
||||
##### kopete_account_kconf_update (executable) ##
|
||||
|
||||
tde_add_executable( "kopete-account-kconf_update"
|
||||
SOURCES kopete-account-kconf_update.cpp
|
||||
LINK ${TQT_LIBRARIES}
|
||||
DESTINATION ${LIB_INSTALL_DIR}/kconf_update_bin
|
||||
)
|
||||
|
||||
|
||||
##### kopete_pluginloader2_kconf_update (executable)
|
||||
|
||||
tde_add_executable( "kopete-pluginloader2-kconf_update"
|
||||
SOURCES kopete-pluginloader2.cpp
|
||||
LINK ${TQT_LIBRARIES}
|
||||
DESTINATION ${LIB_INSTALL_DIR}/kconf_update_bin
|
||||
)
|
||||
|
||||
|
||||
##### kopete_nameTracking_kconf_update (executable)
|
||||
|
||||
tde_add_executable( "kopete-nameTracking-kconf_update"
|
||||
SOURCES kopete-nameTracking.cpp
|
||||
LINK tdecore-shared
|
||||
DESTINATION ${LIB_INSTALL_DIR}/kconf_update_bin
|
||||
)
|
@ -1,32 +0,0 @@
|
||||
AM_CPPFLAGS = -DKDE_NO_COMPAT -DQT_NO_COMPAT $(all_includes)
|
||||
|
||||
update_DATA = kopete-pluginloader.upd kopete-account-kconf_update.upd \
|
||||
kopete-pluginloader2.upd kopete-jabberproxytype-kconf_update.upd \
|
||||
kopete-jabberpriorityaddition-kconf_update.upd kopete-nameTracking.upd
|
||||
update_SCRIPTS = kopete-pluginloader.pl kopete-account-kconf_update.sh \
|
||||
kopete-pluginloader2.sh kopete-jabberproxytype-kconf_update.sh \
|
||||
kopete-jabberpriorityaddition-kconf_update.sh kopete-account-0.10.pl
|
||||
updatedir = $(kde_datadir)/kconf_update
|
||||
|
||||
# The Qt app cannot go into kde_datadir, that is not portable.
|
||||
# install to kde_bindir/kconf_update_bin instead.
|
||||
# KDE 3.2 will allow kconf_update scripts to run directly from there,
|
||||
# but for us that's too late. Use the .sh script as a workaround.
|
||||
kconf_PROGRAMS = kopete-account-kconf_update kopete-pluginloader2-kconf_update \
|
||||
kopete-nameTracking-kconf_update
|
||||
kconfdir = $(libdir)/kconf_update_bin
|
||||
|
||||
kopete_account_kconf_update_SOURCES = kopete-account-kconf_update.cpp
|
||||
kopete_account_kconf_update_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
|
||||
kopete_account_kconf_update_LDADD = $(LIB_QT)
|
||||
|
||||
kopete_pluginloader2_kconf_update_SOURCES = kopete-pluginloader2.cpp
|
||||
kopete_pluginloader2_kconf_update_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
|
||||
kopete_pluginloader2_kconf_update_LDADD = $(LIB_QT)
|
||||
|
||||
kopete_nameTracking_kconf_update_SOURCES = kopete-nameTracking.cpp
|
||||
kopete_nameTracking_kconf_update_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
|
||||
kopete_nameTracking_kconf_update_LDADD = $(LIB_QT) $(LIB_TDECORE)
|
||||
|
||||
# vim: set noet:
|
||||
|
@ -1,4 +0,0 @@
|
||||
Id=kopete0.9/r1
|
||||
File=kopeterc
|
||||
Script=kopete-jabberpriorityaddition-kconf_update.sh,sh
|
||||
|
@ -1,4 +0,0 @@
|
||||
Id=kopete0.9/r1
|
||||
File=kopeterc
|
||||
Script=kopete-jabberproxytype-kconf_update.sh,sh
|
||||
|
@ -1,3 +0,0 @@
|
||||
Id=kopete0.9/r1
|
||||
File=kopeterc
|
||||
Script=kopete-nameTracking-kconf_update
|
@ -0,0 +1,64 @@
|
||||
#################################################
|
||||
#
|
||||
# (C) 2010-2011 Serghei Amelian
|
||||
# serghei (DOT) amelian (AT) gmail.com
|
||||
#
|
||||
# Improvements and feedback are welcome
|
||||
#
|
||||
# This file is released under GPL >= 2
|
||||
#
|
||||
#################################################
|
||||
|
||||
add_definitions( -DKDE_NO_COMPAT )
|
||||
|
||||
include_directories(
|
||||
${TDE_INCLUDE_DIR}
|
||||
${TQT_INCLUDE_DIRS}
|
||||
)
|
||||
|
||||
link_directories(
|
||||
${TQT_LIBRARY_DIRS}
|
||||
)
|
||||
|
||||
|
||||
##### other data ################################
|
||||
|
||||
install( FILES
|
||||
kopete-pluginloader.upd kopete-account-tdeconf_update.upd
|
||||
kopete-pluginloader2.upd kopete-jabberproxytype-tdeconf_update.upd
|
||||
kopete-jabberpriorityaddition-tdeconf_update.upd
|
||||
kopete-nameTracking.upd
|
||||
DESTINATION ${KCONF_UPDATE_INSTALL_DIR} )
|
||||
|
||||
install( PROGRAMS
|
||||
kopete-pluginloader.pl kopete-jabberpriorityaddition-tdeconf_update.sh
|
||||
kopete-pluginloader2.sh kopete-jabberproxytype-tdeconf_update.sh
|
||||
kopete-account-0.10.pl kopete-account-tdeconf_update.sh
|
||||
DESTINATION ${KCONF_UPDATE_INSTALL_DIR} )
|
||||
|
||||
|
||||
##### kopete_account_tdeconf_update (executable) ##
|
||||
|
||||
tde_add_executable( "kopete-account-tdeconf_update"
|
||||
SOURCES kopete-account-tdeconf_update.cpp
|
||||
LINK ${TQT_LIBRARIES}
|
||||
DESTINATION ${LIB_INSTALL_DIR}/tdeconf_update_bin
|
||||
)
|
||||
|
||||
|
||||
##### kopete_pluginloader2_tdeconf_update (executable)
|
||||
|
||||
tde_add_executable( "kopete-pluginloader2-tdeconf_update"
|
||||
SOURCES kopete-pluginloader2.cpp
|
||||
LINK ${TQT_LIBRARIES}
|
||||
DESTINATION ${LIB_INSTALL_DIR}/tdeconf_update_bin
|
||||
)
|
||||
|
||||
|
||||
##### kopete_nameTracking_tdeconf_update (executable)
|
||||
|
||||
tde_add_executable( "kopete-nameTracking-tdeconf_update"
|
||||
SOURCES kopete-nameTracking.cpp
|
||||
LINK tdecore-shared
|
||||
DESTINATION ${LIB_INSTALL_DIR}/tdeconf_update_bin
|
||||
)
|
@ -0,0 +1,32 @@
|
||||
AM_CPPFLAGS = -DKDE_NO_COMPAT -DQT_NO_COMPAT $(all_includes)
|
||||
|
||||
update_DATA = kopete-pluginloader.upd kopete-account-tdeconf_update.upd \
|
||||
kopete-pluginloader2.upd kopete-jabberproxytype-tdeconf_update.upd \
|
||||
kopete-jabberpriorityaddition-tdeconf_update.upd kopete-nameTracking.upd
|
||||
update_SCRIPTS = kopete-pluginloader.pl kopete-account-tdeconf_update.sh \
|
||||
kopete-pluginloader2.sh kopete-jabberproxytype-tdeconf_update.sh \
|
||||
kopete-jabberpriorityaddition-tdeconf_update.sh kopete-account-0.10.pl
|
||||
updatedir = $(kde_datadir)/tdeconf_update
|
||||
|
||||
# The Qt app cannot go into kde_datadir, that is not portable.
|
||||
# install to kde_bindir/tdeconf_update_bin instead.
|
||||
# KDE 3.2 will allow tdeconf_update scripts to run directly from there,
|
||||
# but for us that's too late. Use the .sh script as a workaround.
|
||||
tdeconf_PROGRAMS = kopete-account-tdeconf_update kopete-pluginloader2-tdeconf_update \
|
||||
kopete-nameTracking-tdeconf_update
|
||||
tdeconfdir = $(libdir)/tdeconf_update_bin
|
||||
|
||||
kopete_account_tdeconf_update_SOURCES = kopete-account-tdeconf_update.cpp
|
||||
kopete_account_tdeconf_update_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
|
||||
kopete_account_tdeconf_update_LDADD = $(LIB_QT)
|
||||
|
||||
kopete_pluginloader2_tdeconf_update_SOURCES = kopete-pluginloader2.cpp
|
||||
kopete_pluginloader2_tdeconf_update_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
|
||||
kopete_pluginloader2_tdeconf_update_LDADD = $(LIB_QT)
|
||||
|
||||
kopete_nameTracking_tdeconf_update_SOURCES = kopete-nameTracking.cpp
|
||||
kopete_nameTracking_tdeconf_update_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
|
||||
kopete_nameTracking_tdeconf_update_LDADD = $(LIB_QT) $(LIB_TDECORE)
|
||||
|
||||
# vim: set noet:
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
kconf_update app for migrating kopete 0.6.x accounts to 0.7. Code is
|
||||
tdeconf_update app for migrating kopete 0.6.x accounts to 0.7. Code is
|
||||
not up to my normal standards, but it does the job, and since it's
|
||||
supposed to run exactly once on each system that's good enough for me :)
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
IFS=:
|
||||
SUFF=kconf_update_bin/kopete-account-kconf_update
|
||||
SUFF=tdeconf_update_bin/kopete-account-tdeconf_update
|
||||
for path in `tde-config --path lib`; do
|
||||
if test -x "$path/$SUFF"; then
|
||||
exec "$path/$SUFF"
|
@ -1,6 +1,6 @@
|
||||
Id=kopete0.7/r1
|
||||
File=kopeterc
|
||||
Script=kopete-account-kconf_update.sh,sh
|
||||
Script=kopete-account-tdeconf_update.sh,sh
|
||||
|
||||
#remove the PluginData_ProtocolID_ prefix from config keys
|
||||
Id=kopete0.10/r1
|
@ -0,0 +1,4 @@
|
||||
Id=kopete0.9/r1
|
||||
File=kopeterc
|
||||
Script=kopete-jabberpriorityaddition-tdeconf_update.sh,sh
|
||||
|
@ -0,0 +1,4 @@
|
||||
Id=kopete0.9/r1
|
||||
File=kopeterc
|
||||
Script=kopete-jabberproxytype-tdeconf_update.sh,sh
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
kconf_update app for updating the contactlist format ( <= 0.9.0) for MetaContacts to
|
||||
tdeconf_update app for updating the contactlist format ( <= 0.9.0) for MetaContacts to
|
||||
track the name of a subcontact.
|
||||
|
||||
Kopete (c) 2002-2004 by the Kopete developers <kopete-devel@kde.org>
|
@ -0,0 +1,3 @@
|
||||
Id=kopete0.9/r1
|
||||
File=kopeterc
|
||||
Script=kopete-nameTracking-tdeconf_update
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
kconf_update app for migrating the list of loaded plugins in
|
||||
tdeconf_update app for migrating the list of loaded plugins in
|
||||
kopete 0.7.x to the new KPluginSelector format.
|
||||
|
||||
Copyright (c) 2003 by Martijn Klingens <klingens@kde.org>
|
@ -1,7 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
IFS=:
|
||||
SUFF=kconf_update_bin/kopete-pluginloader2-kconf_update
|
||||
SUFF=tdeconf_update_bin/kopete-pluginloader2-tdeconf_update
|
||||
for path in `tde-config --path lib`; do
|
||||
if test -x "$path/$SUFF"; then
|
||||
exec "$path/$SUFF"
|
@ -0,0 +1,22 @@
|
||||
## Makefile.am for folder file meta info plugin
|
||||
|
||||
INCLUDES = $(all_includes)
|
||||
|
||||
# these are the headers for your project
|
||||
noinst_HEADERS = tdefile_torrent.h bbase.h bdict.h bytetape.h \
|
||||
bstring.h bint.h blist.h
|
||||
|
||||
kde_module_LTLIBRARIES = tdefile_torrent.la
|
||||
|
||||
tdefile_torrent_la_SOURCES = bytetape.cpp bint.cpp bstring.cpp blist.cpp bdict.cpp tdefile_torrent.cpp
|
||||
tdefile_torrent_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
|
||||
tdefile_torrent_la_LIBADD = $(LIB_KIO)
|
||||
|
||||
# let automoc handle all of the meta source files (moc)
|
||||
METASOURCES = AUTO
|
||||
|
||||
services_DATA = tdefile_torrent.desktop
|
||||
servicesdir = $(kde_servicesdir)
|
||||
|
||||
messages:
|
||||
$(XGETTEXT) *.cpp -o $(podir)/tdefile_torrent.pot
|
Loading…
Reference in new issue