Compare commits
69 Commits
@ -1,6 +1,6 @@
|
|||||||
[submodule "admin"]
|
[submodule "admin"]
|
||||||
path = admin
|
path = admin
|
||||||
url = http://system@scm.trinitydesktop.org/scm/git/tde-common-admin
|
url = https://system@scm.trinitydesktop.org/scm/git/tde-common-admin
|
||||||
[submodule "cmake"]
|
[submodule "cmake"]
|
||||||
path = cmake
|
path = cmake
|
||||||
url = http://system@scm.trinitydesktop.org/scm/git/tde-common-cmake
|
url = https://system@scm.trinitydesktop.org/scm/git/tde-common-cmake
|
||||||
|
@ -0,0 +1,23 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2018 Slávek Banko
|
||||||
|
# slavek.banko (AT) axis.cz
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
cmake_minimum_required( VERSION 2.8 )
|
||||||
|
|
||||||
|
|
||||||
|
##### include our cmake modules #################
|
||||||
|
|
||||||
|
set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
|
||||||
|
include( TDEL10n )
|
||||||
|
|
||||||
|
|
||||||
|
##### create translation templates ##############
|
||||||
|
|
||||||
|
tde_l10n_auto_add_subdirectories( )
|
@ -0,0 +1,82 @@
|
|||||||
|
############################################
|
||||||
|
# #
|
||||||
|
# Improvements and feedbacks are welcome #
|
||||||
|
# #
|
||||||
|
# This file is released under GPL >= 3 #
|
||||||
|
# #
|
||||||
|
############################################
|
||||||
|
|
||||||
|
|
||||||
|
cmake_minimum_required( VERSION 2.8 )
|
||||||
|
|
||||||
|
|
||||||
|
#### general package setup
|
||||||
|
|
||||||
|
project( kdiff3 )
|
||||||
|
set( VERSION R14.0.8 )
|
||||||
|
|
||||||
|
|
||||||
|
#### include essential cmake modules
|
||||||
|
|
||||||
|
include( FindPkgConfig )
|
||||||
|
include( CheckFunctionExists )
|
||||||
|
include( CheckSymbolExists )
|
||||||
|
include( CheckIncludeFile )
|
||||||
|
include( CheckLibraryExists )
|
||||||
|
include( CheckCSourceCompiles )
|
||||||
|
include( CheckCXXSourceCompiles )
|
||||||
|
|
||||||
|
|
||||||
|
#### include our cmake modules
|
||||||
|
|
||||||
|
set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
|
||||||
|
include( TDEMacros )
|
||||||
|
|
||||||
|
|
||||||
|
##### setup install paths
|
||||||
|
|
||||||
|
include( TDESetupPaths )
|
||||||
|
tde_setup_paths( )
|
||||||
|
|
||||||
|
|
||||||
|
##### optional stuff
|
||||||
|
|
||||||
|
option( WITH_ALL_OPTIONS "Enable all optional support" OFF )
|
||||||
|
option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} )
|
||||||
|
|
||||||
|
|
||||||
|
##### user requested modules
|
||||||
|
|
||||||
|
option( BUILD_ALL "Build all" ON )
|
||||||
|
option( BUILD_DOC "Build documentation" ${BUILD_ALL} )
|
||||||
|
option( BUILD_TRANSLATIONS "Build translations" ${BUILD_ALL} )
|
||||||
|
|
||||||
|
|
||||||
|
##### configure checks
|
||||||
|
|
||||||
|
include( ConfigureChecks.cmake )
|
||||||
|
|
||||||
|
|
||||||
|
###### global compiler settings
|
||||||
|
|
||||||
|
add_definitions( -DHAVE_CONFIG_H )
|
||||||
|
|
||||||
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TQT_CXX_FLAGS}" )
|
||||||
|
set( CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined" )
|
||||||
|
set( CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined" )
|
||||||
|
|
||||||
|
|
||||||
|
##### directories
|
||||||
|
|
||||||
|
add_subdirectory( src )
|
||||||
|
add_subdirectory( kdiff3plugin )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_DOC man )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_DOC doc )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_DOC data/doc )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_TRANSLATIONS kdiff3plugin/po )
|
||||||
|
|
||||||
|
|
||||||
|
##### write configure files
|
||||||
|
|
||||||
|
configure_file( config.h.cmake config.h @ONLY )
|
@ -0,0 +1,25 @@
|
|||||||
|
###########################################
|
||||||
|
# #
|
||||||
|
# Improvements and feedback are welcome #
|
||||||
|
# #
|
||||||
|
# This file is released under GPL >= 3 #
|
||||||
|
# #
|
||||||
|
###########################################
|
||||||
|
|
||||||
|
# required stuff
|
||||||
|
find_package( TQt )
|
||||||
|
find_package( TDE )
|
||||||
|
|
||||||
|
tde_setup_architecture_flags( )
|
||||||
|
|
||||||
|
include(TestBigEndian)
|
||||||
|
test_big_endian(WORDS_BIGENDIAN)
|
||||||
|
|
||||||
|
tde_setup_largefiles( )
|
||||||
|
|
||||||
|
|
||||||
|
##### check for gcc visibility support
|
||||||
|
|
||||||
|
if( WITH_GCC_VISIBILITY )
|
||||||
|
tde_setup_gcc_visibility( )
|
||||||
|
endif( WITH_GCC_VISIBILITY )
|
@ -1 +1 @@
|
|||||||
Subproject commit 04db460623e1f235e7239f08fdcc2d0ef72636af
|
Subproject commit f9148018b2f8a11fd830712c1b508046cc34ff22
|
@ -1 +1 @@
|
|||||||
Subproject commit 1994b808819fd74446cb8f1a0491b3e10244f463
|
Subproject commit ca47fa83300e843f1e469e3f455e58aa299e1e9d
|
@ -0,0 +1,8 @@
|
|||||||
|
#define VERSION "@VERSION@"
|
||||||
|
|
||||||
|
// Defined if you have fvisibility and fvisibility-inlines-hidden support.
|
||||||
|
#cmakedefine __KDE_HAVE_GCC_VISIBILITY 1
|
||||||
|
|
||||||
|
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||||
|
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||||
|
#cmakedefine WORDS_BIGENDIAN @WORDS_BIGENDIAN@
|
@ -0,0 +1,6 @@
|
|||||||
|
file( GLOB _htmls RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.html )
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES ${_htmls}
|
||||||
|
DESTINATION ${SHARE_INSTALL_PREFIX}/doc/${PROJECT_NAME}/html
|
||||||
|
)
|
@ -0,0 +1,6 @@
|
|||||||
|
##### create translation templates ##############
|
||||||
|
|
||||||
|
tde_l10n_create_template(
|
||||||
|
CATALOG "diff_ext"
|
||||||
|
DESTINATION "."
|
||||||
|
)
|
@ -1,96 +1,116 @@
|
|||||||
# Diff-ext-for-KDiff3
|
# SOME DESCRIPTIVE TITLE.
|
||||||
# Copyright (C) 2006 Joachim Eibl
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
# This file is distributed under the same license as the diff-ext-for-KDiff3 package.
|
|
||||||
# PO-Template created by Joachim Eibl <Joachim dot Eibl at gmx dot de>, 2006.
|
|
||||||
#
|
#
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"POT-Creation-Date: 2018-12-27 19:51+0100\n"
|
||||||
"POT-Creation-Date: 2006-10-03 06:05+0200\n"
|
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=CHARSET\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: diff_ext.cpp:368 diff_ext.cpp:402
|
#: _translatorinfo:1
|
||||||
msgid "Compare with"
|
msgid ""
|
||||||
|
"_: NAME OF TRANSLATORS\n"
|
||||||
|
"Your names"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: _translatorinfo:2
|
||||||
|
msgid ""
|
||||||
|
"_: EMAIL OF TRANSLATORS\n"
|
||||||
|
"Your emails"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: diff_ext.cpp:369
|
#: diff_ext.cpp:369
|
||||||
msgid "Merge with"
|
#, c-format
|
||||||
|
msgid "Compare with %1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: diff_ext.cpp:370
|
||||||
|
#, c-format
|
||||||
|
msgid "Merge with %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: diff_ext.cpp:384
|
#: diff_ext.cpp:386
|
||||||
msgid "3-way merge with base"
|
msgid "3-way merge with base"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: diff_ext.cpp:387
|
#: diff_ext.cpp:389
|
||||||
msgid "Save '%1' for later comparison or merge"
|
msgid "Save '%1' for later"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: diff_ext.cpp:408
|
#: diff_ext.cpp:404
|
||||||
msgid "Compare"
|
msgid "Compare with ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: diff_ext.cpp:407
|
||||||
|
msgid "Clear list"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: diff_ext.cpp:412
|
#: diff_ext.cpp:412
|
||||||
|
msgid "Compare"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: diff_ext.cpp:416
|
||||||
msgid "3 way comparison"
|
msgid "3 way comparison"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: diff_ext.cpp:418
|
#: diff_ext.cpp:422
|
||||||
msgid "About Diff-Ext ..."
|
msgid "About Diff-Ext ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: diff_ext.cpp:482
|
#: diff_ext.cpp:491
|
||||||
msgid "Diff-Ext Copyright (c) 2003-2006, Sergey Zorin. All rights reserved.\n"
|
msgid "Diff-Ext Copyright (c) 2003-2006, Sergey Zorin. All rights reserved.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: diff_ext.cpp:483
|
#: diff_ext.cpp:492
|
||||||
msgid "This software is distributable under the BSD license.\n"
|
msgid "This software is distributable under the BSD license.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: diff_ext.cpp:484
|
#: diff_ext.cpp:493
|
||||||
msgid "Some extensions for KDiff3 by Joachim Eibl.\n"
|
msgid "Some extensions for KDiff3 by Joachim Eibl.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: diff_ext.cpp:485
|
#: diff_ext.cpp:494
|
||||||
msgid "Homepage for Diff-Ext: http://diff-ext.sourceforge.net\n"
|
msgid "Homepage for Diff-Ext: http://diff-ext.sourceforge.net\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: diff_ext.cpp:486
|
#: diff_ext.cpp:495
|
||||||
msgid "Homepage for KDiff3: http://kdiff3.sourceforge.net"
|
msgid "Homepage for KDiff3: http://kdiff3.sourceforge.net"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: diff_ext.cpp:487
|
#: diff_ext.cpp:496
|
||||||
msgid "About Diff-Ext for KDiff3"
|
msgid "About Diff-Ext for KDiff3"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: diff_ext.cpp:512
|
#: diff_ext.cpp:521
|
||||||
msgid "Compare selected files"
|
msgid "Compare selected files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: diff_ext.cpp:518 diff_ext.cpp:538
|
#: diff_ext.cpp:527 diff_ext.cpp:547
|
||||||
msgid "Compare '%1' with '%2'"
|
msgid "Compare '%1' with '%2'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: diff_ext.cpp:524
|
#: diff_ext.cpp:533
|
||||||
msgid "Save '%1' for later operation"
|
msgid "Save '%1' for later operation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: diff_ext.cpp:576
|
#: diff_ext.cpp:585
|
||||||
msgid "Could not start KDiff3. Please rerun KDiff3 installation."
|
msgid "Could not start KDiff3. Please rerun KDiff3 installation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: diff_ext.cpp:577
|
#: diff_ext.cpp:586
|
||||||
msgid "Command"
|
msgid "Command"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: diff_ext.cpp:578
|
#: diff_ext.cpp:587
|
||||||
msgid "CommandLine"
|
msgid "CommandLine"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: diff_ext.cpp:579
|
#: diff_ext.cpp:588
|
||||||
msgid "Diff-Ext For KDiff3"
|
msgid "Diff-Ext For KDiff3"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
tde_auto_add_subdirectories( )
|
@ -0,0 +1 @@
|
|||||||
|
tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG da )
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 185 B After Width: | Height: | Size: 164 B |
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 205 B |
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1 @@
|
|||||||
|
tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG de )
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 185 B After Width: | Height: | Size: 164 B |
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 205 B |
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1,8 @@
|
|||||||
|
tde_create_handbook( DESTINATION ${PROJECT_NAME} )
|
||||||
|
|
||||||
|
file( GLOB _pngs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png )
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES ${_pngs}
|
||||||
|
DESTINATION ${SHARE_INSTALL_PREFIX}/doc/${PROJECT_NAME}/html
|
||||||
|
)
|
Before Width: | Height: | Size: 665 B After Width: | Height: | Size: 593 B |
Before Width: | Height: | Size: 174 B After Width: | Height: | Size: 167 B |
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 493 B After Width: | Height: | Size: 399 B |
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 199 B After Width: | Height: | Size: 193 B |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 233 B After Width: | Height: | Size: 219 B |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 185 B After Width: | Height: | Size: 164 B |
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 205 B |
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1 @@
|
|||||||
|
tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG es )
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 185 B After Width: | Height: | Size: 164 B |
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 205 B |
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1 @@
|
|||||||
|
tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG et )
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 185 B After Width: | Height: | Size: 164 B |
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 205 B |
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1 @@
|
|||||||
|
tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG fr )
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 185 B After Width: | Height: | Size: 164 B |
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 205 B |
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1 @@
|
|||||||
|
tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG it )
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 185 B After Width: | Height: | Size: 164 B |
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 205 B |
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1 @@
|
|||||||
|
tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG nl )
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 185 B After Width: | Height: | Size: 164 B |
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 205 B |
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1 @@
|
|||||||
|
tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG pt )
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 185 B After Width: | Height: | Size: 164 B |
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 205 B |
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1 @@
|
|||||||
|
tde_create_handbook( DESTINATION ${PROJECT_NAME} LANG sv )
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 185 B After Width: | Height: | Size: 164 B |
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 205 B |
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1,6 @@
|
|||||||
|
##### create translation templates ##############
|
||||||
|
|
||||||
|
tde_l10n_create_template(
|
||||||
|
CATALOG "kdiff3_plugin"
|
||||||
|
DESTINATION "po"
|
||||||
|
)
|
@ -0,0 +1,40 @@
|
|||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### libkdiff3plugin (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( libkdiff3plugin AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
kdiff3plugin.cpp
|
||||||
|
LINK
|
||||||
|
konq
|
||||||
|
tdecore-shared
|
||||||
|
tdeui-shared
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES kdiff3_plugin.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES kdiff3plugin.desktop
|
||||||
|
DESTINATION ${APPS_INSTALL_DIR}/.hidden
|
||||||
|
)
|
@ -0,0 +1,5 @@
|
|||||||
|
file( GLOB _srcs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.po )
|
||||||
|
|
||||||
|
if( _srcs )
|
||||||
|
tde_create_translation( LANG auto OUTPUT_NAME kdiff3_plugin )
|
||||||
|
endif( )
|
@ -0,0 +1,88 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"POT-Creation-Date: 2018-12-27 19:51+0100\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: _translatorinfo:1
|
||||||
|
msgid ""
|
||||||
|
"_: NAME OF TRANSLATORS\n"
|
||||||
|
"Your names"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: _translatorinfo:2
|
||||||
|
msgid ""
|
||||||
|
"_: EMAIL OF TRANSLATORS\n"
|
||||||
|
"Your emails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: kdiff3plugin.cpp:97
|
||||||
|
msgid "KDiff3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: kdiff3plugin.cpp:104
|
||||||
|
#, c-format
|
||||||
|
msgid "Compare with %1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: kdiff3plugin.cpp:109
|
||||||
|
#, c-format
|
||||||
|
msgid "Merge with %1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: kdiff3plugin.cpp:114
|
||||||
|
msgid "Save '%1' for later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: kdiff3plugin.cpp:119
|
||||||
|
msgid "3-way merge with base"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: kdiff3plugin.cpp:125
|
||||||
|
msgid "Compare with ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: kdiff3plugin.cpp:134
|
||||||
|
msgid "Clear list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: kdiff3plugin.cpp:141
|
||||||
|
msgid "Compare"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: kdiff3plugin.cpp:146
|
||||||
|
msgid "3 way comparison"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: kdiff3plugin.cpp:149
|
||||||
|
msgid "About KDiff3 menu plugin ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: kdiff3plugin.cpp:250
|
||||||
|
msgid ""
|
||||||
|
"KDiff3 Menu Plugin: Copyright (C) 2006 Joachim Eibl\n"
|
||||||
|
"KDiff3 homepage: http://kdiff3.sourceforge.net\n"
|
||||||
|
"\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: kdiff3plugin.cpp:252
|
||||||
|
msgid ""
|
||||||
|
"Using the contextmenu extension:\n"
|
||||||
|
"For simple comparison of two selected 2 files choose \"Compare\".\n"
|
||||||
|
"If the other file is somewhere else \"Save\" the first file for later. It "
|
||||||
|
"will appear in the \"Compare With ...\" submenu. Then use \"Compare With\" "
|
||||||
|
"on second file.\n"
|
||||||
|
"For a 3-way merge first \"Save\" the base file, then the branch to merge and "
|
||||||
|
"choose \"3-way merge with base\" on the other branch which will be used as "
|
||||||
|
"destination.\n"
|
||||||
|
"Same also applies to directory comparison and merge."
|
||||||
|
msgstr ""
|
@ -0,0 +1,5 @@
|
|||||||
|
INSTALL(
|
||||||
|
FILES ${PROJECT_NAME}.1
|
||||||
|
DESTINATION ${MAN_INSTALL_DIR}/man1
|
||||||
|
COMPONENT doc
|
||||||
|
)
|
@ -0,0 +1,5 @@
|
|||||||
|
file( GLOB _srcs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.po )
|
||||||
|
|
||||||
|
if( _srcs )
|
||||||
|
tde_create_translation( LANG auto OUTPUT_NAME ${PROJECT_NAME} )
|
||||||
|
endif( )
|
@ -0,0 +1,6 @@
|
|||||||
|
##### create translation templates ##############
|
||||||
|
|
||||||
|
tde_l10n_create_template(
|
||||||
|
CATALOG "kdiff3"
|
||||||
|
EXCLUDES "^kreplacements/"
|
||||||
|
)
|
@ -0,0 +1,88 @@
|
|||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### kdiff3 (executable)
|
||||||
|
|
||||||
|
tde_add_executable( ${PROJECT_NAME} AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
main.cpp
|
||||||
|
kdiff3_shell.cpp
|
||||||
|
LINK
|
||||||
|
tdecore-shared
|
||||||
|
tdeui-shared
|
||||||
|
tdeio-shared
|
||||||
|
tdeparts-shared
|
||||||
|
|
||||||
|
DESTINATION ${BIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### libkdiff3part (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( libkdiff3part AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
kdiff3_part.cpp
|
||||||
|
kdiff3.cpp
|
||||||
|
directorymergewindow.cpp
|
||||||
|
merger.cpp
|
||||||
|
pdiff.cpp
|
||||||
|
difftextwindow.cpp
|
||||||
|
diff.cpp
|
||||||
|
optiondialog.cpp
|
||||||
|
mergeresultwindow.cpp
|
||||||
|
fileaccess.cpp
|
||||||
|
gnudiff_analyze.cpp
|
||||||
|
gnudiff_io.cpp
|
||||||
|
gnudiff_xmalloc.cpp
|
||||||
|
common.cpp
|
||||||
|
smalldialogs.cpp
|
||||||
|
LINK
|
||||||
|
tdecore-shared
|
||||||
|
tdeui-shared
|
||||||
|
tdeio-shared
|
||||||
|
tdeprint-shared
|
||||||
|
tdeparts-shared
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### icons
|
||||||
|
|
||||||
|
tde_install_icons( ${PROJECT_NAME} )
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES kdiff3_shell.rc
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}
|
||||||
|
)
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES kdiff3part.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES kdiff3_part.rc
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kdiff3part
|
||||||
|
)
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES ${PROJECT_NAME}.desktop
|
||||||
|
DESTINATION ${XDG_APPS_INSTALL_DIR}
|
||||||
|
)
|
Before Width: | Height: | Size: 220 B After Width: | Height: | Size: 170 B |
Before Width: | Height: | Size: 346 B After Width: | Height: | Size: 234 B |
@ -1,14 +0,0 @@
|
|||||||
Begin4
|
|
||||||
Title: kdiff3
|
|
||||||
Version: R14.0.0
|
|
||||||
Entered-date: 2010-05-10
|
|
||||||
Description: Tool for comparing and merging files or directories
|
|
||||||
Keywords: TDE Qt
|
|
||||||
Author: Joachim Eibl <joachim at gmx.de>
|
|
||||||
Maintained-by: The Trinity Desktop Environment (TDE) http://www.trinitydesktop.org/
|
|
||||||
Primary-site: http://git.trinitydesktop.org/cgit/
|
|
||||||
Alternate-site:
|
|
||||||
Original-site: http://kdiff3.sourceforge.net
|
|
||||||
Platforms: Linux and other Unices running TDE
|
|
||||||
Copying-policy: GPL
|
|
||||||
End
|
|
Before Width: | Height: | Size: 220 B After Width: | Height: | Size: 170 B |
Before Width: | Height: | Size: 346 B After Width: | Height: | Size: 234 B |