Index: head/x11/altyo/Makefile =================================================================== --- head/x11/altyo/Makefile (revision 449895) +++ head/x11/altyo/Makefile (revision 449896) @@ -1,39 +1,39 @@ # Created by: Nicola Vitale # $FreeBSD$ PORTNAME= altyo DISTVERSIONPREFIX= debian/ DISTVERSION= 0.4_rc19 -PORTREVISION= 1 DISTVERSIONSUFFIX= -${GH_ACCOUNT}1 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= nivit@FreeBSD.org COMMENT= Drop-down terminal emulator, written in Vala LICENSE= GPLv3 BUILD_DEPENDS= git:devel/git \ valac:lang/vala ALL_TARGET= default GH_ACCOUNT= linvinus GH_PROJECT= AltYo INSTALLS_ICONS= yes OPTIONS_DEFINE= NLS OPTIONS_SUB= yes NLS_MAKE_ENV= NLSUPPORT=yes NLS_USES= gettext-runtime:run gettext-tools:build USES= gmake pkgconfig USE_GITHUB= yes USE_GNOME= gtk30 vte3 post-install: -@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include Index: head/x11/altyo/files/patch-altyo__settings.vala =================================================================== --- head/x11/altyo/files/patch-altyo__settings.vala (nonexistent) +++ head/x11/altyo/files/patch-altyo__settings.vala (revision 449896) @@ -0,0 +1,56 @@ +--- altyo_settings.vala.orig 2016-04-19 20:55:59 UTC ++++ altyo_settings.vala +@@ -701,7 +701,11 @@ public class AYSettings : AYTab{ + view.get_cursor(out path,out s_column); + if(store.get_iter(out iter,path)) + if(!store.iter_has_child(iter)){ ++#if VALA_0_36 ++ store.remove(ref iter); ++#else + store.remove(iter); ++#endif + if(store.get_iter(out iter,path)) + view.set_cursor(path,null,false); + else if(path.prev()) +@@ -735,7 +739,11 @@ public class AYSettings : AYTab{ + view.get_cursor(out path,out s_column); + if(store.get_iter(out iter,path)) + if(!store.iter_has_child(iter)){ ++#if VALA_0_36 ++ store.remove(ref iter); ++#else + store.remove(iter); ++#endif + if(store.get_iter(out iter,path)) + view.set_cursor(path,null,false); + else if(path.prev()) +@@ -769,7 +777,11 @@ public class AYSettings : AYTab{ + view.get_cursor(out path,out s_column); + if(store.get_iter(out iter,path)) + if(!store.iter_has_child(iter)){ ++#if VALA_0_36 ++ store.remove(ref iter); ++#else + store.remove(iter); ++#endif + if(store.get_iter(out iter,path)) + view.set_cursor(path,null,false); + else if(path.prev()) +@@ -956,7 +968,7 @@ public class AYSettings : AYTab{ + string msg=""; + uint line,pos; + if(!this.check_css(B.buffer.text,ref S,out line,out pos)){ +- msg=_("in line %d at position %d error:%s").printf(line,pos,S); ++ msg=_("in line %d at position %d error:%s").printf((int)line,(int)pos,S); + debug("on_check_css_button_activate %s",msg); + TextIter where; + B.buffer.get_iter_at_line_offset(out where,(int)line,(int)pos); +@@ -1606,7 +1618,7 @@ public class AYSettings : AYTab{ + string S=""; + uint line,pos; + if(!this.check_css(s,ref S,out line,out pos)){ +- string msg=_("New style will not be saved!\nin line %d at position %d\nerror:%s").printf(line,pos,S); ++ string msg=_("New style will not be saved!\nin line %d at position %d\nerror:%s").printf((int)line,(int)pos,S); + debug("on config apply css error %s",msg); + this.ayobject.main_window.show_message_box(_("AltYo CSS style error"),msg); + }else{//looks good Property changes on: head/x11/altyo/files/patch-altyo__settings.vala ___________________________________________________________________ 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/x11/altyo/files/patch-altyo__window.vala =================================================================== --- head/x11/altyo/files/patch-altyo__window.vala (nonexistent) +++ head/x11/altyo/files/patch-altyo__window.vala (revision 449896) @@ -0,0 +1,11 @@ +--- altyo_window.vala.orig 2016-04-19 20:55:59 UTC ++++ altyo_window.vala +@@ -2889,7 +2889,7 @@ public class AYObject :Object{ + for (item_it = this.children_removed.last(); item_it != null; item_it = item_it.prev) { + AYTab tab = item_it.data; + tab.stop_remove_timer();//disable timer while popup shown +- string s = ( tab.tbutton.tab_title != null ? tab.tbutton.tab_title : _("index %d").printf(tab.tbutton.tab_index) ); ++ string s = ( tab.tbutton.tab_title != null ? tab.tbutton.tab_title : _("index %d").printf((int)tab.tbutton.tab_index) ); + menuitem = new Gtk.MenuItem.with_label ("%d: %s".printf(index,s)); + menuitem.activate.connect(()=>{ + debug("trying to restore tab %s",menuitem.label); Property changes on: head/x11/altyo/files/patch-altyo__window.vala ___________________________________________________________________ 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