Index: head/audio/abraca/Makefile =================================================================== --- head/audio/abraca/Makefile (revision 449396) +++ head/audio/abraca/Makefile (revision 449397) @@ -1,38 +1,41 @@ # Created by: Olivier Smedts # $FreeBSD$ PORTNAME= abraca PORTVERSION= 0.8.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= SF/${PORTNAME} MAINTAINER= madpilot@FreeBSD.org COMMENT= GTK2 client for the XMMS2 music player + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING.GPL BUILD_DEPENDS= ${LOCALBASE}/bin/valac:lang/vala LIB_DEPENDS= libxmmsclient.so:audio/xmms2 \ libgee-0.8.so:devel/libgee RUN_DEPENDS= gnome-themes-standard>=3.0.0:x11-themes/gnome-themes-standard \ gnome-icon-theme>=0:misc/gnome-icon-theme USES= pkgconfig waf tar:bzip2 USE_GNOME= gtk30 intltool MAKE_ARGS= MANDIR=${MANPREFIX}/man CONFIGURE_ARGS+= --prefix=${PREFIX} \ --mandir=${PREFIX}/man OPTIONS_DEFINE= NLS OPTIONS_SUB= yes NLS_USES= gettext post-patch-NLS-off: @${REINPLACE_CMD} -e '/\.load(/s/ intltool//' \ -e '/recurse/s/ po//' ${WRKSRC}/wscript post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include Index: head/audio/abraca/files/patch-src_abraca-filter-searchbox.vala =================================================================== --- head/audio/abraca/files/patch-src_abraca-filter-searchbox.vala (nonexistent) +++ head/audio/abraca/files/patch-src_abraca-filter-searchbox.vala (revision 449397) @@ -0,0 +1,14 @@ +--- src/abraca-filter-searchbox.vala.orig 2014-10-26 18:55:55 UTC ++++ src/abraca-filter-searchbox.vala +@@ -78,7 +78,11 @@ public class Abraca.FilterSearchBox : Gtk.ComboBox, Se + do { + store.get(iter, 0, out current); + if (current == pattern) { ++#if VALA_0_36 ++ store.remove(ref iter); ++#else + store.remove(iter); ++#endif + break; + } + } while (store.iter_next(ref iter)); Property changes on: head/audio/abraca/files/patch-src_abraca-filter-searchbox.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/audio/abraca/files/patch-src_abraca-medialib.vala =================================================================== --- head/audio/abraca/files/patch-src_abraca-medialib.vala (nonexistent) +++ head/audio/abraca/files/patch-src_abraca-medialib.vala (revision 449397) @@ -0,0 +1,14 @@ +--- src/abraca-medialib.vala.orig 2014-10-26 18:55:55 UTC ++++ src/abraca-medialib.vala +@@ -505,7 +505,11 @@ namespace Abraca { + do { + urls.get(iter, 0, out current); + if (current == url) { ++#if VALA_0_36 ++ urls.remove(ref iter); ++#else + urls.remove(iter); ++#endif + break; + } + } while (urls.iter_next(ref iter)); Property changes on: head/audio/abraca/files/patch-src_abraca-medialib.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/audio/abraca/files/patch-src_abraca-playlist-model.vala =================================================================== --- head/audio/abraca/files/patch-src_abraca-playlist-model.vala (nonexistent) +++ head/audio/abraca/files/patch-src_abraca-playlist-model.vala (revision 449397) @@ -0,0 +1,14 @@ +--- src/abraca-playlist-model.vala.orig 2014-10-26 18:55:55 UTC ++++ src/abraca-playlist-model.vala +@@ -136,7 +136,11 @@ namespace Abraca { + get(iter, Column.ID, out mid); + + playlist_map.remove_path((int) mid, path); ++#if VALA_0_36 ++ remove(ref iter); ++#else + remove(iter); ++#endif + } + } + Property changes on: head/audio/abraca/files/patch-src_abraca-playlist-model.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/audio/abraca/files/patch-src_abraca-resolver.vala =================================================================== --- head/audio/abraca/files/patch-src_abraca-resolver.vala (nonexistent) +++ head/audio/abraca/files/patch-src_abraca-resolver.vala (revision 449397) @@ -0,0 +1,13 @@ +--- src/abraca-resolver.vala.orig 2014-10-26 18:55:55 UTC ++++ src/abraca-resolver.vala +@@ -63,8 +63,8 @@ public class Abraca.MetadataResolver : GLib.Object { + + private Gee.List listeners = new Gee.ArrayList(); + +- private Gee.List pending = new Gee.ArrayList(); +- private Gee.Map pending_mids = new Gee.HashMap(); ++ private Gee.List pending = new Gee.ArrayList(); ++ private Gee.Map pending_mids = new Gee.HashMap(); + + private uint timeout_handle = 0; + private bool in_flight = false; Property changes on: head/audio/abraca/files/patch-src_abraca-resolver.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/audio/abraca/files/patch-src_abraca-server-browser-dialog.vala =================================================================== --- head/audio/abraca/files/patch-src_abraca-server-browser-dialog.vala (nonexistent) +++ head/audio/abraca/files/patch-src_abraca-server-browser-dialog.vala (revision 449397) @@ -0,0 +1,14 @@ +--- src/abraca-server-browser-dialog.vala.orig 2014-10-26 18:55:55 UTC ++++ src/abraca-server-browser-dialog.vala +@@ -145,7 +145,11 @@ public class Abraca.ServerBrowserDialog : Gtk.Dialog + unowned string entry_name, entry_path; + location_store.get(iter, Column.NAME, out entry_name, Column.PATH, out entry_path); + if (path == entry_path) { ++#if VALA_0_36 ++ location_store.remove(ref iter); ++#else + location_store.remove(iter); ++#endif + break; + } + } while (location_store.iter_next(ref iter)); Property changes on: head/audio/abraca/files/patch-src_abraca-server-browser-dialog.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/audio/abraca/pkg-descr =================================================================== --- head/audio/abraca/pkg-descr (revision 449396) +++ head/audio/abraca/pkg-descr (revision 449397) @@ -1,4 +1,4 @@ Abraca is a GTK2 client for the XMMS2 music player. It is designed with collections in mind, which makes managing your music a breeze. -WWW: http://abraca.github.com/Abraca +WWW: http://abraca.github.io/Abraca/