Update gchemutils to 0.14.16.
Record indirect dependancies.
This commit is contained in:
parent
78a5f56be2
commit
e834468ee6
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=430154
@ -2,7 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= gchemutils
|
||||
PORTVERSION= 0.14.10
|
||||
PORTVERSION= 0.14.16
|
||||
CATEGORIES= science
|
||||
MASTER_SITES= SAVANNAH/${PORTNAME}/${PORTVERSION:R}
|
||||
DISTNAME= gnome-chemistry-utils-${PORTVERSION}
|
||||
@ -24,7 +24,8 @@ RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/bodr.pc:science/bodr \
|
||||
PORTSCOUT= limitw:1,even
|
||||
|
||||
USE_XORG= x11
|
||||
USE_GNOME= gnomedocutils gtk30 intlhack libgsf libxml2
|
||||
USE_GNOME= cairo gnomedocutils gtk30 intlhack libgsf libxml2
|
||||
USE_GL= gl
|
||||
USES= desktop-file-utils gettext gmake libtool:keepla localbase:ldflags \
|
||||
pathfix pkgconfig shared-mime-info tar:xz
|
||||
USE_LDCONFIG= yes
|
||||
|
@ -1,2 +1,3 @@
|
||||
SHA256 (gnome-chemistry-utils-0.14.10.tar.xz) = 425d2f89eeb4b1aa41e74e29e7dd958d515805a7235d65d269145d95d988e7ac
|
||||
SIZE (gnome-chemistry-utils-0.14.10.tar.xz) = 5783360
|
||||
TIMESTAMP = 1483200443
|
||||
SHA256 (gnome-chemistry-utils-0.14.16.tar.xz) = 762effe8af6df568b824dbc9daef187fdf98c4a19edd31b4dd441ff4b7641741
|
||||
SIZE (gnome-chemistry-utils-0.14.16.tar.xz) = 5901656
|
||||
|
@ -1,26 +0,0 @@
|
||||
--- libs/gccv/text.cc 2016/03/26 17:11:08 2017
|
||||
+++ libs/gccv/text.cc 2016/10/31 07:44:34 2055
|
||||
@@ -1213,7 +1213,10 @@
|
||||
case GDK_KEY_Delete:
|
||||
case GDK_KEY_KP_Delete: {
|
||||
if (m_CurPos != m_StartSel) {
|
||||
- ReplaceText (empty_st, MIN (m_CurPos, m_StartSel), abs (m_CurPos - m_StartSel));
|
||||
+ if (m_CurPos > m_StartSel)
|
||||
+ ReplaceText (empty_st, m_StartSel, m_CurPos - m_StartSel);
|
||||
+ else
|
||||
+ ReplaceText (empty_st, m_CurPos, m_StartSel - m_CurPos);
|
||||
if (client)
|
||||
client->TextChanged (m_CurPos);
|
||||
break;
|
||||
@@ -1233,7 +1236,10 @@
|
||||
break;
|
||||
case GDK_KEY_BackSpace: {
|
||||
if (m_CurPos != m_StartSel) {
|
||||
- ReplaceText (empty_st, MIN (m_CurPos, m_StartSel), abs (m_CurPos - m_StartSel));
|
||||
+ if (m_CurPos > m_StartSel)
|
||||
+ ReplaceText (empty_st, m_StartSel, m_CurPos - m_StartSel);
|
||||
+ else
|
||||
+ ReplaceText (empty_st, m_CurPos, m_StartSel - m_CurPos);
|
||||
if (client)
|
||||
client->TextChanged (m_CurPos);
|
||||
break;
|
@ -128,6 +128,7 @@ share/gchemutils/%%VER%%/ui/paint/plugins/selection/brackets.ui
|
||||
share/gchemutils/%%VER%%/ui/paint/plugins/selection/group.ui
|
||||
share/gchemutils/%%VER%%/ui/paint/plugins/templates/new-template.ui
|
||||
share/gchemutils/%%VER%%/ui/paint/plugins/templates/templates.ui
|
||||
share/gchemutils/%%VER%%/ui/paint/plugins/text/eq-props.ui
|
||||
share/gchemutils/%%VER%%/ui/paint/plugins/text/fontsel.ui
|
||||
share/gchemutils/%%VER%%/ui/paint/preferences.ui
|
||||
share/gchemutils/%%VER%%/ui/paint/tools.ui
|
||||
@ -196,9 +197,12 @@ share/gnome/help/gchempaint-%%VER%%/C/figures/cyclentool-opt.png
|
||||
share/gnome/help/gchempaint-%%VER%%/C/figures/cyclentool.png
|
||||
share/gnome/help/gchempaint-%%VER%%/C/figures/cycletools.png
|
||||
share/gnome/help/gchempaint-%%VER%%/C/figures/downbond.png
|
||||
share/gnome/help/gchempaint-%%VER%%/C/figures/einstein.png
|
||||
share/gnome/help/gchempaint-%%VER%%/C/figures/electrons.png
|
||||
share/gnome/help/gchempaint-%%VER%%/C/figures/element.png
|
||||
share/gnome/help/gchempaint-%%VER%%/C/figures/elt-menu.png
|
||||
share/gnome/help/gchempaint-%%VER%%/C/figures/equation-props.png
|
||||
share/gnome/help/gchempaint-%%VER%%/C/figures/equation.png
|
||||
share/gnome/help/gchempaint-%%VER%%/C/figures/eraser.png
|
||||
share/gnome/help/gchempaint-%%VER%%/C/figures/fragment.png
|
||||
share/gnome/help/gchempaint-%%VER%%/C/figures/ghemical.png
|
||||
|
Loading…
Reference in New Issue
Block a user