summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--editors/codelite/Makefile7
-rw-r--r--editors/codelite/distinfo4
-rw-r--r--editors/codelite/files/patch-Plugin_wxterminal.cpp16
3 files changed, 20 insertions, 7 deletions
diff --git a/editors/codelite/Makefile b/editors/codelite/Makefile
index 35e506f232db..87098136a9fc 100644
--- a/editors/codelite/Makefile
+++ b/editors/codelite/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= codelite
-DISTVERSION= 2.8.0.${SVN_REVISION}
+DISTVERSION= 2.9.0.${SVN_REVISION}
CATEGORIES= editors
MASTER_SITES= SF/${PORTNAME}/Releases/${PORTNAME}-${PORTVERSION:R:R}
@@ -25,16 +25,13 @@ HAS_CONFIGURE= yes
.include <bsd.port.pre.mk>
-SVN_REVISION= 4537
+SVN_REVISION= 4684
.if defined(WITH_CSCOPE)
RUN_DEPENDS+= cscope:${PORTSDIR}/devel/cscope
.endif
post-patch:
-.if ${ARCH} == "amd64"
- ${REINPLACE_CMD} -e '66s|=|= -fPIC|' ${WRKSRC}/configure
-.endif
${REINPLACE_CMD} -e 's|wx-config|${WX_CONFIG}|g' ${WRKSRC}/configure
# Configure script does not respect --prefix
${REINPLACE_CMD} -e '/^prefix/s|/usr|${PREFIX}|; \
diff --git a/editors/codelite/distinfo b/editors/codelite/distinfo
index a287d885940b..8ac04ff63259 100644
--- a/editors/codelite/distinfo
+++ b/editors/codelite/distinfo
@@ -1,2 +1,2 @@
-SHA256 (codelite-2.8.0.4537.tar.gz) = f8a7c25a68ccba1f2f24c9b96ee997b59ba2700a1b331323d2d92831bfc3ef72
-SIZE (codelite-2.8.0.4537.tar.gz) = 6010439
+SHA256 (codelite-2.9.0.4684.tar.gz) = 190ccad5997a9aaceeea338cf85570eccb12de0337b9889886bd14bc97a7cf7c
+SIZE (codelite-2.9.0.4684.tar.gz) = 6061313
diff --git a/editors/codelite/files/patch-Plugin_wxterminal.cpp b/editors/codelite/files/patch-Plugin_wxterminal.cpp
new file mode 100644
index 000000000000..05b4259974c0
--- /dev/null
+++ b/editors/codelite/files/patch-Plugin_wxterminal.cpp
@@ -0,0 +1,16 @@
+--- Plugin/wxterminal.cpp.orig 2011-01-03 17:42:09.000000000 +0100
++++ Plugin/wxterminal.cpp 2011-01-03 17:43:05.000000000 +0100
+@@ -21,7 +21,13 @@
+ #endif
+
+ #if defined(__WXGTK__)
++#ifdef __FreeBSD__
++# include <sys/ioctl.h>
++# include <termios.h>
++# include <libutil.h>
++#else
+ # include <pty.h>
++#endif
+ # include "unixprocess_impl.h"
+ #elif defined(__WXMAC__)
+ # include <util.h>