Index: head/math/wxMaxima/Makefile =================================================================== --- head/math/wxMaxima/Makefile (revision 378496) +++ head/math/wxMaxima/Makefile (revision 378497) @@ -1,40 +1,39 @@ # Created by: Nicola Vitale # $FreeBSD$ PORTNAME= wxMaxima PORTVERSION= 14.12.1 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= SF MASTER_SITE_SUBDIR= ${PORTNAME:tl}/${PORTNAME}/${PORTVERSION} DISTFILES= ${PORTNAME:tl}-${PORTVERSION}.tar.gz MAINTAINER= nivit@FreeBSD.org COMMENT= WxWidgets GUI for the computer algebra system maxima LICENSE= GPLv2 RUN_DEPENDS= maxima:${PORTSDIR}/math/maxima CONFIGURE_ARGS= --program-prefix= GNU_CONFIGURE= yes PLIST_SUB= DESKTOPDIR=${DESKTOPDIR:S,${PREFIX}/,,} USES= desktop-file-utils gettext -USE_GNOME= libxml2 USE_WX= 2.8 WANT_UNICODE= yes WRKSRC= ${WRKDIR}/${PORTNAME:tl}-${PORTVERSION} WX_COMPS= wx WX_CONF_ARGS= absolute post-install: @${LN} -s ../wxMaxima/wxmaxima.png ${STAGEDIR}${PREFIX}/share/pixmaps/wxmaxima.png @${LOCALBASE}/bin/desktop-file-install \ --mode=${SHAREMODE} --dir=${STAGEDIR}${DESKTOPDIR} \ ${WRKSRC}/${PORTNAME:tl}.desktop .include Index: head/math/wxMaxima/files/patch-src_MathCtrl.cpp =================================================================== --- head/math/wxMaxima/files/patch-src_MathCtrl.cpp (nonexistent) +++ head/math/wxMaxima/files/patch-src_MathCtrl.cpp (revision 378497) @@ -0,0 +1,20 @@ +--- src/MathCtrl.cpp.orig 2015-02-05 22:22:12 UTC ++++ src/MathCtrl.cpp +@@ -1563,7 +1563,7 @@ void MathCtrl::OnCharInActive(wxKeyEvent + * We have a wxKeyEvent with no active editor, shift is down and + * keycode (ccode) is WXK_UP/WXK_DOWN + */ +-void MathCtrl::SelectWithChar(wxChar ccode) { ++void MathCtrl::SelectWithChar(int ccode) { + // start making a selection + // m_hCaretPositionStart is the first group selected + // m_hCaretPositionEnd is tle last group selected +@@ -1646,7 +1646,7 @@ void MathCtrl::SelectEditable(EditorCell + } + + void MathCtrl::OnCharNoActive(wxKeyEvent& event) { +- wxChar ccode = event.GetKeyCode(); ++ int ccode = event.GetKeyCode(); + wxString txt; // Usually we open an Editor Cell with initial content txt + + // If Shift is down we are selecting with WXK_UP and WXK_DOWN Property changes on: head/math/wxMaxima/files/patch-src_MathCtrl.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/math/wxMaxima/files/patch-src_MathCtrl.h =================================================================== --- head/math/wxMaxima/files/patch-src_MathCtrl.h (nonexistent) +++ head/math/wxMaxima/files/patch-src_MathCtrl.h (revision 378497) @@ -0,0 +1,11 @@ +--- src/MathCtrl.h.orig 2015-02-05 22:22:16 UTC ++++ src/MathCtrl.h +@@ -211,7 +211,7 @@ protected: + void OnCharNoActive(wxKeyEvent& event); + void OnChar(wxKeyEvent& event); + void SelectEditable(EditorCell *editor, bool up); +- void SelectWithChar(wxChar ccode); ++ void SelectWithChar(int ccode); + void ClickNDrag(wxPoint down, wxPoint up); + void AdjustSize(); + void OnEraseBackground(wxEraseEvent& event) { } Property changes on: head/math/wxMaxima/files/patch-src_MathCtrl.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property