Index: head/math/pantheon-calculator/Makefile =================================================================== --- head/math/pantheon-calculator/Makefile (revision 465148) +++ head/math/pantheon-calculator/Makefile (revision 465149) @@ -1,25 +1,27 @@ # Created by: Olivier Duchateau # $FreeBSD$ PORTNAME= pantheon-calculator PORTVERSION= 0.1.2 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= https://launchpadlibrarian.net/303135059/ \ https://launchpad.net/${PORTNAME}/0.4-loki/${PORTVERSION}/+download/ DIST_SUBDIR= pantheon MAINTAINER= ports@FreeBSD.org COMMENT= Simple calculator written in Vala LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= valac:lang/vala LIB_DEPENDS= libgranite.so:x11-toolkits/granite \ - libgee-0.8.so:devel/libgee + libgee-0.8.so:devel/libgee USES= cmake:outsource pkgconfig gettext tar:xz USE_GNOME= glib20 gtk30 cairo gdkpixbuf2 intltool GLIB_SCHEMAS= org.pantheon.calculator.gschema.xml .include Index: head/x11/pantheon-terminal/Makefile =================================================================== --- head/x11/pantheon-terminal/Makefile (revision 465148) +++ head/x11/pantheon-terminal/Makefile (revision 465149) @@ -1,41 +1,44 @@ # Created by: Dmitry Marakasov # $FreeBSD$ PORTNAME= pantheon-terminal PORTVERSION= 0.4.3 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= amdmi3@FreeBSD.org COMMENT= Lightweight, beautiful, and simple terminal from Elementary OS LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS= libgranite.so:x11-toolkits/granite +LIB_DEPENDS= libgee-0.8.so:devel/libgee \ + libgnutls.so:security/gnutls \ + libgranite.so:x11-toolkits/granite \ + libpcre2-8.so:devel/pcre2 BUILD_DEPENDS= valac:lang/vala RUN_DEPENDS= dbus-send:devel/dbus +USES= cmake:outsource desktop-file-utils gettext pkgconfig USE_GITHUB= yes GH_ACCOUNT= elementary GH_PROJECT= terminal - -USES= cmake desktop-file-utils gettext pkgconfig CMAKE_ARGS= -DGSETTINGS_COMPILE:BOOL=NO -USE_GNOME= glib20 gtk30 intltool vte3 +USE_GNOME= cairo gdkpixbuf2 glib20 gtk30 intltool vte3 GLIB_SCHEMAS= org.pantheon.terminal.gschema.xml PORTDOCS= AUTHORS README.md OPTIONS_DEFINE= DOCS post-patch: @${REINPLACE_CMD} -e 's|/proc|/compat/linux/proc|' \ ${WRKSRC}/src/TerminalWidget.vala post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/ .endfor .include Index: head/x11-toolkits/granite/Makefile =================================================================== --- head/x11-toolkits/granite/Makefile (revision 465148) +++ head/x11-toolkits/granite/Makefile (revision 465149) @@ -1,31 +1,31 @@ # Created by: Olivier Duchateau # $FreeBSD$ # PORTNAME= granite -PORTVERSION= 0.4.0.1 +DISTVERSION= 0.5 CATEGORIES= x11-toolkits -MASTER_SITES= https://launchpadlibrarian.net/277504431/ \ - https://launchpad.net/${PORTNAME}/0.4/loki-beta2/+download/ MAINTAINER= ports@FreeBSD.org COMMENT= Extensions of GTK+3 toolkit LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= valac:lang/vala LIB_DEPENDS= libgee-0.8.so:devel/libgee RUN_DEPENDS= contractor:sysutils/contractor USES= cmake gettext pkgconfig tar:xz +USE_GITHUB= yes +GH_ACCOUNT= elementary USE_GNOME= glib20 gtk30 cairo introspection:build INSTALLS_ICONS= yes USE_LDCONFIG= yes CFLAGS+= -Wno-return-type post-patch: ${REINPLACE_CMD} -e 's|FFREE_|FREE_|' ${WRKSRC}/CMakeLists.txt .include Index: head/x11-toolkits/granite/distinfo =================================================================== --- head/x11-toolkits/granite/distinfo (revision 465148) +++ head/x11-toolkits/granite/distinfo (revision 465149) @@ -1,3 +1,3 @@ -TIMESTAMP = 1470682638 -SHA256 (granite-0.4.0.1.tar.xz) = 95a142a8befeedc35a089d638e759b657905508dc3007036d6c1fa3efe94c4dd -SIZE (granite-0.4.0.1.tar.xz) = 292688 +TIMESTAMP = 1521380734 +SHA256 (elementary-granite-0.5_GH0.tar.gz) = cc4905ae70fddeba3d2ded44bb642be77d419aa090251a7ab24c155b8616be06 +SIZE (elementary-granite-0.5_GH0.tar.gz) = 365015 Index: head/x11-toolkits/granite/files/patch-lib__Widgets__AboutDialog.vala =================================================================== --- head/x11-toolkits/granite/files/patch-lib__Widgets__AboutDialog.vala (revision 465148) +++ head/x11-toolkits/granite/files/patch-lib__Widgets__AboutDialog.vala (nonexistent) @@ -1,29 +0,0 @@ ---- ./lib/Widgets/AboutDialog.vala.orig 2014-05-25 19:42:24.000000000 +0000 -+++ ./lib/Widgets/AboutDialog.vala 2014-07-27 13:06:32.000000000 +0000 -@@ -65,7 +65,7 @@ - - private Button help_button; - private Button translate_button; -- private Button bug_button; -+ private LinkButton bug_button; - - private Granite.Drawing.BufferSurface buffer; - -@@ -128,15 +128,8 @@ - action_area.pack_start (translate_button, false, false, 0); - - /* bug button */ -- bug_button = new Button.with_label (_("Report a Problem")); -- bug_button.clicked.connect (() => { -- try { -- GLib.Process.spawn_command_line_async ("apport-bug %i".printf (Posix.getpid ())); -- } catch (Error e) { -- warning ("Could Not Launch 'apport-bug'."); -- activate_link (bug); -- } -- }); -+ string _uri = "https://bugs.freebsd.org/bugzilla/enter_bug.cgi"; -+ bug_button = new LinkButton.with_label (_uri, _("Report a Problem")); - action_area.pack_start (bug_button, false, false, 0); - - action_area.reorder_child (bug_button, 0); Property changes on: head/x11-toolkits/granite/files/patch-lib__Widgets__AboutDialog.vala ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/x11-toolkits/granite/files/patch-lib_Widgets_ContractorView.vala =================================================================== --- head/x11-toolkits/granite/files/patch-lib_Widgets_ContractorView.vala (revision 465148) +++ head/x11-toolkits/granite/files/patch-lib_Widgets_ContractorView.vala (nonexistent) @@ -1,14 +0,0 @@ ---- lib/Widgets/ContractorView.vala.orig 2016-08-06 23:51:23 UTC -+++ lib/Widgets/ContractorView.vala -@@ -181,7 +181,11 @@ public class Granite.Widgets.ContractorView : TreeView - string text = value.get_string (); - - if (text[3:text.index_of ("")] in names) { -+#if VALA_0_36 -+ list.remove (ref it); -+#else - list.remove (it); -+#endif - blacklisted_pos += cur_pos; - } - if (!check) Property changes on: head/x11-toolkits/granite/files/patch-lib_Widgets_ContractorView.vala ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/x11-toolkits/granite/pkg-plist =================================================================== --- head/x11-toolkits/granite/pkg-plist (revision 465148) +++ head/x11-toolkits/granite/pkg-plist (revision 465149) @@ -1,216 +1,216 @@ bin/granite-demo include/granite/granite.h include/granite/widgets-utils.h lib/girepository-1.0/Granite-1.0.typelib lib/libgranite.so -lib/libgranite.so.3 -lib/libgranite.so.3.0.1 +lib/libgranite.so.4 +lib/libgranite.so.4.0 libdata/pkgconfig/granite.pc share/applications/granite-demo.desktop share/gir-1.0/Granite-1.0.gir share/icons/hicolor/16x16/actions/appointment.svg share/icons/hicolor/16x16/actions/open-menu.svg share/icons/hicolor/22x22/actions/open-menu.svg share/icons/hicolor/24x24/actions/appointment.svg share/icons/hicolor/24x24/actions/open-menu.svg share/icons/hicolor/32x32/actions/open-menu.svg share/icons/hicolor/48x48/actions/open-menu.svg share/icons/hicolor/scalable/actions/open-menu-symbolic.svg share/locale/aa/LC_MESSAGES/granite.mo share/locale/ab/LC_MESSAGES/granite.mo share/locale/ae/LC_MESSAGES/granite.mo share/locale/af/LC_MESSAGES/granite.mo share/locale/ak/LC_MESSAGES/granite.mo share/locale/am/LC_MESSAGES/granite.mo share/locale/an/LC_MESSAGES/granite.mo share/locale/ar/LC_MESSAGES/granite.mo share/locale/as/LC_MESSAGES/granite.mo share/locale/ast/LC_MESSAGES/granite.mo share/locale/av/LC_MESSAGES/granite.mo share/locale/ay/LC_MESSAGES/granite.mo share/locale/az/LC_MESSAGES/granite.mo share/locale/ba/LC_MESSAGES/granite.mo share/locale/be/LC_MESSAGES/granite.mo share/locale/bg/LC_MESSAGES/granite.mo share/locale/bh/LC_MESSAGES/granite.mo share/locale/bi/LC_MESSAGES/granite.mo share/locale/bm/LC_MESSAGES/granite.mo share/locale/bn/LC_MESSAGES/granite.mo share/locale/bo/LC_MESSAGES/granite.mo share/locale/br/LC_MESSAGES/granite.mo share/locale/bs/LC_MESSAGES/granite.mo share/locale/ca/LC_MESSAGES/granite.mo share/locale/ce/LC_MESSAGES/granite.mo share/locale/ch/LC_MESSAGES/granite.mo share/locale/ckb/LC_MESSAGES/granite.mo share/locale/co/LC_MESSAGES/granite.mo share/locale/cr/LC_MESSAGES/granite.mo share/locale/cs/LC_MESSAGES/granite.mo share/locale/cu/LC_MESSAGES/granite.mo share/locale/cv/LC_MESSAGES/granite.mo share/locale/cy/LC_MESSAGES/granite.mo share/locale/da/LC_MESSAGES/granite.mo share/locale/de/LC_MESSAGES/granite.mo share/locale/dv/LC_MESSAGES/granite.mo share/locale/dz/LC_MESSAGES/granite.mo share/locale/ee/LC_MESSAGES/granite.mo share/locale/el/LC_MESSAGES/granite.mo share/locale/en_AU/LC_MESSAGES/granite.mo share/locale/en_CA/LC_MESSAGES/granite.mo share/locale/en_GB/LC_MESSAGES/granite.mo share/locale/eo/LC_MESSAGES/granite.mo share/locale/es/LC_MESSAGES/granite.mo share/locale/et/LC_MESSAGES/granite.mo share/locale/eu/LC_MESSAGES/granite.mo share/locale/fa/LC_MESSAGES/granite.mo share/locale/ff/LC_MESSAGES/granite.mo share/locale/fi/LC_MESSAGES/granite.mo share/locale/fj/LC_MESSAGES/granite.mo share/locale/fo/LC_MESSAGES/granite.mo share/locale/fr/LC_MESSAGES/granite.mo share/locale/fr_CA/LC_MESSAGES/granite.mo share/locale/fy/LC_MESSAGES/granite.mo share/locale/ga/LC_MESSAGES/granite.mo share/locale/gd/LC_MESSAGES/granite.mo share/locale/gl/LC_MESSAGES/granite.mo share/locale/gn/LC_MESSAGES/granite.mo share/locale/gu/LC_MESSAGES/granite.mo share/locale/gv/LC_MESSAGES/granite.mo share/locale/ha/LC_MESSAGES/granite.mo share/locale/he/LC_MESSAGES/granite.mo share/locale/hi/LC_MESSAGES/granite.mo share/locale/ho/LC_MESSAGES/granite.mo share/locale/hr/LC_MESSAGES/granite.mo share/locale/ht/LC_MESSAGES/granite.mo share/locale/hu/LC_MESSAGES/granite.mo share/locale/hy/LC_MESSAGES/granite.mo share/locale/hz/LC_MESSAGES/granite.mo share/locale/ia/LC_MESSAGES/granite.mo share/locale/id/LC_MESSAGES/granite.mo share/locale/ie/LC_MESSAGES/granite.mo share/locale/ig/LC_MESSAGES/granite.mo share/locale/ii/LC_MESSAGES/granite.mo share/locale/ik/LC_MESSAGES/granite.mo share/locale/io/LC_MESSAGES/granite.mo share/locale/is/LC_MESSAGES/granite.mo share/locale/it/LC_MESSAGES/granite.mo share/locale/iu/LC_MESSAGES/granite.mo share/locale/ja/LC_MESSAGES/granite.mo share/locale/jv/LC_MESSAGES/granite.mo share/locale/ka/LC_MESSAGES/granite.mo share/locale/kg/LC_MESSAGES/granite.mo share/locale/ki/LC_MESSAGES/granite.mo share/locale/kj/LC_MESSAGES/granite.mo share/locale/kk/LC_MESSAGES/granite.mo share/locale/kl/LC_MESSAGES/granite.mo share/locale/km/LC_MESSAGES/granite.mo share/locale/kn/LC_MESSAGES/granite.mo share/locale/ko/LC_MESSAGES/granite.mo share/locale/kr/LC_MESSAGES/granite.mo share/locale/ks/LC_MESSAGES/granite.mo share/locale/ku/LC_MESSAGES/granite.mo share/locale/kv/LC_MESSAGES/granite.mo share/locale/kw/LC_MESSAGES/granite.mo share/locale/ky/LC_MESSAGES/granite.mo share/locale/la/LC_MESSAGES/granite.mo share/locale/lb/LC_MESSAGES/granite.mo share/locale/lg/LC_MESSAGES/granite.mo share/locale/li/LC_MESSAGES/granite.mo share/locale/ln/LC_MESSAGES/granite.mo share/locale/lo/LC_MESSAGES/granite.mo share/locale/lt/LC_MESSAGES/granite.mo share/locale/lu/LC_MESSAGES/granite.mo share/locale/lv/LC_MESSAGES/granite.mo share/locale/mg/LC_MESSAGES/granite.mo share/locale/mh/LC_MESSAGES/granite.mo share/locale/mi/LC_MESSAGES/granite.mo share/locale/mk/LC_MESSAGES/granite.mo share/locale/ml/LC_MESSAGES/granite.mo share/locale/mn/LC_MESSAGES/granite.mo share/locale/mo/LC_MESSAGES/granite.mo share/locale/mr/LC_MESSAGES/granite.mo share/locale/ms/LC_MESSAGES/granite.mo share/locale/mt/LC_MESSAGES/granite.mo share/locale/my/LC_MESSAGES/granite.mo share/locale/na/LC_MESSAGES/granite.mo share/locale/nb/LC_MESSAGES/granite.mo share/locale/nd/LC_MESSAGES/granite.mo share/locale/ne/LC_MESSAGES/granite.mo share/locale/ng/LC_MESSAGES/granite.mo share/locale/nl/LC_MESSAGES/granite.mo share/locale/nn/LC_MESSAGES/granite.mo share/locale/no/LC_MESSAGES/granite.mo share/locale/nr/LC_MESSAGES/granite.mo share/locale/nv/LC_MESSAGES/granite.mo share/locale/ny/LC_MESSAGES/granite.mo share/locale/oc/LC_MESSAGES/granite.mo share/locale/oj/LC_MESSAGES/granite.mo share/locale/om/LC_MESSAGES/granite.mo share/locale/or/LC_MESSAGES/granite.mo share/locale/os/LC_MESSAGES/granite.mo share/locale/pa/LC_MESSAGES/granite.mo share/locale/pi/LC_MESSAGES/granite.mo share/locale/pl/LC_MESSAGES/granite.mo share/locale/ps/LC_MESSAGES/granite.mo share/locale/pt/LC_MESSAGES/granite.mo share/locale/pt_BR/LC_MESSAGES/granite.mo share/locale/qu/LC_MESSAGES/granite.mo share/locale/rm/LC_MESSAGES/granite.mo share/locale/rn/LC_MESSAGES/granite.mo share/locale/ro/LC_MESSAGES/granite.mo share/locale/ru/LC_MESSAGES/granite.mo share/locale/rue/LC_MESSAGES/granite.mo share/locale/rw/LC_MESSAGES/granite.mo share/locale/sa/LC_MESSAGES/granite.mo share/locale/sc/LC_MESSAGES/granite.mo share/locale/sd/LC_MESSAGES/granite.mo share/locale/se/LC_MESSAGES/granite.mo share/locale/sg/LC_MESSAGES/granite.mo share/locale/si/LC_MESSAGES/granite.mo share/locale/sk/LC_MESSAGES/granite.mo share/locale/sl/LC_MESSAGES/granite.mo share/locale/sm/LC_MESSAGES/granite.mo share/locale/sma/LC_MESSAGES/granite.mo share/locale/sn/LC_MESSAGES/granite.mo share/locale/so/LC_MESSAGES/granite.mo share/locale/sq/LC_MESSAGES/granite.mo share/locale/sr/LC_MESSAGES/granite.mo share/locale/ss/LC_MESSAGES/granite.mo share/locale/st/LC_MESSAGES/granite.mo share/locale/su/LC_MESSAGES/granite.mo share/locale/sv/LC_MESSAGES/granite.mo share/locale/sw/LC_MESSAGES/granite.mo share/locale/ta/LC_MESSAGES/granite.mo share/locale/te/LC_MESSAGES/granite.mo share/locale/tg/LC_MESSAGES/granite.mo share/locale/th/LC_MESSAGES/granite.mo share/locale/ti/LC_MESSAGES/granite.mo share/locale/tk/LC_MESSAGES/granite.mo share/locale/tl/LC_MESSAGES/granite.mo share/locale/tn/LC_MESSAGES/granite.mo share/locale/to/LC_MESSAGES/granite.mo share/locale/tr/LC_MESSAGES/granite.mo share/locale/ts/LC_MESSAGES/granite.mo share/locale/tt/LC_MESSAGES/granite.mo share/locale/tw/LC_MESSAGES/granite.mo share/locale/ty/LC_MESSAGES/granite.mo share/locale/ug/LC_MESSAGES/granite.mo share/locale/uk/LC_MESSAGES/granite.mo share/locale/ur/LC_MESSAGES/granite.mo share/locale/uz/LC_MESSAGES/granite.mo share/locale/ve/LC_MESSAGES/granite.mo share/locale/vi/LC_MESSAGES/granite.mo share/locale/vo/LC_MESSAGES/granite.mo share/locale/wa/LC_MESSAGES/granite.mo share/locale/wo/LC_MESSAGES/granite.mo share/locale/xh/LC_MESSAGES/granite.mo share/locale/yi/LC_MESSAGES/granite.mo share/locale/yo/LC_MESSAGES/granite.mo share/locale/za/LC_MESSAGES/granite.mo share/locale/zh/LC_MESSAGES/granite.mo share/locale/zh_CN/LC_MESSAGES/granite.mo share/locale/zh_HK/LC_MESSAGES/granite.mo share/locale/zh_TW/LC_MESSAGES/granite.mo share/locale/zu/LC_MESSAGES/granite.mo share/vala/vapi/granite.deps share/vala/vapi/granite.vapi