diff options
author | gahr <gahr@FreeBSD.org> | 2011-01-04 17:21:54 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2011-01-04 17:21:54 +0800 |
commit | 6dbf252a5f8c0f2ca4aa4f2ae3c197d9cda31c0e (patch) | |
tree | 68710850520e36375433af12c4f8351ba5a7e009 /editors | |
parent | c303b5121d8184f775f7ba65689435d2b1d45a1a (diff) | |
download | freebsd-ports-gnome-6dbf252a5f8c0f2ca4aa4f2ae3c197d9cda31c0e.tar.gz freebsd-ports-gnome-6dbf252a5f8c0f2ca4aa4f2ae3c197d9cda31c0e.tar.zst freebsd-ports-gnome-6dbf252a5f8c0f2ca4aa4f2ae3c197d9cda31c0e.zip |
- Update to 2.9.0.4684
Release notes:
https://sourceforge.net/projects/codelite/files/Releases/codelite-2.9/README/view
Diffstat (limited to 'editors')
-rw-r--r-- | editors/codelite/Makefile | 7 | ||||
-rw-r--r-- | editors/codelite/distinfo | 4 | ||||
-rw-r--r-- | editors/codelite/files/patch-Plugin_wxterminal.cpp | 16 |
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>
|