diff options
author | yuri <yuri@FreeBSD.org> | 2018-03-21 13:52:33 +0800 |
---|---|---|
committer | yuri <yuri@FreeBSD.org> | 2018-03-21 13:52:33 +0800 |
commit | 1adee27f4d1f40c8c440a27fa778bf67377bfa78 (patch) | |
tree | 43c8d7a55cc2cedb4e94073627597333a117ae49 /x11-toolkits/granite | |
parent | 23a2c951745281a86b080b0fad746131b01dcc08 (diff) | |
download | freebsd-ports-gnome-1adee27f4d1f40c8c440a27fa778bf67377bfa78.tar.gz freebsd-ports-gnome-1adee27f4d1f40c8c440a27fa778bf67377bfa78.tar.zst freebsd-ports-gnome-1adee27f4d1f40c8c440a27fa778bf67377bfa78.zip |
x11-toolkits/granite: Update to 0.5
Port changes:
* Change to DISTVERSION
* Change to github
Bump x11/pantheon-terminal and math/pantheon-calculator
While in math/pantheon-calculator:
* Add LICENSE_FILE
While in x11/pantheon-terminal:
* Add missing dependencies in LIB_DEPENDS
* Add missing dependencies in USE_GNOME
* Group USExx accorfing to the portlint warning
* Change USES=cmake to USES=cmake:outsource
PR: 226696
Submitted by: Greg V <greg@unrelenting.technology>
Diffstat (limited to 'x11-toolkits/granite')
-rw-r--r-- | x11-toolkits/granite/Makefile | 6 | ||||
-rw-r--r-- | x11-toolkits/granite/distinfo | 6 | ||||
-rw-r--r-- | x11-toolkits/granite/files/patch-lib_Widgets_ContractorView.vala | 14 | ||||
-rw-r--r-- | x11-toolkits/granite/files/patch-lib__Widgets__AboutDialog.vala | 29 | ||||
-rw-r--r-- | x11-toolkits/granite/pkg-plist | 4 |
5 files changed, 8 insertions, 51 deletions
diff --git a/x11-toolkits/granite/Makefile b/x11-toolkits/granite/Makefile index 2a292b6c6c70..3ea400508c6a 100644 --- a/x11-toolkits/granite/Makefile +++ b/x11-toolkits/granite/Makefile @@ -3,10 +3,8 @@ # 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 @@ -19,6 +17,8 @@ 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 diff --git a/x11-toolkits/granite/distinfo b/x11-toolkits/granite/distinfo index 5017583e30e3..45d47d6fa583 100644 --- a/x11-toolkits/granite/distinfo +++ b/x11-toolkits/granite/distinfo @@ -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 diff --git a/x11-toolkits/granite/files/patch-lib_Widgets_ContractorView.vala b/x11-toolkits/granite/files/patch-lib_Widgets_ContractorView.vala deleted file mode 100644 index fe20ed144c0f..000000000000 --- a/x11-toolkits/granite/files/patch-lib_Widgets_ContractorView.vala +++ /dev/null @@ -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 ("</b>")] in names) { -+#if VALA_0_36 -+ list.remove (ref it); -+#else - list.remove (it); -+#endif - blacklisted_pos += cur_pos; - } - if (!check) diff --git a/x11-toolkits/granite/files/patch-lib__Widgets__AboutDialog.vala b/x11-toolkits/granite/files/patch-lib__Widgets__AboutDialog.vala deleted file mode 100644 index 1966dfcc0da7..000000000000 --- a/x11-toolkits/granite/files/patch-lib__Widgets__AboutDialog.vala +++ /dev/null @@ -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); diff --git a/x11-toolkits/granite/pkg-plist b/x11-toolkits/granite/pkg-plist index 2a0c7b2211c4..6681e76fe427 100644 --- a/x11-toolkits/granite/pkg-plist +++ b/x11-toolkits/granite/pkg-plist @@ -3,8 +3,8 @@ 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 |