Update to 0.10.5.
This commit is contained in:
parent
5982904819
commit
56f7357059
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=132228
3 changed files with 15 additions and 16 deletions
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= gnopernicus
|
||||
PORTVERSION= 0.10.4
|
||||
PORTVERSION= 0.10.5
|
||||
CATEGORIES= accessibility x11 gnome
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME}
|
||||
MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.10
|
||||
|
@ -29,7 +29,7 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|||
MAKE_ENV= SED="${SED}"
|
||||
|
||||
GCONF_SCHEMAS= brlmonitor.schemas gnopernicus.schemas remote.schemas
|
||||
SHLIB_VERSION= 4
|
||||
SHLIB_VERSION= 5
|
||||
PLIST_SUB= SHLIB_VERSION=${SHLIB_VERSION}
|
||||
|
||||
post-patch:
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
MD5 (gnome2/gnopernicus-0.10.4.tar.bz2) = cb105fa21d63e83c352a1f606d601196
|
||||
SIZE (gnome2/gnopernicus-0.10.4.tar.bz2) = 1953427
|
||||
MD5 (gnome2/gnopernicus-0.10.5.tar.bz2) = fc55de77f009f745e0d97f3f81006b49
|
||||
SIZE (gnome2/gnopernicus-0.10.5.tar.bz2) = 1963353
|
||||
|
|
|
@ -1,39 +1,38 @@
|
|||
--- srcore/srbrl.c.orig Wed Jul 14 20:51:31 2004
|
||||
+++ srcore/srbrl.c Wed Jul 14 20:55:57 2004
|
||||
@@ -723,6 +723,12 @@
|
||||
static void
|
||||
--- srcore/srbrl.c.orig Wed Mar 23 04:02:10 2005
|
||||
+++ srcore/srbrl.c Wed Mar 23 17:32:38 2005
|
||||
@@ -763,6 +763,11 @@
|
||||
src_braille_load_values (SRCBraille *braille)
|
||||
{
|
||||
gint default_port = DEFAULT_BRAILLE_PORT_NO;
|
||||
+ gint default_pos_sensor;
|
||||
+ gint default_opt_sensor;
|
||||
+ gchar *default_braille_transaltion_table;
|
||||
+ gchar *default_braille_style;
|
||||
+ gchar *default_braille_cursor_style;
|
||||
+
|
||||
|
||||
sru_assert (braille);
|
||||
|
||||
if (!braille->device)
|
||||
@@ -749,7 +755,7 @@
|
||||
}
|
||||
@@ -786,7 +791,7 @@
|
||||
SET_BRAILLE_CONFIG_DATA (BRAILLE_PORT_NO, CFGT_INT, &braille->port);
|
||||
}
|
||||
|
||||
- gchar *default_braille_transaltion_table = DEFAULT_BRAILLE_TRANSLATION;
|
||||
+ *default_braille_transaltion_table = DEFAULT_BRAILLE_TRANSLATION;
|
||||
+ default_braille_transaltion_table = DEFAULT_BRAILLE_TRANSLATION;
|
||||
GET_BRAILLE_CONFIG_DATA_WITH_DEFAULT (BRAILLE_TRANSLATION, CFGT_STRING,
|
||||
&braille->translation_table,
|
||||
default_braille_transaltion_table);
|
||||
@@ -761,22 +767,22 @@
|
||||
@@ -798,22 +803,22 @@
|
||||
}
|
||||
|
||||
|
||||
- gchar *default_braille_style = DEFAULT_BRAILLE_STYLE;
|
||||
+ *default_braille_style = DEFAULT_BRAILLE_STYLE;
|
||||
+ default_braille_style = DEFAULT_BRAILLE_STYLE;
|
||||
GET_BRAILLE_CONFIG_DATA_WITH_DEFAULT (BRAILLE_STYLE, CFGT_STRING,
|
||||
&braille->style,
|
||||
default_braille_style);
|
||||
|
||||
- gchar *default_braille_cursor_style = DEFAULT_BRAILLE_CURSOR_STYLE;
|
||||
+ *default_braille_cursor_style = DEFAULT_BRAILLE_CURSOR_STYLE;
|
||||
+ default_braille_cursor_style = DEFAULT_BRAILLE_CURSOR_STYLE;
|
||||
GET_BRAILLE_CONFIG_DATA_WITH_DEFAULT (BRAILLE_CURSOR_STYLE, CFGT_STRING,
|
||||
&braille->cursor_style,
|
||||
default_braille_cursor_style);
|
||||
|
|
Loading…
Reference in a new issue