- Update to version 2.2.1

- Add LICENSE

PR:		ports/155447
Submitted by:	Maxim Ignatenko <gelraen.ua@gmail.com> (maintainer)
Approved by:	miwi, wen (mentors implicit)
This commit is contained in:
Pawel Pekala 2011-10-05 22:59:55 +00:00
parent 8d5da2b0ae
commit dbf80a4669
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=283011
25 changed files with 987 additions and 802 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= eiskaltdcpp-data
PORTVERSION= 2.1.1
PORTVERSION= 2.2.1
CATEGORIES= net-p2p
MASTER_SITES= GOOGLE_CODE
DISTNAME= eiskaltdcpp-${DISTVERSION}
@ -14,10 +14,13 @@ DISTNAME= eiskaltdcpp-${DISTVERSION}
MAINTAINER= gelraen.ua@gmail.com
COMMENT= Shared data for EiskaltDC++ GUIs
LICENSE= GPLv3
PROJECTHOST= eiskaltdc
USE_BZIP2= yes
USE_XZ= yes
NO_BUILD= yes
INSTALLS_ICONS= yes
OPTIONS= EMOTICONS "Install emoticons" on \
EXAMPLES "Install script examples" on \
@ -53,20 +56,24 @@ PLIST_SUB+= SOUNDS="@comment "
.endif
do-install:
${MKDIR} ${DATA_DIR}
${TOUCH} ${DATA_DIR}/keep_me
@${MKDIR} ${DATA_DIR}
@${TOUCH} ${DATA_DIR}/keep_me
.for SIZE in 16x16 22x22 24x24 32x32 48x48 64x64 128x128
@${MKDIR} "${LOCALBASE}/share/icons/hicolor/${SIZE}/apps"
@${CP} -v "${WRKSRC}/icons/icon_${SIZE}.png" "${LOCALBASE}/share/icons/hicolor/${SIZE}/apps/eiskaltdcpp.png"
.endfor
.if defined(WITH_EMOTICONS)
${CP} -rv ${WRKSRC}/emoticons ${DATA_DIR}
@${CP} -rv ${WRKSRC}/emoticons ${DATA_DIR}
.endif
.if defined(WITH_EXAMPLES)
${MKDIR} ${DATA_DIR}/examples
${INSTALL_SCRIPT} ${WRKSRC}/examples/* ${DATA_DIR}/examples
@${MKDIR} ${DATA_DIR}/examples
@${INSTALL_SCRIPT} ${WRKSRC}/examples/* ${DATA_DIR}/examples
.endif
.if defined(WITH_LUASCRIPTS)
${CP} -rv ${WRKSRC}/luascripts ${DATA_DIR}
@${CP} -rv ${WRKSRC}/luascripts ${DATA_DIR}
.endif
.if defined(WITH_SOUNDS)
${CP} -rv ${WRKSRC}/sounds ${DATA_DIR}
@${CP} -rv ${WRKSRC}/sounds ${DATA_DIR}
.endif
.include <bsd.port.mk>

View File

@ -1,2 +1,2 @@
SHA256 (eiskaltdcpp-2.1.1.tar.bz2) = 7c9d2288c2f39e95d02baff20df94f00c8343dbec182206758c3751fc880d944
SIZE (eiskaltdcpp-2.1.1.tar.bz2) = 2079712
SHA256 (eiskaltdcpp-2.2.1.tar.xz) = 2b2bd627a1325c595f604766404ca4f4787db1b49b4b0c5c5d8e88ddfc2a2c40
SIZE (eiskaltdcpp-2.2.1.tar.xz) = 1916680

View File

@ -1,6 +1,8 @@
EiskaltDC++ is a program for UNIX-like systems that uses the Direct Connect
EiskaltDC++ is a cross-platform program that uses the Direct Connect
and ADC protocol. It is compatible with other DC clients, such as the
original DC from Neomodus, DC++ and derivatives. EiskaltDC++ also
interoperates with all common DC hub software.
This port contains shared data for EiskaltDC++ GUIs.
WWW: http://code.google.com/p/eiskaltdc/

File diff suppressed because it is too large Load Diff

View File

@ -6,8 +6,7 @@
#
PORTNAME= eiskaltdcpp-gtk
PORTVERSION= 2.1.1
PORTREVISION= 1
PORTVERSION= 2.2.1
CATEGORIES= net-p2p
MASTER_SITES= GOOGLE_CODE
DISTNAME= eiskaltdcpp-${DISTVERSION}
@ -15,13 +14,15 @@ DISTNAME= eiskaltdcpp-${DISTVERSION}
MAINTAINER= gelraen.ua@gmail.com
COMMENT= EiskaltDC++ Direct Connect client GTK GUI
LICENSE= GPLv3
RUN_DEPENDS= ${LOCALBASE}/share/eiskaltdcpp/keep_me:${PORTSDIR}/net-p2p/eiskaltdcpp-data
LIB_DEPENDS= eiskaltdcpp:${PORTSDIR}/net-p2p/eiskaltdcpp-lib
CMAKE_ARGS+= -DBUILD_LIB:BOOL=OFF
PROJECTHOST= eiskaltdc
USE_BZIP2= yes
USE_XZ= yes
USE_GCC= 4.2+
USE_CMAKE= yes
USE_GETTEXT= yes

View File

@ -1,2 +1,2 @@
SHA256 (eiskaltdcpp-2.1.1.tar.bz2) = 7c9d2288c2f39e95d02baff20df94f00c8343dbec182206758c3751fc880d944
SIZE (eiskaltdcpp-2.1.1.tar.bz2) = 2079712
SHA256 (eiskaltdcpp-2.2.1.tar.xz) = 2b2bd627a1325c595f604766404ca4f4787db1b49b4b0c5c5d8e88ddfc2a2c40
SIZE (eiskaltdcpp-2.2.1.tar.xz) = 1916680

View File

@ -1,6 +1,6 @@
--- CMakeLists.txt.orig 2010-11-21 23:38:14.000000000 +0100
+++ CMakeLists.txt 2010-11-26 15:24:18.000000000 +0100
@@ -175,14 +175,14 @@
--- ./CMakeLists.txt.orig 2011-03-08 19:47:12.000000000 +0200
+++ ./CMakeLists.txt 2011-03-10 16:22:20.000000000 +0200
@@ -184,14 +184,14 @@
if (USE_LIBGNOME2)
message (STATUS "Building with LibGnome2 support")
@ -13,36 +13,31 @@
if (USE_LIBNOTIFY)
message (STATUS "Building with libnotify support")
- set (LIBNOTIFY "-lnotify")
+ find_library(LIBNOTIFY notify)
+ find_library(LIBNOTIFY notify)
else (USE_LIBNOTIFY)
message (STATUS "Building without libnotify support")
endif (USE_LIBNOTIFY)
@@ -301,19 +301,17 @@
if (CMAKE_CROSSCOMPILING)
set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -enable-auto-import")
endif (CMAKE_CROSSCOMPILING)
@@ -316,16 +316,14 @@
if (MINGW)
set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--enable-auto-import")
endif (MINGW)
- if (NOT APPLE)
- set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wl,--as-needed")
- set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wl,--as-needed")
- set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wl,--as-needed")
- set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wl,--as-needed")
- endif (NOT APPLE)
set (CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} -pipe -DNDEBUG")
set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -DQT_NO_DEBUG -pipe")
set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -UNDEBUG -g3 -pipe")
#endif (CMAKE_COMPILER_IS_GNUСXX AND CMAKE_COMPILER_IS_GNUC)
endif (NOT MSVC)
endif ()
-include_directories(${eiskaltdcpp_BINARY_DIR}
- ${eiskaltdcpp_SOURCE_DIR}
- ${GMP_INCLUDE_DIR}
+include_directories(
+ ${EISKALTDCPP_INCLUDE_DIR}
+ ${eiskaltdcpp_BINARY_DIR}
+ ${eiskaltdcpp_SOURCE_DIR}
+ ${GMP_INCLUDE_DIR}
+ ${EISKALTDCPP_INCLUDE_DIR}
+ ${eiskaltdcpp_BINARY_DIR}
${eiskaltdcpp_SOURCE_DIR}
${GMP_INCLUDE_DIR}
)
message(STATUS "CMAKE will use this libs (and headers) during build:
@@ -375,7 +373,9 @@
@@ -395,7 +393,9 @@
add_subdirectory (dht)
endif (DHT)
@ -53,7 +48,7 @@
if (USE_QT)
add_subdirectory (eiskaltdcpp-qt)
@@ -420,11 +420,11 @@
@@ -443,11 +443,11 @@
LOCALE_LIST "${LANGUAGES}"
COPYRIGHT_HOLDER "EiskaltDC++ team"
SOURCES "${DCPP_SRCS};${DCPP_HDRS}"

View File

@ -1,5 +1,5 @@
--- ./eiskaltdcpp-gtk/CMakeLists.txt.orig 2010-11-22 00:38:14.000000000 +0200
+++ ./eiskaltdcpp-gtk/CMakeLists.txt 2010-11-24 14:47:03.000000000 +0200
--- ./eiskaltdcpp-gtk/CMakeLists.txt.orig 2011-03-08 19:47:12.000000000 +0200
+++ ./eiskaltdcpp-gtk/CMakeLists.txt 2011-03-10 16:22:20.000000000 +0200
@@ -12,7 +12,7 @@
set (GTK_SRCS @gtk_srcs@ PARENT_SCOPE)
set (GTK_HDRS @gtk_hdrs@ PARENT_SCOPE)
@ -9,8 +9,8 @@
include_directories (
${GTK2_INCLUDE_DIRS}
@@ -36,6 +36,10 @@
list (APPEND LIBS ${LUA_LIBRARIES})
@@ -37,6 +37,10 @@
set_property(SOURCE ${PROJECT_SOURCE_DIR}/src/mainwindow.cc ${PROJECT_SOURCE_DIR}/src/hub.cc PROPERTY COMPILE_DEFINITIONS LUA_SCRIPT)
endif (LUA_SCRIPT)
+if (USE_MINIUPNP OR FREE_SPACE_BAR_C)
@ -20,7 +20,7 @@
add_executable (eiskaltdcpp-gtk MACOSX_BUNDLE WIN32
${gtk_srcs}
)
@@ -56,10 +60,19 @@
@@ -71,10 +75,19 @@
add_definitions(-DCLIENT_RES_DIR="${CLIENT_DATA_DIR}/gtk/resources")
endif (APPLE)
@ -42,7 +42,7 @@
endif (APPLE)
if (UNIX)
@@ -98,6 +111,6 @@
@@ -113,6 +126,6 @@
else (APPLE)
if (UNIX)
install (FILES eiskaltdcpp-gtk.desktop DESTINATION ${SHARE_DIR}/applications)

View File

@ -0,0 +1,18 @@
--- ./eiskaltdcpp-gtk/src/wulfor.cc.orig 2011-03-10 16:43:57.000000000 +0200
+++ ./eiskaltdcpp-gtk/src/wulfor.cc 2011-03-10 16:44:22.000000000 +0200
@@ -37,7 +37,6 @@
#define GUI_PACKAGE "eiskaltdcpp-gtk"
#include "VersionGlobal.h"
-#include "extra/stacktrace.h"
void printHelp()
{
@@ -135,7 +134,6 @@
g_set_application_name("EiskaltDC++ Gtk");
signal(SIGPIPE, SIG_IGN);
- signal(SIGSEGV, printBacktrace);
WulforSettingsManager::newInstance();
WulforManager::start(argc, argv);

View File

@ -1,11 +0,0 @@
--- eiskaltdcpp-gtk/src/notify.cc.orig 2011-08-12 11:54:13.000000000 +0200
+++ eiskaltdcpp-gtk/src/notify.cc 2011-08-12 11:54:24.000000000 +0200
@@ -69,7 +69,7 @@ void Notify::init()
{
#ifdef USE_LIBNOTIFY
notify_init(g_get_application_name());
- notification = notify_notification_new("template", "template", NULL, NULL);
+ notification = notify_notification_new("template", "template", NULL);
#endif // USE_LIBNOTIFY
action = FALSE;
}

View File

@ -1,4 +1,4 @@
EiskaltDC++ is a program for UNIX-like systems that uses the Direct Connect
EiskaltDC++ is a cross-platform program that uses the Direct Connect
and ADC protocol. It is compatible with other DC clients, such as the
original DC from Neomodus, DC++ and derivatives. EiskaltDC++ also
interoperates with all common DC hub software.

View File

@ -1,6 +1,7 @@
bin/eiskaltdcpp-gtk
share/applications/eiskaltdcpp-gtk.desktop
share/eiskaltdcpp/gtk/glade/adlsearch.glade
share/eiskaltdcpp/gtk/glade/cmddebug.glade
share/eiskaltdcpp/gtk/glade/downloadqueue.glade
share/eiskaltdcpp/gtk/glade/favoritehubs.glade
share/eiskaltdcpp/gtk/glade/favoriteusers.glade

View File

@ -6,7 +6,7 @@
#
PORTNAME= eiskaltdcpp-lib
PORTVERSION= 2.1.1
PORTVERSION= 2.2.1
CATEGORIES= net-p2p
MASTER_SITES= GOOGLE_CODE
DISTNAME= eiskaltdcpp-${DISTVERSION}
@ -14,11 +14,13 @@ DISTNAME= eiskaltdcpp-${DISTVERSION}
MAINTAINER= gelraen.ua@gmail.com
COMMENT= A Direct Connect client shared library
LICENSE= GPLv3
LIB_DEPENDS= boost_system:${PORTSDIR}/devel/boost-libs
PROJECTHOST= eiskaltdc
USE_BZIP2= yes
USE_XZ= yes
USE_GCC= 4.2+
USE_CMAKE= yes
USE_GETTEXT= yes

View File

@ -1,2 +1,2 @@
SHA256 (eiskaltdcpp-2.1.1.tar.bz2) = 7c9d2288c2f39e95d02baff20df94f00c8343dbec182206758c3751fc880d944
SIZE (eiskaltdcpp-2.1.1.tar.bz2) = 2079712
SHA256 (eiskaltdcpp-2.2.1.tar.xz) = 2b2bd627a1325c595f604766404ca4f4787db1b49b4b0c5c5d8e88ddfc2a2c40
SIZE (eiskaltdcpp-2.2.1.tar.xz) = 1916680

View File

@ -1,6 +1,17 @@
--- ./CMakeLists.txt.orig 2010-11-22 00:38:14.000000000 +0200
+++ ./CMakeLists.txt 2010-11-22 01:35:58.000000000 +0200
@@ -493,3 +493,12 @@
--- ./CMakeLists.txt.orig 2011-03-08 19:47:12.000000000 +0200
+++ ./CMakeLists.txt 2011-03-09 19:18:26.000000000 +0200
@@ -316,10 +316,6 @@
if (MINGW)
set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--enable-auto-import")
endif (MINGW)
- if (NOT APPLE)
- set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wl,--as-needed")
- set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wl,--as-needed")
- endif (NOT APPLE)
set (CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} -pipe -DNDEBUG")
set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -DQT_NO_DEBUG -pipe")
set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -UNDEBUG -g3 -pipe")
@@ -514,3 +510,12 @@
install (FILES icons/icon_128x128.png DESTINATION ${SHARE_DIR}/pixmaps/ RENAME eiskaltdcpp.png)
endif (APPLE)
endif (USE_QT OR USE_GTK)

View File

@ -1,25 +1,26 @@
--- ./dcpp/CMakeLists.txt.orig 2010-11-22 00:38:14.000000000 +0200
+++ ./dcpp/CMakeLists.txt 2010-11-22 01:37:22.000000000 +0200
@@ -27,9 +27,6 @@
if (APPLE)
set (APPLE_LIBS "iconv")
--- ./dcpp/CMakeLists.txt.orig 2011-03-08 19:47:12.000000000 +0200
+++ ./dcpp/CMakeLists.txt 2011-03-09 19:22:26.000000000 +0200
@@ -30,8 +30,6 @@
set (APPLE_LIBS "iconv")
endif (APPLE)
-if (USE_MINIUPNP OR FREE_SPACE_BAR_C)
-set (UPNP "extra")
-endif (USE_MINIUPNP OR FREE_SPACE_BAR_C)
add_library (dcpp ${LINK} ${dcpp_srcs})
if (USE_DHT)
add_definitions ( -DUSE_DHT )
@@ -45,7 +42,7 @@
target_link_libraries (dcpp ${BZIP2_LIBRARIES} ${ZLIB_LIBRARIES}
${OPENSSL_LIBRARIES} ${GETTEXT_LIBRARIES} ${ICONV_LIBRARIES} ${WIN32_LIBS} ${APPLE_LIBS} ${LUA_LIBRARIES} ${UPNP} ${PCRE})
-set_target_properties(dcpp PROPERTIES VERSION ${VERSION} OUTPUT_NAME "eiskaltdcpp")
+set_target_properties(dcpp PROPERTIES SOVERSION 2 VERSION ${VERSION} OUTPUT_NAME "eiskaltdcpp")
-set (UPNP "extra")
-
add_library (dcpp ${LINK} ${dcpp_srcs})
if (USE_DHT)
@@ -71,8 +69,8 @@
endif (WIN32)
target_link_libraries (dcpp ${PTHREADS} ${BZIP2_LIBRARIES} ${ZLIB_LIBRARIES}
-${OPENSSL_LIBRARIES} ${GETTEXT_LIBRARIES} ${ICONV_LIBRARIES} ${WIN32_LIBS} ${APPLE_LIBS} ${LUA_LIBRARIES} ${UPNP} ${PCRE} ${DHT_LIB})
-set_target_properties(dcpp PROPERTIES VERSION ${SOVERSION} OUTPUT_NAME "eiskaltdcpp")
+${OPENSSL_LIBRARIES} ${GETTEXT_LIBRARIES} ${ICONV_LIBRARIES} ${WIN32_LIBS} ${APPLE_LIBS} ${LUA_LIBRARIES} ${UPNP} ${PCRE} ${DHT_LIB} extra)
+set_target_properties(dcpp PROPERTIES SOVERSION 2 VERSION ${SOVERSION} OUTPUT_NAME "eiskaltdcpp")
if (APPLE)
set (LIBDIR1 .)
set (LIBDIR ${PROJECT_NAME_GLOBAL}.app/Contents/MacOS)
@@ -53,6 +50,6 @@
set (LIBDIR1 .)
@@ -81,6 +79,6 @@
if (LINK STREQUAL SHARED)
install (TARGETS dcpp

View File

@ -1,4 +1,4 @@
EiskaltDC++ is a program for UNIX-like systems that uses the Direct Connect
EiskaltDC++ is a cross-platform program that uses the Direct Connect
and ADC protocol. It is compatible with other DC clients, such as the
original DC from Neomodus, DC++ and derivatives. EiskaltDC++ also
interoperates with all common DC hub software.

View File

@ -1,104 +1,112 @@
include/eiskaltdcpp/dcpp/ScriptManager.h
include/eiskaltdcpp/dcpp/DownloadManager.h
include/eiskaltdcpp/dcpp/Transfer.h
include/eiskaltdcpp/dcpp/Streams.h
include/eiskaltdcpp/dcpp/FinishedManagerListener.h
include/eiskaltdcpp/dcpp/HashManager.h
include/eiskaltdcpp/dcpp/ConnectionManagerListener.h
include/eiskaltdcpp/dcpp/BufferedSocketListener.h
include/eiskaltdcpp/dcpp/FinishedManager.h
include/eiskaltdcpp/dcpp/HttpConnection.h
include/eiskaltdcpp/dcpp/ResourceManager.h
include/eiskaltdcpp/dcpp/BufferedSocket.h
include/eiskaltdcpp/dcpp/PerFolderLimit.h
include/eiskaltdcpp/dcpp/ShareManager.h
include/eiskaltdcpp/dcpp/ClientManagerListener.h
include/eiskaltdcpp/dcpp/ZUtils.h
include/eiskaltdcpp/dcpp/SSLSocket.h
include/eiskaltdcpp/dcpp/version.h
include/eiskaltdcpp/dcpp/SettingsManager.h
include/eiskaltdcpp/dcpp/HashBloom.h
include/eiskaltdcpp/dcpp/FastAlloc.h
include/eiskaltdcpp/dcpp/SSL.h
include/eiskaltdcpp/dcpp/MerkleCheckOutputStream.h
include/eiskaltdcpp/dcpp/FavoriteManager.h
include/eiskaltdcpp/dcpp/Text.h
include/eiskaltdcpp/dcpp/FavoriteUser.h
include/eiskaltdcpp/dcpp/SearchResult.h
include/eiskaltdcpp/dcpp/Thread.h
include/eiskaltdcpp/dcpp/Upload.h
include/eiskaltdcpp/dcpp/SearchManager.h
include/eiskaltdcpp/dcpp/UPnP.h
include/eiskaltdcpp/dcpp/ConnectivityManager.h
include/eiskaltdcpp/dcpp/CryptoManager.h
include/eiskaltdcpp/dcpp/UserConnectionListener.h
include/eiskaltdcpp/dcpp/Flags.h
include/eiskaltdcpp/dcpp/FinishedItem.h
include/eiskaltdcpp/dcpp/QueueItem.h
include/eiskaltdcpp/dcpp/BloomFilter.h
include/eiskaltdcpp/dcpp/File.h
include/eiskaltdcpp/dcpp/Segment.h
include/eiskaltdcpp/dcpp/Pointer.h
include/eiskaltdcpp/dcpp/Singleton.h
include/eiskaltdcpp/dcpp/forward.h
include/eiskaltdcpp/dcpp/HubEntry.h
include/eiskaltdcpp/dcpp/BitOutputStream.h
include/eiskaltdcpp/dcpp/Wildcards.h
include/eiskaltdcpp/dcpp/Semaphore.h
include/eiskaltdcpp/dcpp/HashValue.h
include/eiskaltdcpp/dcpp/CID.h
include/eiskaltdcpp/dcpp/FavoriteManagerListener.h
include/eiskaltdcpp/dcpp/UPnPManager.h
include/eiskaltdcpp/dcpp/StringSearch.h
include/eiskaltdcpp/dcpp/stdinc.h
include/eiskaltdcpp/dcpp/DirectoryListing.h
include/eiskaltdcpp/dcpp/ClientManager.h
include/eiskaltdcpp/dcpp/Encoder.h
include/eiskaltdcpp/dcpp/ThrottleManager.h
include/eiskaltdcpp/dcpp/BZUtils.h
include/eiskaltdcpp/dcpp/DownloadManagerListener.h
include/eiskaltdcpp/dcpp/UserCommand.h
include/eiskaltdcpp/dcpp/ConnectionManager.h
include/eiskaltdcpp/dcpp/Download.h
include/eiskaltdcpp/dcpp/ClientListener.h
include/eiskaltdcpp/dcpp/AdcHub.h
include/eiskaltdcpp/dcpp/Client.h
include/eiskaltdcpp/dcpp/Exception.h
include/eiskaltdcpp/dcpp/StringTokenizer.h
include/eiskaltdcpp/dcpp/CriticalSection.h
include/eiskaltdcpp/dcpp/TimerManager.h
include/eiskaltdcpp/dcpp/UserConnection.h
include/eiskaltdcpp/dcpp/AdcCommand.h
include/eiskaltdcpp/dcpp/SFVReader.h
include/eiskaltdcpp/dcpp/QueueManager.h
include/eiskaltdcpp/dcpp/NmdcHub.h
include/eiskaltdcpp/dcpp/DCPlusPlus.h
include/eiskaltdcpp/dcpp/TigerHash.h
include/eiskaltdcpp/dcpp/LogManagerListener.h
include/eiskaltdcpp/dcpp/BitInputStream.h
include/eiskaltdcpp/dcpp/ADLSearch.h
include/eiskaltdcpp/dcpp/SearchManagerListener.h
include/eiskaltdcpp/dcpp/AdcCommand.h
include/eiskaltdcpp/dcpp/AdcHub.h
include/eiskaltdcpp/dcpp/Atomic.h
include/eiskaltdcpp/dcpp/BZUtils.h
include/eiskaltdcpp/dcpp/BitInputStream.h
include/eiskaltdcpp/dcpp/BitOutputStream.h
include/eiskaltdcpp/dcpp/BloomFilter.h
include/eiskaltdcpp/dcpp/BufferedSocket.h
include/eiskaltdcpp/dcpp/BufferedSocketListener.h
include/eiskaltdcpp/dcpp/CID.h
include/eiskaltdcpp/dcpp/ChatMessage.h
include/eiskaltdcpp/dcpp/Client.h
include/eiskaltdcpp/dcpp/ClientListener.h
include/eiskaltdcpp/dcpp/ClientManager.h
include/eiskaltdcpp/dcpp/ClientManagerListener.h
include/eiskaltdcpp/dcpp/ConnectionManager.h
include/eiskaltdcpp/dcpp/ConnectionManagerListener.h
include/eiskaltdcpp/dcpp/ConnectivityManager.h
include/eiskaltdcpp/dcpp/CriticalSection.h
include/eiskaltdcpp/dcpp/CryptoManager.h
include/eiskaltdcpp/dcpp/DCPlusPlus.h
include/eiskaltdcpp/dcpp/DebugManager.h
include/eiskaltdcpp/dcpp/DirectoryListing.h
include/eiskaltdcpp/dcpp/Download.h
include/eiskaltdcpp/dcpp/DownloadManager.h
include/eiskaltdcpp/dcpp/DownloadManagerListener.h
include/eiskaltdcpp/dcpp/Encoder.h
include/eiskaltdcpp/dcpp/Exception.h
include/eiskaltdcpp/dcpp/FastAlloc.h
include/eiskaltdcpp/dcpp/FavHubGroup.h
include/eiskaltdcpp/dcpp/FavoriteManager.h
include/eiskaltdcpp/dcpp/FavoriteManagerListener.h
include/eiskaltdcpp/dcpp/FavoriteUser.h
include/eiskaltdcpp/dcpp/File.h
include/eiskaltdcpp/dcpp/FilteredFile.h
include/eiskaltdcpp/dcpp/TaskQueue.h
include/eiskaltdcpp/dcpp/FinishedItem.h
include/eiskaltdcpp/dcpp/FinishedManager.h
include/eiskaltdcpp/dcpp/FinishedManagerListener.h
include/eiskaltdcpp/dcpp/Flags.h
include/eiskaltdcpp/dcpp/HashBloom.h
include/eiskaltdcpp/dcpp/HashManager.h
include/eiskaltdcpp/dcpp/HashManagerListener.h
include/eiskaltdcpp/dcpp/HashValue.h
include/eiskaltdcpp/dcpp/HttpConnection.h
include/eiskaltdcpp/dcpp/HubEntry.h
include/eiskaltdcpp/dcpp/LogManager.h
include/eiskaltdcpp/dcpp/LogManagerListener.h
include/eiskaltdcpp/dcpp/MerkleCheckOutputStream.h
include/eiskaltdcpp/dcpp/MerkleTree.h
include/eiskaltdcpp/dcpp/NmdcHub.h
include/eiskaltdcpp/dcpp/PerFolderLimit.h
include/eiskaltdcpp/dcpp/Pointer.h
include/eiskaltdcpp/dcpp/QueueItem.h
include/eiskaltdcpp/dcpp/QueueManager.h
include/eiskaltdcpp/dcpp/QueueManagerListener.h
include/eiskaltdcpp/dcpp/Util.h
include/eiskaltdcpp/dcpp/ResourceManager.h
include/eiskaltdcpp/dcpp/SFVReader.h
include/eiskaltdcpp/dcpp/SSL.h
include/eiskaltdcpp/dcpp/SSLSocket.h
include/eiskaltdcpp/dcpp/ScriptManager.h
include/eiskaltdcpp/dcpp/SearchManager.h
include/eiskaltdcpp/dcpp/SearchManagerListener.h
include/eiskaltdcpp/dcpp/SearchResult.h
include/eiskaltdcpp/dcpp/Segment.h
include/eiskaltdcpp/dcpp/Semaphore.h
include/eiskaltdcpp/dcpp/SettingsManager.h
include/eiskaltdcpp/dcpp/ShareManager.h
include/eiskaltdcpp/dcpp/SimpleXML.h
include/eiskaltdcpp/dcpp/SimpleXMLReader.h
include/eiskaltdcpp/dcpp/Singleton.h
include/eiskaltdcpp/dcpp/Socket.h
include/eiskaltdcpp/dcpp/Speaker.h
include/eiskaltdcpp/dcpp/Streams.h
include/eiskaltdcpp/dcpp/StringSearch.h
include/eiskaltdcpp/dcpp/StringTokenizer.h
include/eiskaltdcpp/dcpp/TaskQueue.h
include/eiskaltdcpp/dcpp/Text.h
include/eiskaltdcpp/dcpp/Thread.h
include/eiskaltdcpp/dcpp/ThrottleManager.h
include/eiskaltdcpp/dcpp/TigerHash.h
include/eiskaltdcpp/dcpp/TimerManager.h
include/eiskaltdcpp/dcpp/Transfer.h
include/eiskaltdcpp/dcpp/UPnP.h
include/eiskaltdcpp/dcpp/UPnPManager.h
include/eiskaltdcpp/dcpp/Upload.h
include/eiskaltdcpp/dcpp/UploadManager.h
include/eiskaltdcpp/dcpp/UploadManagerListener.h
include/eiskaltdcpp/dcpp/SimpleXML.h
include/eiskaltdcpp/dcpp/Socket.h
include/eiskaltdcpp/dcpp/LogManager.h
include/eiskaltdcpp/dcpp/ServerSocket.h
include/eiskaltdcpp/dcpp/HashManagerListener.h
include/eiskaltdcpp/dcpp/User.h
include/eiskaltdcpp/dcpp/UserCommand.h
include/eiskaltdcpp/dcpp/UserConnection.h
include/eiskaltdcpp/dcpp/UserConnectionListener.h
include/eiskaltdcpp/dcpp/Util.h
include/eiskaltdcpp/dcpp/Wildcards.h
include/eiskaltdcpp/dcpp/WindowInfo.h
include/eiskaltdcpp/dcpp/WindowManager.h
include/eiskaltdcpp/dcpp/WindowManagerListener.h
include/eiskaltdcpp/dcpp/ZUtils.h
include/eiskaltdcpp/dcpp/forward.h
include/eiskaltdcpp/dcpp/stdinc.h
include/eiskaltdcpp/dcpp/version.h
@dirrm include/eiskaltdcpp/dcpp
@dirrm include/eiskaltdcpp
lib/libeiskaltdcpp.so.2.1.x
lib/libeiskaltdcpp.so.2.2
lib/libeiskaltdcpp.so.2
lib/libeiskaltdcpp.so
share/locale/be/LC_MESSAGES/libeiskaltdcpp.mo
share/locale/bg/LC_MESSAGES/libeiskaltdcpp.mo
share/locale/cs/LC_MESSAGES/libeiskaltdcpp.mo
share/locale/en/LC_MESSAGES/libeiskaltdcpp.mo
share/locale/es/LC_MESSAGES/libeiskaltdcpp.mo
share/locale/fr/LC_MESSAGES/libeiskaltdcpp.mo

View File

@ -6,7 +6,7 @@
#
PORTNAME= eiskaltdcpp-qt
PORTVERSION= 2.1.1
PORTVERSION= 2.2.1
CATEGORIES= net-p2p
MASTER_SITES= GOOGLE_CODE
DISTNAME= eiskaltdcpp-${DISTVERSION}
@ -14,14 +14,17 @@ DISTNAME= eiskaltdcpp-${DISTVERSION}
MAINTAINER= gelraen.ua@gmail.com
COMMENT= EiskaltDC++ Direct Connect client Qt GUI
LICENSE= GPLv3
RUN_DEPENDS= ${LOCALBASE}/share/eiskaltdcpp/keep_me:${PORTSDIR}/net-p2p/eiskaltdcpp-data
LIB_DEPENDS+= eiskaltdcpp:${PORTSDIR}/net-p2p/eiskaltdcpp-lib
LIB_DEPENDS+= eiskaltdcpp:${PORTSDIR}/net-p2p/eiskaltdcpp-lib \
execinfo:${PORTSDIR}/devel/libexecinfo
CMAKE_ARGS+= -DBUILD_LIB:BOOL=OFF
PROJECTHOST= eiskaltdc
USE_BZIP2= yes
USE_XZ= yes
USE_GCC= 4.2+
USE_GETTEXT= yes
USE_CMAKE= yes
@ -35,6 +38,8 @@ OPTIONS= ASPELL "Build with aspell support" off \
FREE_SPACE "Free space bar in status panel" on \
DBUS_NOTIFY "DBus notification support" on \
QTSCRIPT "QtScript support" off \
QML "Qt Declarative ui support" off \
SQLITE "SQLite support (experimental)" off \
MINIUPNP "UPnP support" on
USE_QT_VER= 4
@ -74,12 +79,27 @@ CMAKE_ARGS+= -DDBUS_NOTIFY:BOOL=OFF
.if defined(WITH_QTSCRIPT)
CMAKE_ARGS+= -DUSE_JS:BOOL=ON
QT_COMPONENTS+= script
RUN_DEPENDS+= ${LOCALBASE}/lib/qt4/plugins/script/libqtscript_core.so:${PORTSDIR}/devel/qtscriptgenerator
PLIST_SUB+= QTSCRIPT=""
.else
CMAKE_ARGS+= -DUSE_JS:BOOL=OFF
PLIST_SUB+= QTSCRIPT="@comment "
.endif
.if defined(WITH_QML)
CMAKE_ARGS+= -DUSE_QT_QML:BOOL=ON
QT_COMPONENTS+= declarative
.else
CMAKE_ARGS+= -DUSE_QT_QML:BOOL=OFF
.endif
.if defined(WITH_SQLITE) && !defined(WITHOUT_SQLITE)
CMAKE_ARGS+= -DUSE_QT_SQLITE:BOOL=ON
QT_COMPONENTS+= sql-sqlite3
.else
CMAKE_ARGS+= -DUSE_QT_SQLITE:BOOL=OFF
.endif
.if defined(WITH_MINIUPNP)
LIB_DEPENDS+= miniupnpc:${PORTSDIR}/net/miniupnpc
CMAKE_ARGS+= -DUSE_MINIUPNP:BOOL=ON -DLOCAL_MINIUPNP:BOOL=OFF

View File

@ -1,2 +1,2 @@
SHA256 (eiskaltdcpp-2.1.1.tar.bz2) = 7c9d2288c2f39e95d02baff20df94f00c8343dbec182206758c3751fc880d944
SIZE (eiskaltdcpp-2.1.1.tar.bz2) = 2079712
SHA256 (eiskaltdcpp-2.2.1.tar.xz) = 2b2bd627a1325c595f604766404ca4f4787db1b49b4b0c5c5d8e88ddfc2a2c40
SIZE (eiskaltdcpp-2.2.1.tar.xz) = 1916680

View File

@ -1,31 +1,26 @@
--- CMakeLists.txt.orig 2010-11-21 23:38:14.000000000 +0100
+++ CMakeLists.txt 2010-11-26 15:00:17.000000000 +0100
@@ -301,19 +301,17 @@
if (CMAKE_CROSSCOMPILING)
set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -enable-auto-import")
endif (CMAKE_CROSSCOMPILING)
--- ./CMakeLists.txt.orig 2011-03-08 19:47:12.000000000 +0200
+++ ./CMakeLists.txt 2011-03-09 15:49:15.000000000 +0200
@@ -316,16 +316,14 @@
if (MINGW)
set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--enable-auto-import")
endif (MINGW)
- if (NOT APPLE)
- set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wl,--as-needed")
- set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wl,--as-needed")
- set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wl,--as-needed")
- set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wl,--as-needed")
- endif (NOT APPLE)
set (CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} -pipe -DNDEBUG")
set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -DQT_NO_DEBUG -pipe")
set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -UNDEBUG -g3 -pipe")
#endif (CMAKE_COMPILER_IS_GNUСXX AND CMAKE_COMPILER_IS_GNUC)
endif (NOT MSVC)
endif ()
-include_directories(${eiskaltdcpp_BINARY_DIR}
- ${eiskaltdcpp_SOURCE_DIR}
- ${GMP_INCLUDE_DIR}
+include_directories(
+ ${EISKALTDCPP_INCLUDE_DIR}
+ ${eiskaltdcpp_BINARY_DIR}
+ ${eiskaltdcpp_SOURCE_DIR}
+ ${GMP_INCLUDE_DIR}
+ ${EISKALTDCPP_INCLUDE_DIR}
+ ${eiskaltdcpp_BINARY_DIR}
${eiskaltdcpp_SOURCE_DIR}
${GMP_INCLUDE_DIR}
)
message(STATUS "CMAKE will use this libs (and headers) during build:
@@ -375,7 +373,9 @@
@@ -395,7 +393,9 @@
add_subdirectory (dht)
endif (DHT)
@ -36,7 +31,7 @@
if (USE_QT)
add_subdirectory (eiskaltdcpp-qt)
@@ -420,11 +420,11 @@
@@ -443,11 +443,11 @@
LOCALE_LIST "${LANGUAGES}"
COPYRIGHT_HOLDER "EiskaltDC++ team"
SOURCES "${DCPP_SRCS};${DCPP_HDRS}"

View File

@ -1,8 +1,8 @@
--- ./eiskaltdcpp-qt/CMakeLists.txt.orig 2010-11-22 00:38:14.000000000 +0200
+++ ./eiskaltdcpp-qt/CMakeLists.txt 2010-11-22 02:10:28.000000000 +0200
@@ -321,6 +321,10 @@
list (APPEND LIBS ${LUA_LIBRARIES})
endif (LUA_SCRIPT)
--- ./eiskaltdcpp-qt/CMakeLists.txt.orig 2011-03-08 19:47:12.000000000 +0200
+++ ./eiskaltdcpp-qt/CMakeLists.txt 2011-03-09 15:49:15.000000000 +0200
@@ -356,6 +356,10 @@
set_property(SOURCE ${PROJECT_SOURCE_DIR}/src/main.cpp PROPERTY COMPILE_DEFINITIONS FORCE_XDG )
endif (FORCE_XDG)
+if (USE_MINIUPNP OR FREE_SPACE_BAR_C)
+ list(APPEND LIBS extra)
@ -11,7 +11,7 @@
if (APPLE)
set (MACOSICON "${PROJECT_SOURCE_DIR}/../icons/icon_128x128.icns")
set (MACOSICONINBUNDLE "icon_128x128.icns")
@@ -358,10 +362,19 @@
@@ -393,10 +397,19 @@
add_definitions(-DCLIENT_RES_DIR="${CLIENT_DATA_DIR}/qt/resources")
endif (APPLE)
@ -25,15 +25,15 @@
+endif (BUILD_LIB)
+
if (APPLE)
- target_link_libraries (eiskaltdcpp-qt ${LIBS} dcpp iconv ixml)
+ target_link_libraries (eiskaltdcpp-qt ${LIBS} ${DCPP_LIB} iconv ixml)
- target_link_libraries (eiskaltdcpp-qt ${LIBS} dcpp iconv)
+ target_link_libraries (eiskaltdcpp-qt ${LIBS} ${DCPP_LIB} iconv)
else (APPLE)
- target_link_libraries (eiskaltdcpp-qt ${LIBS} dcpp)
+ target_link_libraries (eiskaltdcpp-qt ${LIBS} ${DCPP_LIB})
endif (APPLE)
if (UNIX AND NOT APPLE)
@@ -431,7 +444,7 @@
if (APPLE)
@@ -464,7 +477,7 @@
else (APPLE)
install (FILES ${PROJECT_BINARY_DIR}/default.rcc DESTINATION ${CLIENT_DATA_DIR}/qt/resources)
if (UNIX)

View File

@ -0,0 +1,20 @@
--- ./eiskaltdcpp-qt/src/main.cpp.orig 2011-03-09 15:49:53.000000000 +0200
+++ ./eiskaltdcpp-qt/src/main.cpp 2011-03-09 15:50:14.000000000 +0200
@@ -58,8 +58,6 @@
#include <signal.h>
#include <execinfo.h>
-#include "extra/stacktrace.h"
-
void installHandlers();
#ifdef FORCE_XDG
@@ -214,8 +212,6 @@
std::cout << QObject::tr("Cannot handle SIGPIPE").toStdString() << std::endl;
}
- signal(SIGSEGV, printBacktrace);
-
std::cout << QObject::tr("Signal handlers installed.").toStdString() << std::endl;
}

View File

@ -1,4 +1,4 @@
EiskaltDC++ is a program for UNIX-like systems that uses the Direct Connect
EiskaltDC++ is a cross-platform program that uses the Direct Connect
and ADC protocol. It is compatible with other DC clients, such as the
original DC from Neomodus, DC++ and derivatives. EiskaltDC++ also
interoperates with all common DC hub software.

View File

@ -55,6 +55,8 @@ share/eiskaltdcpp/qt/icons/appl/default/reconnect.png
share/eiskaltdcpp/qt/icons/appl/default/refrlist.png
share/eiskaltdcpp/qt/icons/appl/default/reload.png
share/eiskaltdcpp/qt/icons/appl/default/server.png
share/eiskaltdcpp/qt/icons/appl/default/slow.png
share/eiskaltdcpp/qt/icons/appl/default/slow_off.png
share/eiskaltdcpp/qt/icons/appl/default/spam.png
share/eiskaltdcpp/qt/icons/appl/default/spy.png
share/eiskaltdcpp/qt/icons/appl/default/status.png
@ -68,11 +70,83 @@ share/eiskaltdcpp/qt/icons/appl/default/view-filter.png
share/eiskaltdcpp/qt/icons/appl/default/zoom-in.png
share/eiskaltdcpp/qt/icons/appl/default/zoom-out.png
share/eiskaltdcpp/qt/icons/user/default/usericons.png
share/eiskaltdcpp/qt/icons/appl/faenza/adls.png
share/eiskaltdcpp/qt/icons/appl/faenza/application-exit.png
share/eiskaltdcpp/qt/icons/appl/faenza/application-x-archive.png
share/eiskaltdcpp/qt/icons/appl/faenza/application-x-executable.png
share/eiskaltdcpp/qt/icons/appl/faenza/audio-x-generic.png
share/eiskaltdcpp/qt/icons/appl/faenza/ball_green.png
share/eiskaltdcpp/qt/icons/appl/faenza/bookmark-new.png
share/eiskaltdcpp/qt/icons/appl/faenza/chat.png
share/eiskaltdcpp/qt/icons/appl/faenza/configure.png
share/eiskaltdcpp/qt/icons/appl/faenza/console.png
share/eiskaltdcpp/qt/icons/appl/faenza/dialog-close.png
share/eiskaltdcpp/qt/icons/appl/faenza/document-edit.png
share/eiskaltdcpp/qt/icons/appl/faenza/download.png
share/eiskaltdcpp/qt/icons/appl/faenza/edit-clear-locationbar-rtl.png
share/eiskaltdcpp/qt/icons/appl/faenza/edit-clear.png
share/eiskaltdcpp/qt/icons/appl/faenza/edit-copy.png
share/eiskaltdcpp/qt/icons/appl/faenza/edit-delete.png
share/eiskaltdcpp/qt/icons/appl/faenza/edit-find.png
share/eiskaltdcpp/qt/icons/appl/faenza/eraser.png
share/eiskaltdcpp/qt/icons/appl/faenza/face-smile.png
share/eiskaltdcpp/qt/icons/appl/faenza/fav.png
share/eiskaltdcpp/qt/icons/appl/faenza/favadd.png
share/eiskaltdcpp/qt/icons/appl/faenza/favrem.png
share/eiskaltdcpp/qt/icons/appl/faenza/favserver.png
share/eiskaltdcpp/qt/icons/appl/faenza/favusers.png
share/eiskaltdcpp/qt/icons/appl/faenza/find.png
share/eiskaltdcpp/qt/icons/appl/faenza/folder-blue.png
share/eiskaltdcpp/qt/icons/appl/faenza/freespace.png
share/eiskaltdcpp/qt/icons/appl/faenza/go-down-search.png
share/eiskaltdcpp/qt/icons/appl/faenza/go-down.png
share/eiskaltdcpp/qt/icons/appl/faenza/go-up-search.png
share/eiskaltdcpp/qt/icons/appl/faenza/go-up.png
share/eiskaltdcpp/qt/icons/appl/faenza/gui.png
share/eiskaltdcpp/qt/icons/appl/faenza/hashing.png
share/eiskaltdcpp/qt/icons/appl/faenza/hubmsg.png
share/eiskaltdcpp/qt/icons/appl/faenza/icon_appl.png
share/eiskaltdcpp/qt/icons/appl/faenza/icon_appl_big.png
share/eiskaltdcpp/qt/icons/appl/faenza/icon_msg.png
share/eiskaltdcpp/qt/icons/appl/faenza/im-user-away.png
share/eiskaltdcpp/qt/icons/appl/faenza/image-x-generic.png
share/eiskaltdcpp/qt/icons/appl/faenza/list-add.png
share/eiskaltdcpp/qt/icons/appl/faenza/log_file.png
share/eiskaltdcpp/qt/icons/appl/faenza/message.png
share/eiskaltdcpp/qt/icons/appl/faenza/network-connect.png
share/eiskaltdcpp/qt/icons/appl/faenza/network-disconnect.png
share/eiskaltdcpp/qt/icons/appl/faenza/openlist.png
share/eiskaltdcpp/qt/icons/appl/faenza/own_filelist.png
share/eiskaltdcpp/qt/icons/appl/faenza/plugin.png
share/eiskaltdcpp/qt/icons/appl/faenza/pmmsg.png
share/eiskaltdcpp/qt/icons/appl/faenza/qt-logo.png
share/eiskaltdcpp/qt/icons/appl/faenza/reconnect.png
share/eiskaltdcpp/qt/icons/appl/faenza/refrlist.png
share/eiskaltdcpp/qt/icons/appl/faenza/reload.png
share/eiskaltdcpp/qt/icons/appl/faenza/server.png
share/eiskaltdcpp/qt/icons/appl/faenza/slow.png
share/eiskaltdcpp/qt/icons/appl/faenza/slow_off.png
share/eiskaltdcpp/qt/icons/appl/faenza/spam.png
share/eiskaltdcpp/qt/icons/appl/faenza/spy.png
share/eiskaltdcpp/qt/icons/appl/faenza/status.png
share/eiskaltdcpp/qt/icons/appl/faenza/text-x-generic.png
share/eiskaltdcpp/qt/icons/appl/faenza/transfer.png
share/eiskaltdcpp/qt/icons/appl/faenza/unknown.png
share/eiskaltdcpp/qt/icons/appl/faenza/users.png
share/eiskaltdcpp/qt/icons/appl/faenza/video-x-generic.png
share/eiskaltdcpp/qt/icons/appl/faenza/view-close.png
share/eiskaltdcpp/qt/icons/appl/faenza/view-filter.png
share/eiskaltdcpp/qt/icons/appl/faenza/zoom-in.png
share/eiskaltdcpp/qt/icons/appl/faenza/zoom-out.png
share/eiskaltdcpp/qt/icons/user/valknut/usericons.png
%%QTSCRIPT%%share/eiskaltdcpp/qt/qtscripts/amarok_nowplay/amarok.png
%%QTSCRIPT%%share/eiskaltdcpp/qt/qtscripts/amarok_nowplay/amarok.sh
%%QTSCRIPT%%share/eiskaltdcpp/qt/qtscripts/amarok_nowplay/main.js
%%QTSCRIPT%%share/eiskaltdcpp/qt/qtscripts/amarok_nowplay/script.desc
%%QTSCRIPT%%share/eiskaltdcpp/qt/qtscripts/clementine_nowplay/clementine.png
%%QTSCRIPT%%share/eiskaltdcpp/qt/qtscripts/clementine_nowplay/clementine.sh
%%QTSCRIPT%%share/eiskaltdcpp/qt/qtscripts/clementine_nowplay/main.js
%%QTSCRIPT%%share/eiskaltdcpp/qt/qtscripts/clementine_nowplay/script.desc
%%QTSCRIPT%%share/eiskaltdcpp/qt/qtscripts/gnome/commands.ru_RU.UTF-8.php
%%QTSCRIPT%%share/eiskaltdcpp/qt/qtscripts/gnome/gnome.png
%%QTSCRIPT%%share/eiskaltdcpp/qt/qtscripts/gnome/main.js
@ -96,6 +170,7 @@ share/eiskaltdcpp/qt/icons/user/valknut/usericons.png
share/eiskaltdcpp/qt/resources/default.rcc
share/eiskaltdcpp/qt/ts/be.qm
share/eiskaltdcpp/qt/ts/bg.qm
share/eiskaltdcpp/qt/ts/cs.qm
share/eiskaltdcpp/qt/ts/en.qm
share/eiskaltdcpp/qt/ts/es.qm
share/eiskaltdcpp/qt/ts/fr.qm
@ -106,6 +181,7 @@ share/eiskaltdcpp/qt/ts/sr.qm
share/eiskaltdcpp/qt/ts/sk.qm
share/eiskaltdcpp/qt/ts/uk.qm
%%QTSCRIPT%%@dirrm share/eiskaltdcpp/qt/qtscripts/amarok_nowplay
%%QTSCRIPT%%@dirrm share/eiskaltdcpp/qt/qtscripts/clementine_nowplay
%%QTSCRIPT%%@dirrm share/eiskaltdcpp/qt/qtscripts/gnome
%%QTSCRIPT%%@dirrm share/eiskaltdcpp/qt/qtscripts/logmanager
%%QTSCRIPT%%@dirrm share/eiskaltdcpp/qt/qtscripts/tic-tac-toe/content/pics
@ -114,6 +190,7 @@ share/eiskaltdcpp/qt/ts/uk.qm
%%QTSCRIPT%%@dirrm share/eiskaltdcpp/qt/qtscripts/konsole
%%QTSCRIPT%%@dirrm share/eiskaltdcpp/qt/qtscripts
@dirrm share/eiskaltdcpp/qt/icons/appl/default
@dirrm share/eiskaltdcpp/qt/icons/appl/faenza
@dirrm share/eiskaltdcpp/qt/icons/appl
@dirrm share/eiskaltdcpp/qt/icons/user/default
@dirrm share/eiskaltdcpp/qt/icons/user/valknut