View | Details | Raw Unified | Return to bug 252085 | Differences between
and this patch

Collapse All | Expand All

(-)b/editors/codelite-devel/Makefile (+167 lines)
Added Link Here
1
PORTNAME=	codelite
2
PORTVERSION=	15.0.3.20210721
3
PORTREVISION=	0
4
CATEGORIES=	editors devel
5
PKGNAMESUFFIX=	-devel
6
7
MAINTAINER=	rozhuk.im@gmail.com
8
COMMENT=	Open Source IDE for C/C++
9
10
LICENSE=	GPLv2+
11
12
RUN_DEPENDS=	${LOCALBASE}/bin/open:sysutils/open
13
LIB_DEPENDS=	libuchardet.so:textproc/uchardet
14
15
USES=		cmake:noninja compiler:c++11-lib dos2unix gettext gnome \
16
		localbase pathfix pkgconfig shebangfix sqlite
17
USE_GNOME=	cairo glib20 gtk30
18
DOS2UNIX_GLOB=	*.cpp *.txt
19
SHEBANG_FILES=	Runtime/codelite_xterm
20
USE_WX=		3.1
21
USE_GITHUB=	yes
22
GH_ACCOUNT=	eranif
23
GH_TAGNAME=	9d1ad1132fa566ba0fb46f5dc92a58096e8a395c
24
CMAKE_ARGS=	-DCMAKE_BUILD_TYPE:STRING=Release \
25
		-DPREFIX:STRING="${PREFIX}" \
26
		-DIS_FREEBSD:STRING=1 \
27
		-DGTK_USE_CUSTOMBOOK:STRING=1 \
28
		-DCL_WX_CONFIG:STRING="${WX_CONFIG:T}"
29
USE_LDCONFIG=	${PREFIX}/lib/codelite
30
INSTALLS_ICONS=	yes
31
CFLAGS+=	-DNDEBUG -I${LOCALBASE}/include/harfbuzz
32
LDFLAGS+=	-lutil
33
34
OPTIONS_RADIO=		CLANG
35
OPTIONS_GROUP=		PLUGINS
36
OPTIONS_GROUP_PLUGINS=	CALLGRAPH CMAKE CSCOPE GIT HELP MEMCHK \
37
			QMAKE SFTP SPELLCHK SVN
38
OPTIONS_DEFAULT=	GIT
39
OPTIONS_SUB=		yes
40
41
CALLGRAPH_DESC=		CallGraph plugin
42
CALLGRAPH_RUN_DEPENDS=	${LOCALBASE}/bin/dot:graphics/graphviz
43
CMAKE_DESC=		CMake plugin
44
CMAKE_RUN_DEPENDS=	${LOCALBASE}/bin/cmake:devel/cmake
45
CSCOPE_DESC=		CScope integration
46
CSCOPE_RUN_DEPENDS=	cscope:devel/cscope
47
GIT_DESC=		Build with git support
48
GIT_RUN_DEPENDS=	${LOCALBASE}/bin/git:devel/git
49
MEMCHK_DESC=		MemCheck (valgrind) plugin
50
MEMCHK_RUN_DEPENDS=	${LOCALBASE}/bin/valgrind:devel/valgrind
51
HELP_DESC=		Help plugin
52
HELP_RUN_DEPENDS=	${LOCALBASE}/bin/zeal:devel/zeal
53
QMAKE_DESC=		QT5 qmake plugin
54
QMAKE_RUN_DEPENDS=	${LOCALBASE}/lib/qt5/bin/qmake:devel/qt5-qmake
55
SFTP_DESC=		Secure FTP support via libssh
56
SFTP_LIB_DEPENDS=	libssh.so:security/libssh
57
SFTP_CMAKE_OFF=		-DENABLE_SFTP:STRING=0
58
SPELLCHK_DESC=		Spell checker plugin
59
SPELLCHK_LIB_DEPENDS+=	libhunspell-1.7.so:textproc/hunspell
60
SVN_DESC=		Subversion support
61
SVN_RUN_DEPENDS=	${LOCALBASE}/bin/svn:devel/subversion
62
63
CLANG_DESC=		Clang code-completion
64
65
.for v in 80 90 10 11 12 13
66
OPTIONS_RADIO_CLANG+=	CLANG$v
67
CLANG$v_DESC=		Clang ${v:C/(.)(.)/\1.\2.x/}
68
CLANG$v_BUILD_DEPENDS=	llvm$v>0:devel/llvm$v
69
CLANG$v_RUN_DEPENDS=	llvm$v>0:devel/llvm$v
70
71
post-patch-CLANG$v-on:
72
	@${REINPLACE_CMD} -e \
73
		's|/usr/lib/llvm-.*/|${LOCALBASE}/llvm$v/|' \
74
		${WRKSRC}/cmake/Modules/FindLibClang.cmake \
75
		${WRKSRC}/cmake/Modules/FindLibLLDB.cmake
76
.endfor
77
78
.include <bsd.port.options.mk>
79
80
.if ${PORT_OPTIONS:MCLANG*}
81
CMAKE_ARGS+=	-DENABLE_LLDB:STRING=1 -DENABLE_CLANG:STRING=1
82
.else
83
CMAKE_ARGS+=	-DENABLE_LLDB:STRING=0 -DENABLE_CLANG:STRING=0
84
.endif
85
86
post-patch:
87
	# Use the correct wx-config
88
	@${REINPLACE_CMD} -e \
89
		'/ IS_FREEBSD/s|^|#| ; \
90
		 / CL_WX_CONFIG/s|^|#| ; \
91
		 / -Wno-/s|^|#| ; \
92
		 / -O2/s|^|#| ; \
93
		 s|"-s"|""|' \
94
		${WRKSRC}/CMakeLists.txt
95
	@${REINPLACE_CMD} -e 's|share/man|man|' \
96
		${WRKSRC}/LiteEditor/CMakeLists.txt
97
	@${REINPLACE_CMD} -e '/ADDITIONAL_LIBRARIES/s|""|"-lexecinfo"|' \
98
		${WRKSRC}/sdk/codelite_cppcheck/CMakeLists.txt
99
	# https://github.com/eranif/codelite/issues/2498
100
	@${REINPLACE_CMD} -e 's|libcodelite|libcodelite gobject-2.0|g' \
101
		${WRKSRC}/codelitephp/CMakeLists.txt
102
	# Revert: 4e270fb42bd8b1a8f5fc72817cda9005e8ea44e4
103
	@${REINPLACE_CMD} -e 's|/bin/bash|/bin/sh|' \
104
		${WRKSRC}/CodeLite/TerminalEmulator.cpp \
105
		${WRKSRC}/CodeLite/clConsoleBash.cpp \
106
		${WRKSRC}/CodeLite/clConsoleGnomeTerminal.cpp \
107
		${WRKSRC}/CodeLite/clConsoleRXVTerminal.cpp \
108
		${WRKSRC}/CodeLite/fileextmanager.cpp \
109
		${WRKSRC}/CodeLite/fileutils.cpp \
110
		${WRKSRC}/Docker/clDockerDriver.cpp \
111
		${WRKSRC}/Plugin/clRemoteBuilder.cpp \
112
		${WRKSRC}/Plugin/consolefinder.cpp \
113
		${WRKSRC}/Plugin/custombuildrequest.cpp \
114
		${WRKSRC}/Plugin/globals.cpp \
115
		${WRKSRC}/Plugin/pipedprocess.cpp \
116
		${WRKSRC}/Plugin/wxterminal.cpp \
117
		${WRKSRC}/codelite_terminal/wxTerminalCtrl.cpp
118
	# LLDB fix, optional.
119
	@${REINPLACE_CMD} -e 's|.*Exists(lldbDebugServer).*|if (0) {|g' \
120
		${WRKSRC}/LLDBDebugger/codelite-lldb/CodeLiteLLDBApp.cpp
121
122
post-patch-CALLGRAPH-off:
123
	@${REINPLACE_CMD} -e \
124
		's|add_subdirectory(CallGraph)||' \
125
		${WRKSRC}/CMakeLists.txt
126
127
post-patch-CMAKE-off:
128
	@${REINPLACE_CMD} -e \
129
		's|add_subdirectory(CMakePlugin)||' \
130
		${WRKSRC}/CMakeLists.txt
131
132
post-patch-CSCOPE-off:
133
	@${REINPLACE_CMD} -e \
134
		's|add_subdirectory(cscope)||' \
135
		${WRKSRC}/CMakeLists.txt
136
137
post-patch-GIT-off:
138
	@${REINPLACE_CMD} -e \
139
		's|add_subdirectory(git)||' \
140
		${WRKSRC}/CMakeLists.txt
141
142
post-patch-MEMCHK-off:
143
	@${REINPLACE_CMD} -e \
144
		's|add_subdirectory(MemCheck)||' \
145
		${WRKSRC}/CMakeLists.txt
146
147
post-patch-HELP-off:
148
	@${REINPLACE_CMD} -e \
149
		's|add_subdirectory(HelpPlugin)||' \
150
		${WRKSRC}/CMakeLists.txt
151
152
post-patch-QMAKE-off:
153
	@${REINPLACE_CMD} -e \
154
		's|add_subdirectory(QmakePlugin)||' \
155
		${WRKSRC}/CMakeLists.txt
156
157
post-patch-SPELLCHK-off:
158
	@${REINPLACE_CMD} -e \
159
		's|add_subdirectory(SpellChecker)||' \
160
		${WRKSRC}/CMakeLists.txt
161
162
post-patch-SVN-off:
163
	@${REINPLACE_CMD} -e \
164
		's|add_subdirectory(Subversion2)||' \
165
		${WRKSRC}/CMakeLists.txt
166
167
.include <bsd.port.mk>
(-)b/editors/codelite-devel/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1626831772
2
SHA256 (eranif-codelite-15.0.3.20210721-9d1ad1132fa566ba0fb46f5dc92a58096e8a395c_GH0.tar.gz) = 3c3866f8f05cdec445f66c01728efcf2f032b22c50f2cee4815ca333ab9b7db8
3
SIZE (eranif-codelite-15.0.3.20210721-9d1ad1132fa566ba0fb46f5dc92a58096e8a395c_GH0.tar.gz) = 110273919
(-)b/editors/codelite-devel/files/patch-Plugin_clCodeLiteRemoteProcess.cpp (+17 lines)
Added Link Here
1
--- Plugin/clCodeLiteRemoteProcess.cpp	2021-07-21 05:20:33.914216000 +0300
2
+++ Plugin/clCodeLiteRemoteProcess.cpp	2021-07-21 05:30:21.694744000 +0300
3
@@ -185,12 +185,14 @@
4
         return;
5
     }
6
 
7
+#if USE_SFTP
8
     // upload codelite-remote script and start it once its uploaded
9
     wxString localCodeLiteRemoteScript = clStandardPaths::Get().GetBinFolder() + "/codelite-remote";
10
     if(!clSFTPManager::Get().AwaitSaveFile(localCodeLiteRemoteScript, scriptPath, account.GetAccountName())) {
11
         clERROR() << "Failed to upload file:" << scriptPath << "." << clSFTPManager::Get().GetLastError() << endl;
12
         return;
13
     }
14
+#endif
15
 
16
     m_going_down = false;
17
     m_context = contextString;
(-)b/editors/codelite-devel/files/patch-git_git.cpp (+41 lines)
Added Link Here
1
--- git/git.cpp	2021-07-21 05:33:50.718751000 +0300
2
+++ git/git.cpp	2021-07-21 05:41:49.307897000 +0300
3
@@ -2205,8 +2205,10 @@
4
     if(IsRemoteWorkspace()) {
5
         // download the file and store it locally
6
         wxFileName remote_file(GetRepositoryPath() + "/" + fileName);
7
+#if USE_SFTP
8
         right_file =
9
             clSFTPManager::Get().Download(remote_file.GetFullPath(wxPATH_UNIX), m_remoteWorkspaceAccount).GetFullPath();
10
+#endif
11
     } else {
12
         wxFileName fnWorkingCopy(fileName);
13
         fnWorkingCopy.MakeAbsolute(m_repositoryDirectory);
14
@@ -2473,11 +2475,15 @@
15
                 commitArgs << messagefile << " ";
16
 
17
                 if(IsRemoteWorkspace()) {
18
+#if USE_SFTP
19
                     if(!clSFTPManager::Get().AwaitWriteFile(message, messagefile, m_remoteWorkspaceAccount)) {
20
                         m_console->AddText(_("ERROR: Failed to write commit message to file: ") + messagefile + "\n" +
21
                                            clSFTPManager::Get().GetLastError() + "\n");
22
                         return;
23
                     }
24
+#else
25
+		    return;
26
+#endif
27
                 } else {
28
                     if(!FileUtils::WriteFileContent(messagefile, message)) {
29
                         m_console->AddText(_("ERROR: Failed to write commit message to file: ") + messagefile + "\n");
30
@@ -2850,7 +2856,11 @@
31
 {
32
     wxFileName fn(GetRepositoryPath() + "/" + relativePathFile);
33
     if(IsRemoteWorkspace()) {
34
+#if USE_SFTP
35
         return clSFTPManager::Get().OpenFile(fn.GetFullPath(wxPATH_UNIX), m_remoteWorkspaceAccount);
36
+#else
37
+	return NULL;
38
+#endif
39
     } else {
40
         return clGetManager()->OpenFile(fn.GetFullPath());
41
     }
(-)b/editors/codelite-devel/pkg-descr (+7 lines)
Added Link Here
1
CodeLite is a powerful open-source, cross platform code editor for the
2
C/C++ programming languages.
3
4
CodeLite uses a sophisticated, yet intuitive interface which allows
5
user to easy create and build complex projects.
6
7
WWW: https://codelite.org/
(-)b/editors/codelite-devel/pkg-plist (+321 lines)
Added Link Here
1
bin/codelite
2
bin/codelite-cc
3
bin/codelite-echo
4
bin/codelite-lldb
5
bin/codelite-lsp-helper
6
bin/codelite-make
7
bin/codelite-remote
8
bin/codelite-terminal
9
bin/codelite_cppcheck
10
bin/codelite_exec
11
bin/codelite_fix_files
12
bin/codelite_indexer
13
bin/codelite_kill_children
14
bin/codelite_open_helper.py
15
bin/codelite_xterm
16
lib/codelite/AutoSave.so
17
%%CMAKE%%lib/codelite/CMakePlugin.so
18
%%CALLGRAPH%%lib/codelite/CallGraph.so
19
lib/codelite/CodeFormatter.so
20
lib/codelite/CodeLiteDiff.so
21
lib/codelite/Copyright.so
22
lib/codelite/DatabaseExplorer.so
23
lib/codelite/Docker.so
24
lib/codelite/EOSWiki.so
25
lib/codelite/EditorConfigPlugin.so
26
lib/codelite/ExternalTools.so
27
%%HELP%%lib/codelite/HelpPlugin.so
28
lib/codelite/LLDBDebugger.so
29
lib/codelite/LanguageServer.so
30
%%MEMCHK%%lib/codelite/MemCheck.so
31
lib/codelite/Outline.so
32
lib/codelite/PHPLint.so
33
lib/codelite/PHPRefactoring.so
34
%%QMAKE%%lib/codelite/QMakePlugin.so
35
%%SFTP%%lib/codelite/SFTP.so
36
lib/codelite/Rust.so
37
lib/codelite/SmartCompletion.so
38
lib/codelite/SnipWiz.so
39
%%SPELLCHK%%lib/codelite/SpellCheck.so
40
%%SVN%%lib/codelite/Subversion.so
41
lib/codelite/Tail.so
42
lib/codelite/UnitTestsPP.so
43
lib/codelite/WebTools.so
44
lib/codelite/Wizards.so
45
lib/codelite/WordCompletion.so
46
lib/codelite/ZoomNavigator.so
47
lib/codelite/abbreviation.so
48
lib/codelite/codelite_vim.so
49
lib/codelite/codelitephp.so
50
lib/codelite/cppchecker.so
51
%%CSCOPE%%lib/codelite/cscope.so
52
lib/codelite/debuggers/DebuggerGDB.so
53
%%GIT%%lib/codelite/git.so
54
lib/codelite/libdatabaselayersqlite.so
55
lib/codelite/liblibcodelite.so
56
lib/codelite/libplugin.so
57
lib/codelite/libwxshapeframework.so
58
lib/codelite/libwxsqlite3.so
59
lib/codelite/wxCrafter.so
60
lib/codelite/wxFormBuilder.so
61
libdata/ldconfig/codelite-devel
62
man/man1/codelite-make.1.gz
63
man/man1/codelite.1.gz
64
man/man1/codelite_fix_files.1.gz
65
share/applications/codelite.desktop
66
%%DATADIR%%/LICENSE
67
%%DATADIR%%/PHP.zip
68
%%DATADIR%%/astyle.sample
69
%%DATADIR%%/clang-tools.tgz
70
%%DATADIR%%/codelite-bitmaps-dark.zip
71
%%DATADIR%%/codelite-bitmaps-light.zip
72
%%DATADIR%%/config/accelerators.conf.default
73
%%DATADIR%%/config/build_settings.xml.default
74
%%DATADIR%%/config/cfg/avr.cfg
75
%%DATADIR%%/config/cfg/bsd.cfg
76
%%DATADIR%%/config/cfg/cppcheck-cfg.rng
77
%%DATADIR%%/config/cfg/cppcheck-lib.cfg
78
%%DATADIR%%/config/cfg/embedded_sql.cfg
79
%%DATADIR%%/config/cfg/gnu.cfg
80
%%DATADIR%%/config/cfg/gtk.cfg
81
%%DATADIR%%/config/cfg/microsoft_sal.cfg
82
%%DATADIR%%/config/cfg/motif.cfg
83
%%DATADIR%%/config/cfg/posix.cfg
84
%%DATADIR%%/config/cfg/qt.cfg
85
%%DATADIR%%/config/cfg/sdl.cfg
86
%%DATADIR%%/config/cfg/sfml.cfg
87
%%DATADIR%%/config/cfg/std.cfg
88
%%DATADIR%%/config/cfg/windows.cfg
89
%%DATADIR%%/config/cfg/wxwidgets.cfg
90
%%DATADIR%%/config/codelite.xml.default
91
%%DATADIR%%/config/debuggers.xml.default
92
%%SPELLCHK%%%%DATADIR%%/dics/en_GB.aff
93
%%SPELLCHK%%%%DATADIR%%/dics/en_GB.dic
94
%%SPELLCHK%%%%DATADIR%%/dics/en_US.aff
95
%%SPELLCHK%%%%DATADIR%%/dics/en_US.dic
96
%%DATADIR%%/eoswiki.zip
97
%%DATADIR%%/gdb_printers/boost/__init__.py
98
%%DATADIR%%/gdb_printers/boost/printers.py
99
%%DATADIR%%/gdb_printers/helper.py
100
%%DATADIR%%/gdb_printers/libstdcxx/__init__.py
101
%%DATADIR%%/gdb_printers/libstdcxx/v6/__init__.py
102
%%DATADIR%%/gdb_printers/libstdcxx/v6/printers.py
103
%%DATADIR%%/gdb_printers/libstdcxx/v6/xmethods.py
104
%%DATADIR%%/gdb_printers/qt4.py
105
%%DATADIR%%/gdb_printers/rustlib/etc/gdb_load_rust_pretty_printers.py
106
%%DATADIR%%/gdb_printers/rustlib/etc/gdb_lookup.py
107
%%DATADIR%%/gdb_printers/rustlib/etc/gdb_providers.py
108
%%DATADIR%%/gdb_printers/rustlib/etc/rust_types.py
109
%%DATADIR%%/gdb_printers/wx.py
110
%%DATADIR%%/images/common_tasks.png
111
%%DATADIR%%/images/help_earth.png
112
%%DATADIR%%/images/plugin_not_ok.png
113
%%DATADIR%%/images/plugin_ok.png
114
%%DATADIR%%/images/recent_files.png
115
%%DATADIR%%/images/recent_workspaces.png
116
%%DATADIR%%/images/splashscreen.png
117
%%DATADIR%%/images/splashscreen@2x.png
118
%%DATADIR%%/jsctags.zip
119
%%DATADIR%%/lexers/lexers.json
120
%%DATADIR%%/php.sample
121
%%DATADIR%%/phprefactor.phar
122
%%DATADIR%%/rc/menu.xrc
123
%%DATADIR%%/resources/abbrev.png
124
%%DATADIR%%/resources/compfile.png
125
%%DATADIR%%/resources/connect_no.png
126
%%DATADIR%%/resources/cppcheck.png
127
%%DATADIR%%/resources/qt16_new.png
128
%%DATADIR%%/resources/qt16_preferences.png
129
%%DATADIR%%/resources/qt24_new.png
130
%%DATADIR%%/resources/qt24_preferences.png
131
%%DATADIR%%/resources/svn_diff.png
132
%%DATADIR%%/resources/svn_settings.png
133
%%DATADIR%%/resources/svn_ssh.png
134
%%DATADIR%%/resources/wxfb_conflict.png
135
%%DATADIR%%/resources/wxfb_modified.png
136
%%DATADIR%%/resources/wxfb_ok.png
137
%%DATADIR%%/templates/codedesigner/CDTemplate.cdp
138
%%DATADIR%%/templates/codedesigner/HSCHTemplate.cdp
139
%%DATADIR%%/templates/codedesigner/HSCHTemplateWithMain.cdp
140
%%DATADIR%%/templates/codedesigner/SCHTemplate.cdp
141
%%DATADIR%%/templates/codedesigner/SCHTemplateWithMain.cdp
142
%%DATADIR%%/templates/databaselayer/dataClass.ctmp
143
%%DATADIR%%/templates/databaselayer/dataClass.htmp
144
%%DATADIR%%/templates/databaselayer/dataClass_dba.ctmp
145
%%DATADIR%%/templates/databaselayer/dataClass_dba.htmp
146
%%DATADIR%%/templates/databaselayer/dataClass_dbl.ctmp
147
%%DATADIR%%/templates/databaselayer/dataClass_dbl.htmp
148
%%DATADIR%%/templates/databaselayer/dataClass_wxdba.ctmp
149
%%DATADIR%%/templates/databaselayer/dataClass_wxdba.htmp
150
%%DATADIR%%/templates/databaselayer/viewClass.ctmp
151
%%DATADIR%%/templates/databaselayer/viewClass.htmp
152
%%DATADIR%%/templates/databaselayer/viewClass_dba.ctmp
153
%%DATADIR%%/templates/databaselayer/viewClass_dba.htmp
154
%%DATADIR%%/templates/databaselayer/viewClass_dbl.ctmp
155
%%DATADIR%%/templates/databaselayer/viewClass_dbl.htmp
156
%%DATADIR%%/templates/databaselayer/viewClass_wxdba.ctmp
157
%%DATADIR%%/templates/databaselayer/viewClass_wxdba.htmp
158
%%DATADIR%%/templates/formbuilder/DialogTemplate.fbp
159
%%DATADIR%%/templates/formbuilder/DialogTemplateWithButtons.fbp
160
%%DATADIR%%/templates/formbuilder/FrameTemplate.fbp
161
%%DATADIR%%/templates/formbuilder/PanelTemplate.fbp
162
%%DATADIR%%/templates/gizmos/CMakeLists.txt.plugin.wizard
163
%%DATADIR%%/templates/gizmos/app.cpp.wizard
164
%%DATADIR%%/templates/gizmos/app.h.wizard
165
%%DATADIR%%/templates/gizmos/gui-dialog.cpp.wizard
166
%%DATADIR%%/templates/gizmos/gui-dialog.fbp.wizard
167
%%DATADIR%%/templates/gizmos/gui-dialog.h.wizard
168
%%DATADIR%%/templates/gizmos/gui-frame.cpp.wizard
169
%%DATADIR%%/templates/gizmos/gui-frame.fbp.wizard
170
%%DATADIR%%/templates/gizmos/gui-frame.h.wizard
171
%%DATADIR%%/templates/gizmos/liteeditor-plugin.project.wizard
172
%%DATADIR%%/templates/gizmos/main-dialog.cpp.wizard
173
%%DATADIR%%/templates/gizmos/main-dialog.h.wizard
174
%%DATADIR%%/templates/gizmos/main-frame.cpp.wizard
175
%%DATADIR%%/templates/gizmos/main-frame.h.wizard
176
%%DATADIR%%/templates/gizmos/main.cpp.wizard
177
%%DATADIR%%/templates/gizmos/mainframe.cpp.wizard
178
%%DATADIR%%/templates/gizmos/mainframe.h.wizard
179
%%DATADIR%%/templates/gizmos/plugin.cpp.wizard
180
%%DATADIR%%/templates/gizmos/plugin.h.wizard
181
%%DATADIR%%/templates/gizmos/resources.rc.wizard
182
%%DATADIR%%/templates/gizmos/wx_pch.h.wizard
183
%%DATADIR%%/templates/gizmos/wxmain.project.wizard
184
%%DATADIR%%/templates/gizmos/wxproject-fb.project.wizard
185
%%DATADIR%%/templates/gizmos/wxproject.project.wizard
186
%%DATADIR%%/templates/projects/CMake_Executable/CMakeLists.txt
187
%%DATADIR%%/templates/projects/CMake_Executable/CMakeLists.txt.bak
188
%%DATADIR%%/templates/projects/CMake_Executable/CMake_Executable.project
189
%%DATADIR%%/templates/projects/CMake_Executable/icon.png
190
%%DATADIR%%/templates/projects/CMake_Executable/main.cpp
191
%%DATADIR%%/templates/projects/ConsoleClang++/ConsoleClang++.project
192
%%DATADIR%%/templates/projects/ConsoleClang++/main.cpp
193
%%DATADIR%%/templates/projects/ConsoleClang/ConsoleClang.project
194
%%DATADIR%%/templates/projects/ConsoleClang/main.c
195
%%DATADIR%%/templates/projects/UnitTest++/UnitTest++.project
196
%%DATADIR%%/templates/projects/UnitTest++/icon.png
197
%%DATADIR%%/templates/projects/UnitTest++/main.cpp
198
%%DATADIR%%/templates/projects/c_gtk24_template/c_gtk24_template.project
199
%%DATADIR%%/templates/projects/c_gtk24_template/icon.png
200
%%DATADIR%%/templates/projects/c_gtk24_template/main.c
201
%%DATADIR%%/templates/projects/c_gtk3_template/c_gtk3_template.project
202
%%DATADIR%%/templates/projects/c_gtk3_template/icon.png
203
%%DATADIR%%/templates/projects/c_gtk3_template/main.c
204
%%DATADIR%%/templates/projects/cobra-executableU/build-file
205
%%DATADIR%%/templates/projects/cobra-executableU/cobra-executableU.project
206
%%DATADIR%%/templates/projects/cobra-libraryU/cobra-library.project
207
%%DATADIR%%/templates/projects/cobra-libraryU/lib-build-files
208
%%DATADIR%%/templates/projects/cobra-staticU/build-file
209
%%DATADIR%%/templates/projects/cobra-staticU/cobra-staticU.project
210
%%DATADIR%%/templates/projects/cpp_gtkmm24_template/cpp_gtkmm24_template.project
211
%%DATADIR%%/templates/projects/cpp_gtkmm24_template/icon.png
212
%%DATADIR%%/templates/projects/cpp_gtkmm24_template/main.cpp
213
%%DATADIR%%/templates/projects/cpp_gtkmm24_template/mainwindow.cpp
214
%%DATADIR%%/templates/projects/cpp_gtkmm24_template/mainwindow.h
215
%%DATADIR%%/templates/projects/cpp_gtkmm3_template/cpp_gtkmm3_template.project
216
%%DATADIR%%/templates/projects/cpp_gtkmm3_template/icon.png
217
%%DATADIR%%/templates/projects/cpp_gtkmm3_template/main.cpp
218
%%DATADIR%%/templates/projects/cpp_gtkmm3_template/mainwindow.cpp
219
%%DATADIR%%/templates/projects/cpp_gtkmm3_template/mainwindow.h
220
%%DATADIR%%/templates/projects/custom-makefile/custom-makefile.project
221
%%DATADIR%%/templates/projects/custom-makefile/icon.png
222
%%DATADIR%%/templates/projects/dynamic-library-wx-enabled/dynamic-library-wx-enabled.project
223
%%DATADIR%%/templates/projects/dynamic-library-wx-enabled/dynamic-library-wx-enabled.project.windows
224
%%DATADIR%%/templates/projects/dynamic-library-wx-enabled/icon.png
225
%%DATADIR%%/templates/projects/dynamic-library/dynamic-library.project
226
%%DATADIR%%/templates/projects/dynamic-library/dynamic-library.project.windows
227
%%DATADIR%%/templates/projects/dynamic-library/icon.png
228
%%DATADIR%%/templates/projects/executable-cobra/executable-cobra.project
229
%%DATADIR%%/templates/projects/executable-cobra/main.cobra
230
%%DATADIR%%/templates/projects/executable-console-wx-enabled/executable-console-wx-enabled.project
231
%%DATADIR%%/templates/projects/executable-console-wx-enabled/icon.png
232
%%DATADIR%%/templates/projects/executable-console-wx-enabled/main.cpp
233
%%DATADIR%%/templates/projects/executable-gcc/executable-gcc.project
234
%%DATADIR%%/templates/projects/executable-gcc/icon.png
235
%%DATADIR%%/templates/projects/executable-gcc/main.c
236
%%DATADIR%%/templates/projects/executable-qt-enabled/executable-qt-enabled.project
237
%%DATADIR%%/templates/projects/executable-qt-enabled/icon.png
238
%%DATADIR%%/templates/projects/executable-qt-enabled/main.cpp
239
%%DATADIR%%/templates/projects/executable-qt-qmake-enabled/executable-qt-qmake-enabled.project
240
%%DATADIR%%/templates/projects/executable-qt-qmake-enabled/icon.png
241
%%DATADIR%%/templates/projects/executable-qt-qmake-enabled/main.cpp
242
%%DATADIR%%/templates/projects/executable-wx-dialog/executable-wx-dialog.project
243
%%DATADIR%%/templates/projects/executable-wx-dialog/gui.cpp
244
%%DATADIR%%/templates/projects/executable-wx-dialog/gui.fbp
245
%%DATADIR%%/templates/projects/executable-wx-dialog/gui.h
246
%%DATADIR%%/templates/projects/executable-wx-dialog/icon.png
247
%%DATADIR%%/templates/projects/executable-wx-dialog/main.cpp
248
%%DATADIR%%/templates/projects/executable-wx-dialog/main.h
249
%%DATADIR%%/templates/projects/executable-wx-dialog/win_resources.rc
250
%%DATADIR%%/templates/projects/executable-wx-enabled/executable-wx-enabled.project
251
%%DATADIR%%/templates/projects/executable-wx-enabled/icon.png
252
%%DATADIR%%/templates/projects/executable-wx-enabled/main.cpp
253
%%DATADIR%%/templates/projects/executable-wx-frame/executable-wx-frame.project
254
%%DATADIR%%/templates/projects/executable-wx-frame/gui.cpp
255
%%DATADIR%%/templates/projects/executable-wx-frame/gui.fbp
256
%%DATADIR%%/templates/projects/executable-wx-frame/gui.h
257
%%DATADIR%%/templates/projects/executable-wx-frame/icon.png
258
%%DATADIR%%/templates/projects/executable-wx-frame/main.cpp
259
%%DATADIR%%/templates/projects/executable-wx-frame/main.h
260
%%DATADIR%%/templates/projects/executable-wx-frame/win_resources.rc
261
%%DATADIR%%/templates/projects/executable-wx-xrc/executable-wx-xrc.project
262
%%DATADIR%%/templates/projects/executable-wx-xrc/gui.wxcp
263
%%DATADIR%%/templates/projects/executable-wx-xrc/gui.xrc
264
%%DATADIR%%/templates/projects/executable-wx-xrc/icon.png
265
%%DATADIR%%/templates/projects/executable-wx-xrc/main.cpp
266
%%DATADIR%%/templates/projects/executable-wx-xrc/main.h
267
%%DATADIR%%/templates/projects/executable-wxcrafter-dialog/MainDialog.cpp
268
%%DATADIR%%/templates/projects/executable-wxcrafter-dialog/MainDialog.h
269
%%DATADIR%%/templates/projects/executable-wxcrafter-dialog/icon.png
270
%%DATADIR%%/templates/projects/executable-wxcrafter-dialog/main.cpp
271
%%DATADIR%%/templates/projects/executable-wxcrafter-dialog/win_resources.rc
272
%%DATADIR%%/templates/projects/executable-wxcrafter-dialog/wxCrafter_MainDialog.project
273
%%DATADIR%%/templates/projects/executable-wxcrafter-dialog/wxcrafter.cpp
274
%%DATADIR%%/templates/projects/executable-wxcrafter-dialog/wxcrafter.h
275
%%DATADIR%%/templates/projects/executable-wxcrafter-dialog/wxcrafter.wxcp
276
%%DATADIR%%/templates/projects/executable-wxcrafter-dialog/wxcrafter_bitmaps.cpp
277
%%DATADIR%%/templates/projects/executable-wxcrafter-frame/MainFrame.cpp
278
%%DATADIR%%/templates/projects/executable-wxcrafter-frame/MainFrame.h
279
%%DATADIR%%/templates/projects/executable-wxcrafter-frame/icon.png
280
%%DATADIR%%/templates/projects/executable-wxcrafter-frame/main.cpp
281
%%DATADIR%%/templates/projects/executable-wxcrafter-frame/win_resources.rc
282
%%DATADIR%%/templates/projects/executable-wxcrafter-frame/wxCrafter_MainFrame.project
283
%%DATADIR%%/templates/projects/executable-wxcrafter-frame/wxcrafter.cpp
284
%%DATADIR%%/templates/projects/executable-wxcrafter-frame/wxcrafter.h
285
%%DATADIR%%/templates/projects/executable-wxcrafter-frame/wxcrafter.wxcp
286
%%DATADIR%%/templates/projects/executable-wxcrafter-frame/wxcrafter_bitmaps.cpp
287
%%DATADIR%%/templates/projects/executable/executable.project
288
%%DATADIR%%/templates/projects/executable/icon.png
289
%%DATADIR%%/templates/projects/executable/main.cpp
290
%%DATADIR%%/templates/projects/non-code-project/icon.png
291
%%DATADIR%%/templates/projects/non-code-project/non-code.project
292
%%DATADIR%%/templates/projects/static-library-wx-enabled/icon.png
293
%%DATADIR%%/templates/projects/static-library-wx-enabled/main.cpp
294
%%DATADIR%%/templates/projects/static-library-wx-enabled/static-library-wx-enabled.project
295
%%DATADIR%%/templates/projects/static-library/icon.png
296
%%DATADIR%%/templates/projects/static-library/static-library.project
297
%%DATADIR%%/templates/projects/vc-dynamic-library/icon.png
298
%%DATADIR%%/templates/projects/vc-dynamic-library/vc-dynamic-library.project
299
%%DATADIR%%/templates/projects/vc-executable/icon.png
300
%%DATADIR%%/templates/projects/vc-executable/vc-executable.project
301
%%DATADIR%%/templates/projects/vc-static-lib/icon.png
302
%%DATADIR%%/templates/projects/vc-static-lib/vc-static-lib.project
303
%%DATADIR%%/templates/projects/wxWidgets_ConsoleApp/icon.png
304
%%DATADIR%%/templates/projects/wxWidgets_ConsoleApp/main_app.cpp
305
%%DATADIR%%/templates/projects/wxWidgets_ConsoleApp/main_app.h
306
%%DATADIR%%/templates/projects/wxWidgets_ConsoleApp/wxWidgets_ConsoleApp.project
307
%%DATADIR%%/templates/qmake/qmake.project
308
%%DATADIR%%/unittest++1.3.tar.gz
309
%%DATADIR%%/wxgui.zip
310
share/icons/hicolor/128x128/apps/codelite.png
311
share/icons/hicolor/128x128@2x/apps/codelite.png
312
share/icons/hicolor/256x256/apps/codelite.png
313
share/icons/hicolor/256x256@2x/apps/codelite.png
314
share/icons/hicolor/32x32/apps/codelite.png
315
share/icons/hicolor/32x32@2x/apps/codelite.png
316
share/icons/hicolor/64x64/apps/codelite.png
317
share/icons/hicolor/64x64@2x/apps/codelite.png
318
share/locale/cs/LC_MESSAGES/codelite.mo
319
share/locale/ja_JP/LC_MESSAGES/codelite.mo
320
share/locale/ru_RU/LC_MESSAGES/codelite.mo
321
share/locale/zh_CN/LC_MESSAGES/codelite.mo

Return to bug 252085