View | Details | Raw Unified | Return to bug 209377
Collapse All | Expand All

(-)Makefile (-12 / +11 lines)
Lines 1-38 Link Here
1
# Created by: Matthias Sund <m.sund@arcor.de>
1
# Created by: Loïc BARTOLETTI <lbartoletti@tuxfamily.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	codeblocks
4
PORTNAME=	codeblocks
5
PORTVERSION=	13.12
5
PORTVERSION=	16.01
6
PORTREVISION=	5
7
CATEGORIES=	devel
6
CATEGORIES=	devel
8
MASTER_SITES=	SF/${PORTNAME}/Sources/${PORTVERSION}
7
MASTER_SITES=	SF/${PORTNAME}/Sources/${PORTVERSION}
9
DISTNAME=	${PORTNAME}_${PORTVERSION}-1
8
DISTNAME=	${PORTNAME}_${PORTVERSION}
10
9
11
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	lbartoletti@tuxfamily.org
12
COMMENT=	Open source, cross-platform, free C/C++ IDE
11
COMMENT=	Open source, cross-platform, free C/C++ IDE
13
12
14
LICENSE=	GPLv3 LGPL3
13
LICENSE=	GPLv3 LGPL3
15
LICENSE_COMB=	multi
14
LICENSE_COMB=	multi
16
15
17
BUILD_DEPENDS=	zip:archivers/zip
16
BUILD_DEPENDS=	zip:${PORTSDIR}/archivers/zip
18
LIB_DEPENDS=	libboost_system.so:devel/boost-libs \
17
LIB_DEPENDS=	libboost_system.so:${PORTSDIR}/devel/boost-libs \
19
		libhunspell-1.3.so:textproc/hunspell \
18
		libhunspell-1.3.so:${PORTSDIR}/textproc/hunspell
20
		librsync.so:net/librsync
21
19
22
USES=		compiler desktop-file-utils fam:gamin libtool pathfix \
20
USES=		autoreconf compiler desktop-file-utils fam:gamin libtool pathfix \
23
		pkgconfig shared-mime-info
21
		pkgconfig shared-mime-info
24
USE_WX=		2.8
22
USE_WX=		2.8
25
WX_UNICODE=	yes
23
WANT_UNICODE=	yes
26
GNU_CONFIGURE=	yes
24
GNU_CONFIGURE=	yes
27
CONFIGURE_ARGS=	--with-wx-config=${WX_CONFIG} --with-contrib-plugins=all \
25
CONFIGURE_ARGS=	--with-wx-config=${WX_CONFIG} --with-contrib-plugins=all \
28
		--disable-pch
26
		--disable-pch
29
CPPFLAGS+=	-I${LOCALBASE}/include
27
CPPFLAGS+=	-I${LOCALBASE}/include
30
LIBS+=		-L${LOCALBASE}/lib -lboost_system
28
LIBS+=		-L${LOCALBASE}/lib -lboost_system
29
PKG_CONFIG_LIBDIR=	${LOCALBASE}/libdata/pkgconfig
31
INSTALLS_ICONS=	yes
30
INSTALLS_ICONS=	yes
32
INSTALL_TARGET=	install-strip
31
INSTALL_TARGET=	install-strip
33
USE_LDCONFIG=	yes
32
USE_LDCONFIG=	yes
34
33
35
WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
34
WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}.release
36
35
37
.include <bsd.port.pre.mk>
36
.include <bsd.port.pre.mk>
38
37
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (codeblocks_13.12-1.tar.gz) = 772450046e8c8ba2ea0086acf433a46b83e6254fae64df9c8ca132a22f949610
1
SHA256 (codeblocks_16.01.tar.gz) = 30fb9d206df4ab3c2e2fec2451a0a7c9723bfed9a673cc9be71e881c529d5a03
2
SIZE (codeblocks_13.12-1.tar.gz) = 17221056
2
SIZE (codeblocks_16.01.tar.gz) = 20250097
(-)files/patch-Makefile.am (+11 lines)
Line 0 Link Here
1
--- Makefile.am.orig	2016-01-23 16:43:26 UTC
2
+++ Makefile.am
3
@@ -10,7 +10,7 @@ endif
4
 
5
 am__tar = @am__tar@ $(ADDITIONAL_MAKE_DIST_OPTIONS)
6
 
7
-pkgconfigdir = $(libdir)/pkgconfig
8
+pkgconfigdir = ${STAGEDIR}${PREFIX}/libdata/pkgconfig
9
 pkgconfig_DATA = codeblocks.pc
10
 
11
 EXTRA_DIST = bootstrap \
(-)files/patch-Makefile.in (+11 lines)
Line 0 Link Here
1
--- Makefile.in.orig	2016-05-06 22:17:30 UTC
2
+++ Makefile.in
3
@@ -455,7 +455,7 @@ SUBDIRS = src
4
 ACLOCAL_AMFLAGS = -I m4
5
 @KEEP_DLLS_FALSE@ADDITIONAL_MAKE_DIST_OPTIONS = --exclude=".svn" --exclude="*.dll"
6
 @KEEP_DLLS_TRUE@ADDITIONAL_MAKE_DIST_OPTIONS = --exclude=".svn"
7
-pkgconfigdir = $(prefix)/libdata/pkgconfig
8
+pkgconfigdir = ${STAGEDIR}${PREFIX}/libdata/pkgconfig
9
 pkgconfig_DATA = codeblocks.pc
10
 EXTRA_DIST = bootstrap \
11
 		codeblocks.spec \
(-)files/patch-src__include__cbthreadpool.h (-73 lines)
Lines 1-73 Link Here
1
--- src/include/cbthreadpool.h.orig	2013-11-17 20:34:15.000000000 +0100
2
+++ src/include/cbthreadpool.h	2015-09-16 21:19:53.385265000 +0200
3
@@ -15,6 +15,12 @@
4
 #include "settings.h"
5
 #include "prep.h"
6
 
7
+#if defined(__has_feature) && __has_feature(cxx_noexcept)
8
+#define NOEXCEPT noexcept
9
+#else
10
+#define NOEXCEPT throw()
11
+#endif
12
+
13
 /// A Thread Pool implementation
14
 class DLLIMPORT cbThreadPool
15
 {
16
@@ -94,11 +100,11 @@ class DLLIMPORT cbThreadPool
17
 
18
       public:
19
         explicit CountedPtr(T *p = 0);
20
-        CountedPtr(const CountedPtr<T> &p) throw();
21
-        ~CountedPtr() throw();
22
-        CountedPtr<T> &operator = (const CountedPtr<T> &p) throw();
23
-        T &operator * () const throw();
24
-        T *operator -> () const throw();
25
+        CountedPtr(const CountedPtr<T> &p) NOEXCEPT;
26
+        ~CountedPtr() NOEXCEPT;
27
+        CountedPtr<T> &operator = (const CountedPtr<T> &p) NOEXCEPT;
28
+        T &operator * () const NOEXCEPT;
29
+        T *operator -> () const NOEXCEPT;
30
 
31
       private:
32
         void dispose();
33
@@ -281,7 +287,7 @@ inline cbThreadPool::CountedPtr<T>::Coun
34
 }
35
 
36
 template <typename T>
37
-inline cbThreadPool::CountedPtr<T>::CountedPtr(const CountedPtr<T> &p) throw()
38
+inline cbThreadPool::CountedPtr<T>::CountedPtr(const CountedPtr<T> &p) NOEXCEPT
39
 : ptr(p.ptr),
40
   count(p.count)
41
 {
42
@@ -289,13 +295,13 @@ inline cbThreadPool::CountedPtr<T>::Coun
43
 }
44
 
45
 template <typename T>
46
-inline cbThreadPool::CountedPtr<T>::~CountedPtr() throw()
47
+inline cbThreadPool::CountedPtr<T>::~CountedPtr() NOEXCEPT
48
 {
49
   dispose();
50
 }
51
 
52
 template <typename T>
53
-inline cbThreadPool::CountedPtr<T> &cbThreadPool::CountedPtr<T>::operator = (const CountedPtr<T> &p) throw()
54
+inline cbThreadPool::CountedPtr<T> &cbThreadPool::CountedPtr<T>::operator = (const CountedPtr<T> &p) NOEXCEPT
55
 {
56
   if (this != &p)
57
   {
58
@@ -309,13 +315,13 @@ inline cbThreadPool::CountedPtr<T> &cbTh
59
 }
60
 
61
 template <typename T>
62
-inline T &cbThreadPool::CountedPtr<T>::operator * () const throw()
63
+inline T &cbThreadPool::CountedPtr<T>::operator * () const NOEXCEPT
64
 {
65
   return *ptr;
66
 }
67
 
68
 template <typename T>
69
-inline T *cbThreadPool::CountedPtr<T>::operator -> () const throw()
70
+inline T *cbThreadPool::CountedPtr<T>::operator -> () const NOEXCEPT
71
 {
72
   return ptr;
73
 }
(-)files/patch-src_plugins_contrib_SpellChecker_hunspell_Makefile.am (+11 lines)
Line 0 Link Here
1
--- src/plugins/contrib/SpellChecker/hunspell/Makefile.am.orig	2016-05-06 22:18:30 UTC
2
+++ src/plugins/contrib/SpellChecker/hunspell/Makefile.am
3
@@ -2,7 +2,7 @@ ACLOCAL_AMFLAGS = -I m4
4
 
5
 SUBDIRS= intl po src man m4 tests
6
 
7
-pkgconfdir = $(libdir)/pkgconfig
8
+pkgconfdir = ${STAGEDIR}${PREFIX}/libdata/pkgconfig
9
 pkgconf_DATA = hunspell.pc
10
 
11
 EXTRA_DIST = BUGS README.myspell AUTHORS.myspell license.myspell license.hunspell \
(-)files/patch-src_plugins_contrib_SpellChecker_hunspell_Makefile.in.org (+11 lines)
Line 0 Link Here
1
--- src/plugins/contrib/SpellChecker/hunspell/Makefile.in.org.orig	2016-05-06 22:19:18 UTC
2
+++ src/plugins/contrib/SpellChecker/hunspell/Makefile.in.org
3
@@ -429,7 +429,7 @@ top_builddir = @top_builddir@
4
 top_srcdir = @top_srcdir@
5
 ACLOCAL_AMFLAGS = -I m4
6
 SUBDIRS = intl po src man m4 tests
7
-pkgconfdir = $(libdir)/pkgconfig
8
+pkgconfdir = ${STAGEDIR}${PREFIX}/libdata/pkgconfig
9
 pkgconf_DATA = hunspell.pc
10
 EXTRA_DIST = BUGS README.myspell AUTHORS.myspell license.myspell license.hunspell \
11
         ChangeLog.O COPYING.MPL COPYING.LGPL hunspell.pc.in
(-)files/patch-src_plugins_contrib_wxContribItems_Makefile.am (+9 lines)
Line 0 Link Here
1
--- src/plugins/contrib/wxContribItems/Makefile.am.orig	2016-05-06 22:22:42 UTC
2
+++ src/plugins/contrib/wxContribItems/Makefile.am
3
@@ -9,5 +9,5 @@ SUBDIRS = wxchart wxFlatNotebook wxthing
4
 
5
 EXTRA_DIST = $(srcdir)/*.cbp $(TREELIST_DIST)
6
 
7
-pkgconfigdir = $(libdir)/pkgconfig
8
+pkgconfigdir = ${STAGEDIR}${PREFIX}/libdata/pkgconfig
9
 pkgconfig_DATA = wxsmith-contrib.pc cb_wxcontrib.pc cb_wxchartctrl.pc cb_wxcustombutton.pc cb_wxflatnotebook.pc cb_wximagepanel.pc cb_wxspeedbutton.pc cb_wxKWIC.pc $(TREELIST_PC) cb_wxled.pc cb_wxmathplot.pc
(-)files/patch-src_plugins_contrib_wxContribItems_Makefile.in (+11 lines)
Line 0 Link Here
1
--- src/plugins/contrib/wxContribItems/Makefile.in.orig	2016-05-06 22:22:44 UTC
2
+++ src/plugins/contrib/wxContribItems/Makefile.in
3
@@ -444,7 +444,7 @@ top_srcdir = @top_srcdir@
4
 @HAVE_WX29_TRUE@TREELIST_DIST = $(srcdir)/wxTreeList/src/treelistctrl.cpp $(srcdir)/wxTreeList/include/wx/treelistctrl.h
5
 SUBDIRS = wxchart wxFlatNotebook wxthings wxImagePanel wxSpeedButton KWIC $(TREELIST_DIR) wxled wxmathplot .
6
 EXTRA_DIST = $(srcdir)/*.cbp $(TREELIST_DIST)
7
-pkgconfigdir = $(prefix)/libdata/pkgconfig
8
+pkgconfigdir = ${STAGEDIR}${PREFIX}/libdata/pkgconfig
9
 pkgconfig_DATA = wxsmith-contrib.pc cb_wxcontrib.pc cb_wxchartctrl.pc cb_wxcustombutton.pc cb_wxflatnotebook.pc cb_wximagepanel.pc cb_wxspeedbutton.pc cb_wxKWIC.pc $(TREELIST_PC) cb_wxled.pc cb_wxmathplot.pc
10
 all: all-recursive
11
 
(-)files/patch-src_plugins_contrib_wxSmithAui_Makefile.am (+11 lines)
Line 0 Link Here
1
--- src/plugins/contrib/wxSmithAui/Makefile.am.orig	2016-05-06 22:24:09 UTC
2
+++ src/plugins/contrib/wxSmithAui/Makefile.am
3
@@ -45,7 +45,7 @@ libwxSmithAui_la_SOURCES = \
4
 ./wxAuiToolBar/wxSmithAuiToolBar.cpp \
5
 ./wxSmithAui.cpp
6
 
7
-pkgconfigdir = $(libdir)/pkgconfig
8
+pkgconfigdir = ${STAGEDIR}${PREFIX}/libdata/pkgconfig
9
 pkgconfig_DATA = wxsmithaui.pc
10
 
11
 noinst_HEADERS = \
(-)files/patch-src_plugins_contrib_wxSmithAui_Makefile.in (+11 lines)
Line 0 Link Here
1
--- src/plugins/contrib/wxSmithAui/Makefile.in.orig	2016-05-06 22:24:06 UTC
2
+++ src/plugins/contrib/wxSmithAui/Makefile.in
3
@@ -478,7 +478,7 @@ libwxSmithAui_la_SOURCES = \
4
 ./wxAuiToolBar/wxSmithAuiToolBar.cpp \
5
 ./wxSmithAui.cpp
6
 
7
-pkgconfigdir = $(prefix)/libdata/pkgconfig
8
+pkgconfigdir = ${STAGEDIR}${PREFIX}/libdata/pkgconfig
9
 pkgconfig_DATA = wxsmithaui.pc
10
 noinst_HEADERS = \
11
 ./wxAuiManager/wxsAuiManager.h \
(-)files/patch-src_plugins_contrib_wxSmith_Makefile.am (+11 lines)
Line 0 Link Here
1
--- src/plugins/contrib/wxSmith/Makefile.am.orig	2016-05-06 22:22:03 UTC
2
+++ src/plugins/contrib/wxSmith/Makefile.am
3
@@ -70,7 +70,7 @@ noinst_HEADERS = \
4
 ./wxsversionconverter.h \
5
 ./wxssettings.h
6
 
7
-pkgconfigdir = $(libdir)/pkgconfig
8
+pkgconfigdir = ${STAGEDIR}${PREFIX}/libdata/pkgconfig
9
 pkgconfig_DATA = wxsmith.pc
10
 
11
 EXTRA_DIST = \
(-)files/patch-src_plugins_contrib_wxSmith_Makefile.in (+11 lines)
Line 0 Link Here
1
--- src/plugins/contrib/wxSmith/Makefile.in.orig	2016-05-06 22:20:29 UTC
2
+++ src/plugins/contrib/wxSmith/Makefile.in
3
@@ -546,7 +546,7 @@ noinst_HEADERS = \
4
 ./wxsversionconverter.h \
5
 ./wxssettings.h
6
 
7
-pkgconfigdir = $(prefix)/libdata/pkgconfig
8
+pkgconfigdir = ${STAGEDIR}${PREFIX}/libdata/pkgconfig
9
 pkgconfig_DATA = wxsmith.pc
10
 EXTRA_DIST = \
11
 $(srcdir)/*.cbp \
(-)files/patch-src_sdk_wxscintilla_src_ScintillaWX.cpp (+11 lines)
Line 0 Link Here
1
--- src/sdk/wxscintilla/src/ScintillaWX.cpp.orig	2016-01-23 16:43:01 UTC
2
+++ src/sdk/wxscintilla/src/ScintillaWX.cpp
3
@@ -290,7 +290,7 @@ static int wxCountLines(const char* text
4
 
5
 /* C::B begin */
6
 // Constant ids for the timers used by every editor.
7
-const int timerIDs[ScintillaWX::timersCount] = { wxNewId(), wxNewId(), wxNewId(), wxNewId() };
8
+const int timerIDs[ScintillaWX::timersCount] = { static_cast<int>(wxNewId()), static_cast<int>(wxNewId()), static_cast<int>(wxNewId()), static_cast<int>(wxNewId()) };
9
 /* C::B end */
10
 
11
 //----------------------------------------------------------------------
(-)pkg-plist (-17 / +51 lines)
Lines 1-7 Link Here
1
bin/cb_console_runner
1
bin/cb_console_runner
2
bin/cb_share_config
2
bin/cb_share_config
3
bin/codeblocks
3
bin/codeblocks
4
bin/codesnippets
4
include/codeblocks/Alignment.h
5
include/codeblocks/Assertions.h
5
include/codeblocks/Assertions.h
6
include/codeblocks/Attributes.h
6
include/codeblocks/Attributes.h
7
include/codeblocks/CharDistribution.h
7
include/codeblocks/CharDistribution.h
Lines 10-16 Link Here
10
include/codeblocks/JpCntx.h
10
include/codeblocks/JpCntx.h
11
include/codeblocks/Likely.h
11
include/codeblocks/Likely.h
12
include/codeblocks/NullPtr.h
12
include/codeblocks/NullPtr.h
13
include/codeblocks/StandardInteger.h
13
include/codeblocks/TypedEnum.h
14
include/codeblocks/Types.h
14
include/codeblocks/Types.h
15
include/codeblocks/Util.h
15
include/codeblocks/Util.h
16
include/codeblocks/annoyingdialog.h
16
include/codeblocks/annoyingdialog.h
Lines 34-39 Link Here
34
include/codeblocks/cbtool.h
34
include/codeblocks/cbtool.h
35
include/codeblocks/cbtreectrl.h
35
include/codeblocks/cbtreectrl.h
36
include/codeblocks/cbworkspace.h
36
include/codeblocks/cbworkspace.h
37
include/codeblocks/ccmanager.h
37
include/codeblocks/compileoptionsbase.h
38
include/codeblocks/compileoptionsbase.h
38
include/codeblocks/compiler.h
39
include/codeblocks/compiler.h
39
include/codeblocks/compilercommandgenerator.h
40
include/codeblocks/compilercommandgenerator.h
Lines 49-55 Link Here
49
include/codeblocks/editarrayfiledlg.h
50
include/codeblocks/editarrayfiledlg.h
50
include/codeblocks/editarrayorderdlg.h
51
include/codeblocks/editarrayorderdlg.h
51
include/codeblocks/editarraystringdlg.h
52
include/codeblocks/editarraystringdlg.h
52
include/codeblocks/editkeywordsdlg.h
53
include/codeblocks/editor_hooks.h
53
include/codeblocks/editor_hooks.h
54
include/codeblocks/editorbase.h
54
include/codeblocks/editorbase.h
55
include/codeblocks/editorcolourset.h
55
include/codeblocks/editorcolourset.h
Lines 119-125 Link Here
119
include/codeblocks/printing_types.h
119
include/codeblocks/printing_types.h
120
include/codeblocks/prmem.h
120
include/codeblocks/prmem.h
121
include/codeblocks/projectbuildtarget.h
121
include/codeblocks/projectbuildtarget.h
122
include/codeblocks/projectdepsdlg.h
123
include/codeblocks/projectfile.h
122
include/codeblocks/projectfile.h
124
include/codeblocks/projectfileoptionsdlg.h
123
include/codeblocks/projectfileoptionsdlg.h
125
include/codeblocks/projectlayoutloader.h
124
include/codeblocks/projectlayoutloader.h
Lines 162-168 Link Here
162
include/codeblocks/tinyxml/tinyxml.h
161
include/codeblocks/tinyxml/tinyxml.h
163
include/codeblocks/toolsmanager.h
162
include/codeblocks/toolsmanager.h
164
include/codeblocks/uservarmanager.h
163
include/codeblocks/uservarmanager.h
165
include/codeblocks/virtualbuildtargetsdlg.h
166
include/codeblocks/workspaceloader.h
164
include/codeblocks/workspaceloader.h
167
include/codeblocks/wxContribItems/KWIC/include/wx/KWIC/AngularMeter.h
165
include/codeblocks/wxContribItems/KWIC/include/wx/KWIC/AngularMeter.h
168
include/codeblocks/wxContribItems/KWIC/include/wx/KWIC/AngularRegulator.h
166
include/codeblocks/wxContribItems/KWIC/include/wx/KWIC/AngularRegulator.h
Lines 186-191 Link Here
186
include/codeblocks/wxContribItems/wxFlatNotebook/include/wx/wxFlatNotebook/wxFlatNotebook.h
184
include/codeblocks/wxContribItems/wxFlatNotebook/include/wx/wxFlatNotebook/wxFlatNotebook.h
187
include/codeblocks/wxContribItems/wxFlatNotebook/include/wx/wxFlatNotebook/wxFlatNotebookSDK.h
185
include/codeblocks/wxContribItems/wxFlatNotebook/include/wx/wxFlatNotebook/wxFlatNotebookSDK.h
188
include/codeblocks/wxContribItems/wxImagePanel/include/wx/wxImagePanel.h
186
include/codeblocks/wxContribItems/wxImagePanel/include/wx/wxImagePanel.h
187
include/codeblocks/wxContribItems/wxMathPlot/mathplot.h
189
include/codeblocks/wxContribItems/wxSpeedButton/wxSpeedButton.h
188
include/codeblocks/wxContribItems/wxSpeedButton/wxSpeedButton.h
190
include/codeblocks/wxContribItems/wxTreeList/include/wx/treelistctrl.h
189
include/codeblocks/wxContribItems/wxTreeList/include/wx/treelistctrl.h
191
include/codeblocks/wxContribItems/wxchart/include/wx/axis.h
190
include/codeblocks/wxContribItems/wxchart/include/wx/axis.h
Lines 339-344 Link Here
339
lib/codeblocks/plugins/libMouseSap.so
338
lib/codeblocks/plugins/libMouseSap.so
340
lib/codeblocks/plugins/libNassiShneiderman.so
339
lib/codeblocks/plugins/libNassiShneiderman.so
341
lib/codeblocks/plugins/libProfiler.so
340
lib/codeblocks/plugins/libProfiler.so
341
lib/codeblocks/plugins/libProjectOptionsManipulator.so
342
lib/codeblocks/plugins/libRegExTestbed.so
342
lib/codeblocks/plugins/libRegExTestbed.so
343
lib/codeblocks/plugins/libReopenEditor.so
343
lib/codeblocks/plugins/libReopenEditor.so
344
lib/codeblocks/plugins/libSmartIndentCpp.so
344
lib/codeblocks/plugins/libSmartIndentCpp.so
Lines 399-404 Link Here
399
lib/codeblocks/wxContribItems/libwxled.so
399
lib/codeblocks/wxContribItems/libwxled.so
400
lib/codeblocks/wxContribItems/libwxled.so.0
400
lib/codeblocks/wxContribItems/libwxled.so.0
401
lib/codeblocks/wxContribItems/libwxled.so.0.0.1
401
lib/codeblocks/wxContribItems/libwxled.so.0.0.1
402
lib/codeblocks/wxContribItems/libwxmathplot.so
403
lib/codeblocks/wxContribItems/libwxmathplot.so.0
404
lib/codeblocks/wxContribItems/libwxmathplot.so.0.0.1
402
lib/codeblocks/wxContribItems/libwxspeedbutton.so
405
lib/codeblocks/wxContribItems/libwxspeedbutton.so
403
lib/codeblocks/wxContribItems/libwxspeedbutton.so.0
406
lib/codeblocks/wxContribItems/libwxspeedbutton.so.0
404
lib/codeblocks/wxContribItems/libwxspeedbutton.so.0.0.1
407
lib/codeblocks/wxContribItems/libwxspeedbutton.so.0.0.1
Lines 411-416 Link Here
411
lib/libwxsmithlib.so
414
lib/libwxsmithlib.so
412
lib/libwxsmithlib.so.0
415
lib/libwxsmithlib.so.0
413
lib/libwxsmithlib.so.0.0.1
416
lib/libwxsmithlib.so.0.0.1
417
libdata/pkgconfig/codeblocks.pc
414
libdata/pkgconfig/cb_wxKWIC.pc
418
libdata/pkgconfig/cb_wxKWIC.pc
415
libdata/pkgconfig/cb_wxchartctrl.pc
419
libdata/pkgconfig/cb_wxchartctrl.pc
416
libdata/pkgconfig/cb_wxcontrib.pc
420
libdata/pkgconfig/cb_wxcontrib.pc
Lines 418-426 Link Here
418
libdata/pkgconfig/cb_wxflatnotebook.pc
422
libdata/pkgconfig/cb_wxflatnotebook.pc
419
libdata/pkgconfig/cb_wximagepanel.pc
423
libdata/pkgconfig/cb_wximagepanel.pc
420
libdata/pkgconfig/cb_wxled.pc
424
libdata/pkgconfig/cb_wxled.pc
425
libdata/pkgconfig/cb_wxmathplot.pc
421
libdata/pkgconfig/cb_wxspeedbutton.pc
426
libdata/pkgconfig/cb_wxspeedbutton.pc
422
libdata/pkgconfig/cb_wxtreelist.pc
427
libdata/pkgconfig/cb_wxtreelist.pc
423
libdata/pkgconfig/codeblocks.pc
424
libdata/pkgconfig/wxsmith-contrib.pc
428
libdata/pkgconfig/wxsmith-contrib.pc
425
libdata/pkgconfig/wxsmith.pc
429
libdata/pkgconfig/wxsmith.pc
426
libdata/pkgconfig/wxsmithaui.pc
430
libdata/pkgconfig/wxsmithaui.pc
Lines 429-438 Link Here
429
man/man1/codeblocks.1.gz
433
man/man1/codeblocks.1.gz
430
man/man1/codesnippets.1.gz
434
man/man1/codesnippets.1.gz
431
share/applications/codeblocks.desktop
435
share/applications/codeblocks.desktop
432
share/icons/hicolor/48x48/mimetypes/application-x-codeblocks-workspace.png
433
share/icons/hicolor/48x48/mimetypes/application-x-codeblocks.png
434
share/mime/packages/codeblocks.xml
435
share/pixmaps/codeblocks.png
436
%%DATADIR%%/AutoVersioning.zip
436
%%DATADIR%%/AutoVersioning.zip
437
%%DATADIR%%/BrowseTracker.zip
437
%%DATADIR%%/BrowseTracker.zip
438
%%DATADIR%%/Cccc.zip
438
%%DATADIR%%/Cccc.zip
Lines 447-452 Link Here
447
%%DATADIR%%/MouseSap.zip
447
%%DATADIR%%/MouseSap.zip
448
%%DATADIR%%/NassiShneiderman.zip
448
%%DATADIR%%/NassiShneiderman.zip
449
%%DATADIR%%/Profiler.zip
449
%%DATADIR%%/Profiler.zip
450
%%DATADIR%%/ProjectOptionsManipulator.zip
450
%%DATADIR%%/RegExTestbed.zip
451
%%DATADIR%%/RegExTestbed.zip
451
%%DATADIR%%/ReopenEditor.zip
452
%%DATADIR%%/ReopenEditor.zip
452
%%DATADIR%%/SmartIndentCpp.zip
453
%%DATADIR%%/SmartIndentCpp.zip
Lines 468-473 Link Here
468
%%DATADIR%%/SpellChecker/en_NZ.png
469
%%DATADIR%%/SpellChecker/en_NZ.png
469
%%DATADIR%%/SpellChecker/en_US.png
470
%%DATADIR%%/SpellChecker/en_US.png
470
%%DATADIR%%/SpellChecker/fr_FR.png
471
%%DATADIR%%/SpellChecker/fr_FR.png
472
%%DATADIR%%/SpellChecker/ru_RU.png
471
%%DATADIR%%/SymTab.zip
473
%%DATADIR%%/SymTab.zip
472
%%DATADIR%%/ThreadSearch.zip
474
%%DATADIR%%/ThreadSearch.zip
473
%%DATADIR%%/ToolsPlus.zip
475
%%DATADIR%%/ToolsPlus.zip
Lines 484-493 Link Here
484
%%DATADIR%%/compiler.zip
486
%%DATADIR%%/compiler.zip
485
%%DATADIR%%/compilers/compiler_avr-gcc.xml
487
%%DATADIR%%/compilers/compiler_avr-gcc.xml
486
%%DATADIR%%/compilers/compiler_bcc.xml
488
%%DATADIR%%/compilers/compiler_bcc.xml
489
%%DATADIR%%/compilers/compiler_bfin-elf-gcc.xml
487
%%DATADIR%%/compilers/compiler_clang.xml
490
%%DATADIR%%/compilers/compiler_clang.xml
488
%%DATADIR%%/compilers/compiler_dmc.xml
491
%%DATADIR%%/compilers/compiler_dmc.xml
489
%%DATADIR%%/compilers/compiler_dmd.xml
492
%%DATADIR%%/compilers/compiler_dmd.xml
490
%%DATADIR%%/compilers/compiler_ldc.xml
493
%%DATADIR%%/compilers/compiler_ldc.xml
494
%%DATADIR%%/compilers/compiler_lm32-gcc.xml
495
%%DATADIR%%/compilers/compiler_lm8-gcc.xml
491
%%DATADIR%%/compilers/compiler_msp430-gcc.xml
496
%%DATADIR%%/compilers/compiler_msp430-gcc.xml
492
%%DATADIR%%/compilers/compiler_null.xml
497
%%DATADIR%%/compilers/compiler_null.xml
493
%%DATADIR%%/compilers/compiler_pgifortran.xml
498
%%DATADIR%%/compilers/compiler_pgifortran.xml
Lines 495-503 Link Here
495
%%DATADIR%%/compilers/compiler_sdcc.xml
500
%%DATADIR%%/compilers/compiler_sdcc.xml
496
%%DATADIR%%/compilers/compiler_tcc.xml
501
%%DATADIR%%/compilers/compiler_tcc.xml
497
%%DATADIR%%/compilers/compiler_tricore-gcc.xml
502
%%DATADIR%%/compilers/compiler_tricore-gcc.xml
503
%%DATADIR%%/compilers/compiler_zpu-gcc.xml
498
%%DATADIR%%/compilers/options_arm-elf-gcc.xml
504
%%DATADIR%%/compilers/options_arm-elf-gcc.xml
499
%%DATADIR%%/compilers/options_avr-gcc.xml
505
%%DATADIR%%/compilers/options_avr-gcc.xml
500
%%DATADIR%%/compilers/options_bcc.xml
506
%%DATADIR%%/compilers/options_bcc.xml
507
%%DATADIR%%/compilers/options_bfin-elf-gcc.xml
501
%%DATADIR%%/compilers/options_clang.xml
508
%%DATADIR%%/compilers/options_clang.xml
502
%%DATADIR%%/compilers/options_common_architecture.xml
509
%%DATADIR%%/compilers/options_common_architecture.xml
503
%%DATADIR%%/compilers/options_common_cmds.xml
510
%%DATADIR%%/compilers/options_common_cmds.xml
Lines 526-531 Link Here
526
%%DATADIR%%/compilers/options_keilcx51.xml
533
%%DATADIR%%/compilers/options_keilcx51.xml
527
%%DATADIR%%/compilers/options_lcc.xml
534
%%DATADIR%%/compilers/options_lcc.xml
528
%%DATADIR%%/compilers/options_ldc.xml
535
%%DATADIR%%/compilers/options_ldc.xml
536
%%DATADIR%%/compilers/options_lm32-gcc.xml
537
%%DATADIR%%/compilers/options_lm8-gcc.xml
529
%%DATADIR%%/compilers/options_msp430-gcc.xml
538
%%DATADIR%%/compilers/options_msp430-gcc.xml
530
%%DATADIR%%/compilers/options_msvc10.xml
539
%%DATADIR%%/compilers/options_msvc10.xml
531
%%DATADIR%%/compilers/options_msvc8.xml
540
%%DATADIR%%/compilers/options_msvc8.xml
Lines 537-542 Link Here
537
%%DATADIR%%/compilers/options_sdcc.xml
546
%%DATADIR%%/compilers/options_sdcc.xml
538
%%DATADIR%%/compilers/options_tcc.xml
547
%%DATADIR%%/compilers/options_tcc.xml
539
%%DATADIR%%/compilers/options_tricore-gcc.xml
548
%%DATADIR%%/compilers/options_tricore-gcc.xml
549
%%DATADIR%%/compilers/options_zpu-gcc.xml
540
%%DATADIR%%/copystrings.zip
550
%%DATADIR%%/copystrings.zip
541
%%DATADIR%%/debugger.zip
551
%%DATADIR%%/debugger.zip
542
%%DATADIR%%/defaultmimehandler.zip
552
%%DATADIR%%/defaultmimehandler.zip
Lines 760-777 Link Here
760
%%DATADIR%%/images/codecompletion/folder_green_open.png
770
%%DATADIR%%/images/codecompletion/folder_green_open.png
761
%%DATADIR%%/images/codecompletion/folder_open.png
771
%%DATADIR%%/images/codecompletion/folder_open.png
762
%%DATADIR%%/images/codecompletion/funcs_folder.png
772
%%DATADIR%%/images/codecompletion/funcs_folder.png
763
%%DATADIR%%/images/codecompletion/macro.png
773
%%DATADIR%%/images/codecompletion/macro_def.png
764
%%DATADIR%%/images/codecompletion/macro_folder.png
774
%%DATADIR%%/images/codecompletion/macro_def_folder.png
765
%%DATADIR%%/images/codecompletion/macro_private.png
775
%%DATADIR%%/images/codecompletion/macro_use.png
766
%%DATADIR%%/images/codecompletion/macro_protected.png
776
%%DATADIR%%/images/codecompletion/macro_use_folder.png
767
%%DATADIR%%/images/codecompletion/macro_public.png
777
%%DATADIR%%/images/codecompletion/macro_use_private.png
778
%%DATADIR%%/images/codecompletion/macro_use_protected.png
779
%%DATADIR%%/images/codecompletion/macro_use_public.png
768
%%DATADIR%%/images/codecompletion/method_private.png
780
%%DATADIR%%/images/codecompletion/method_private.png
769
%%DATADIR%%/images/codecompletion/method_protected.png
781
%%DATADIR%%/images/codecompletion/method_protected.png
770
%%DATADIR%%/images/codecompletion/method_public.png
782
%%DATADIR%%/images/codecompletion/method_public.png
771
%%DATADIR%%/images/codecompletion/namespace.png
783
%%DATADIR%%/images/codecompletion/namespace.png
772
%%DATADIR%%/images/codecompletion/others_folder.png
784
%%DATADIR%%/images/codecompletion/others_folder.png
773
%%DATADIR%%/images/codecompletion/preproc.png
774
%%DATADIR%%/images/codecompletion/preproc_folder.png
775
%%DATADIR%%/images/codecompletion/symbols_folder.png
785
%%DATADIR%%/images/codecompletion/symbols_folder.png
776
%%DATADIR%%/images/codecompletion/typedef.png
786
%%DATADIR%%/images/codecompletion/typedef.png
777
%%DATADIR%%/images/codecompletion/typedef_private.png
787
%%DATADIR%%/images/codecompletion/typedef_private.png
Lines 841-846 Link Here
841
%%DATADIR%%/images/rc-file-outofdate.png
851
%%DATADIR%%/images/rc-file-outofdate.png
842
%%DATADIR%%/images/rc-file-requireslock.png
852
%%DATADIR%%/images/rc-file-requireslock.png
843
%%DATADIR%%/images/rc-file-uptodate.png
853
%%DATADIR%%/images/rc-file-uptodate.png
854
%%DATADIR%%/images/readonly.png
844
%%DATADIR%%/images/rebuild.png
855
%%DATADIR%%/images/rebuild.png
845
%%DATADIR%%/images/redo.png
856
%%DATADIR%%/images/redo.png
846
%%DATADIR%%/images/run.png
857
%%DATADIR%%/images/run.png
Lines 1143-1148 Link Here
1143
%%DATADIR%%/lexers/lexer_bash.xml
1154
%%DATADIR%%/lexers/lexer_bash.xml
1144
%%DATADIR%%/lexers/lexer_batch.sample
1155
%%DATADIR%%/lexers/lexer_batch.sample
1145
%%DATADIR%%/lexers/lexer_batch.xml
1156
%%DATADIR%%/lexers/lexer_batch.xml
1157
%%DATADIR%%/lexers/lexer_bibtex.sample
1146
%%DATADIR%%/lexers/lexer_bibtex.xml
1158
%%DATADIR%%/lexers/lexer_bibtex.xml
1147
%%DATADIR%%/lexers/lexer_caml.sample
1159
%%DATADIR%%/lexers/lexer_caml.sample
1148
%%DATADIR%%/lexers/lexer_caml.xml
1160
%%DATADIR%%/lexers/lexer_caml.xml
Lines 1150-1155 Link Here
1150
%%DATADIR%%/lexers/lexer_cg.xml
1162
%%DATADIR%%/lexers/lexer_cg.xml
1151
%%DATADIR%%/lexers/lexer_cmake.sample
1163
%%DATADIR%%/lexers/lexer_cmake.sample
1152
%%DATADIR%%/lexers/lexer_cmake.xml
1164
%%DATADIR%%/lexers/lexer_cmake.xml
1165
%%DATADIR%%/lexers/lexer_coffee.sample
1166
%%DATADIR%%/lexers/lexer_coffee.xml
1153
%%DATADIR%%/lexers/lexer_cpp.sample
1167
%%DATADIR%%/lexers/lexer_cpp.sample
1154
%%DATADIR%%/lexers/lexer_cpp.xml
1168
%%DATADIR%%/lexers/lexer_cpp.xml
1155
%%DATADIR%%/lexers/lexer_css.sample
1169
%%DATADIR%%/lexers/lexer_css.sample
Lines 1172-1179 Link Here
1172
%%DATADIR%%/lexers/lexer_hitasm.xml
1186
%%DATADIR%%/lexers/lexer_hitasm.xml
1173
%%DATADIR%%/lexers/lexer_html.sample
1187
%%DATADIR%%/lexers/lexer_html.sample
1174
%%DATADIR%%/lexers/lexer_html.xml
1188
%%DATADIR%%/lexers/lexer_html.xml
1189
%%DATADIR%%/lexers/lexer_ihex.sample
1190
%%DATADIR%%/lexers/lexer_ihex.xml
1175
%%DATADIR%%/lexers/lexer_java.sample
1191
%%DATADIR%%/lexers/lexer_java.sample
1176
%%DATADIR%%/lexers/lexer_java.xml
1192
%%DATADIR%%/lexers/lexer_java.xml
1193
%%DATADIR%%/lexers/lexer_javascript.sample
1194
%%DATADIR%%/lexers/lexer_javascript.xml
1177
%%DATADIR%%/lexers/lexer_latex.sample
1195
%%DATADIR%%/lexers/lexer_latex.sample
1178
%%DATADIR%%/lexers/lexer_latex.xml
1196
%%DATADIR%%/lexers/lexer_latex.xml
1179
%%DATADIR%%/lexers/lexer_lisp.sample
1197
%%DATADIR%%/lexers/lexer_lisp.sample
Lines 1200-1209 Link Here
1200
%%DATADIR%%/lexers/lexer_prg.xml
1218
%%DATADIR%%/lexers/lexer_prg.xml
1201
%%DATADIR%%/lexers/lexer_properties.sample
1219
%%DATADIR%%/lexers/lexer_properties.sample
1202
%%DATADIR%%/lexers/lexer_properties.xml
1220
%%DATADIR%%/lexers/lexer_properties.xml
1221
%%DATADIR%%/lexers/lexer_proto.xml
1203
%%DATADIR%%/lexers/lexer_python.sample
1222
%%DATADIR%%/lexers/lexer_python.sample
1204
%%DATADIR%%/lexers/lexer_python.xml
1223
%%DATADIR%%/lexers/lexer_python.xml
1205
%%DATADIR%%/lexers/lexer_rc.sample
1224
%%DATADIR%%/lexers/lexer_rc.sample
1206
%%DATADIR%%/lexers/lexer_rc.xml
1225
%%DATADIR%%/lexers/lexer_rc.xml
1226
%%DATADIR%%/lexers/lexer_registry.sample
1227
%%DATADIR%%/lexers/lexer_registry.xml
1207
%%DATADIR%%/lexers/lexer_ruby.sample
1228
%%DATADIR%%/lexers/lexer_ruby.sample
1208
%%DATADIR%%/lexers/lexer_ruby.xml
1229
%%DATADIR%%/lexers/lexer_ruby.xml
1209
%%DATADIR%%/lexers/lexer_smalltalk.sample
1230
%%DATADIR%%/lexers/lexer_smalltalk.sample
Lines 1212-1217 Link Here
1212
%%DATADIR%%/lexers/lexer_sql.xml
1233
%%DATADIR%%/lexers/lexer_sql.xml
1213
%%DATADIR%%/lexers/lexer_squirrel.sample
1234
%%DATADIR%%/lexers/lexer_squirrel.sample
1214
%%DATADIR%%/lexers/lexer_squirrel.xml
1235
%%DATADIR%%/lexers/lexer_squirrel.xml
1236
%%DATADIR%%/lexers/lexer_srec.sample
1237
%%DATADIR%%/lexers/lexer_srec.xml
1238
%%DATADIR%%/lexers/lexer_tehex.sample
1239
%%DATADIR%%/lexers/lexer_tehex.xml
1215
%%DATADIR%%/lexers/lexer_vbscript.sample
1240
%%DATADIR%%/lexers/lexer_vbscript.sample
1216
%%DATADIR%%/lexers/lexer_vbscript.xml
1241
%%DATADIR%%/lexers/lexer_vbscript.xml
1217
%%DATADIR%%/lexers/lexer_verilog.sample
1242
%%DATADIR%%/lexers/lexer_verilog.sample
Lines 1237-1242 Link Here
1237
%%DATADIR%%/scripts/sample_plugin.script
1262
%%DATADIR%%/scripts/sample_plugin.script
1238
%%DATADIR%%/scripts/startup.script
1263
%%DATADIR%%/scripts/startup.script
1239
%%DATADIR%%/scripts/stl-views-1.0.3.gdb
1264
%%DATADIR%%/scripts/stl-views-1.0.3.gdb
1265
%%DATADIR%%/scripts/tests/menu_test_plugin.script
1266
%%DATADIR%%/scripts/tests/script_test_plugin.script
1267
%%DATADIR%%/scripts/tests/test_base.script
1268
%%DATADIR%%/scripts/tests/user_dialog_test_plugin.script
1269
%%DATADIR%%/scripts/tests/wx_test.script
1240
%%DATADIR%%/scripts/wx_help.script
1270
%%DATADIR%%/scripts/wx_help.script
1241
%%DATADIR%%/start_here.zip
1271
%%DATADIR%%/start_here.zip
1242
%%DATADIR%%/templates/console-main-c.cpp
1272
%%DATADIR%%/templates/console-main-c.cpp
Lines 1608-1610 Link Here
1608
%%DATADIR%%/wxSmithAui.zip
1638
%%DATADIR%%/wxSmithAui.zip
1609
%%DATADIR%%/wxsmith.zip
1639
%%DATADIR%%/wxsmith.zip
1610
%%DATADIR%%/wxsmithcontribitems.zip
1640
%%DATADIR%%/wxsmithcontribitems.zip
1641
share/icons/hicolor/48x48/mimetypes/application-x-codeblocks-workspace.png
1642
share/icons/hicolor/48x48/mimetypes/application-x-codeblocks.png
1643
share/mime/packages/codeblocks.xml
1644
share/pixmaps/codeblocks.png

Return to bug 209377