svn commit: r373776 - in head/x11-toolkits/granite: . files

Olivier Duchateau olivierd at FreeBSD.org
Tue Dec 2 18:27:49 UTC 2014


Author: olivierd
Date: Tue Dec  2 18:27:47 2014
New Revision: 373776
URL: https://svnweb.freebsd.org/changeset/ports/373776
QAT: https://qat.redports.org/buildarchive/r373776/

Log:
  Update to 0.3.0

Added:
  head/x11-toolkits/granite/files/patch-lib__Widgets__AboutDialog.vala   (contents, props changed)
Deleted:
  head/x11-toolkits/granite/files/patch-cmake__FindGObjectIntrospection.cmake
  head/x11-toolkits/granite/files/patch-lib__granite.pc.cmake
Modified:
  head/x11-toolkits/granite/Makefile
  head/x11-toolkits/granite/distinfo
  head/x11-toolkits/granite/files/patch-CMakeLists.txt
  head/x11-toolkits/granite/files/patch-lib__CMakeLists.txt
  head/x11-toolkits/granite/pkg-plist

Modified: head/x11-toolkits/granite/Makefile
==============================================================================
--- head/x11-toolkits/granite/Makefile	Tue Dec  2 17:56:09 2014	(r373775)
+++ head/x11-toolkits/granite/Makefile	Tue Dec  2 18:27:47 2014	(r373776)
@@ -3,32 +3,25 @@
 #
 
 PORTNAME=	granite
-PORTVERSION=	0.2.3.1
-PORTREVISION=	2
+PORTVERSION=	0.3.0
 CATEGORIES=	x11-toolkits
-MASTER_SITES=	https://launchpadlibrarian.net/169958088/ \
-	https://launchpad.net/${PORTNAME}/0.2/${PORTVERSION}/+download/
-DIST_SUBDIR=	eos
+MASTER_SITES=	https://launchpadlibrarian.net/176306383/ \
+	https://launchpad.net/${PORTNAME}/${PORTVERSION:R}/${PORTVERSION:R}/+download/
 
 MAINTAINER=	olivierd at FreeBSD.org
 COMMENT=	Extensions of Gtk+ toolkit
 
-LICENSE=	GPLv3
+LICENSE=	LGPL3
+LICENSE_FILE=	${WRKSRC}/COPYING
 
 BUILD_DEPENDS=	valac:${PORTSDIR}/lang/vala
 LIB_DEPENDS=	libgee-0.8.so:${PORTSDIR}/devel/libgee
 RUN_DEPENDS=	contractor:${PORTSDIR}/sysutils/contractor
 
 USE_GCC=	yes
-USES=	cmake pkgconfig gettext tar:tgz
+USES=	cmake pkgconfig gettext
 USE_GNOME=	glib20 gtk30 introspection:build
 INSTALLS_ICONS=	yes
 USE_LDCONFIG=	yes
 
-post-patch:
-	@${REINPLACE_CMD} -e 's|gee-1.0|gee-0.8|' ${WRKSRC}/lib/granite.deps
-
-post-install:
-	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgranite.so
-
 .include <bsd.port.mk>

Modified: head/x11-toolkits/granite/distinfo
==============================================================================
--- head/x11-toolkits/granite/distinfo	Tue Dec  2 17:56:09 2014	(r373775)
+++ head/x11-toolkits/granite/distinfo	Tue Dec  2 18:27:47 2014	(r373776)
@@ -1,2 +1,2 @@
-SHA256 (eos/granite-0.2.3.1.tgz) = 56f05338bb7967f0b912d35bf780a3ddd68b517e1939371a14a5f79581a8f80d
-SIZE (eos/granite-0.2.3.1.tgz) = 152607
+SHA256 (granite-0.3.0.tar.gz) = df950dd79749213971d50316c68edadf1fb3c2151cb7d63f6a6b9edf12084ad1
+SIZE (granite-0.3.0.tar.gz) = 285072

Modified: head/x11-toolkits/granite/files/patch-CMakeLists.txt
==============================================================================
--- head/x11-toolkits/granite/files/patch-CMakeLists.txt	Tue Dec  2 17:56:09 2014	(r373775)
+++ head/x11-toolkits/granite/files/patch-CMakeLists.txt	Tue Dec  2 18:27:47 2014	(r373776)
@@ -1,57 +1,6 @@
---- ./CMakeLists.txt.orig	2014-03-18 20:51:49.000000000 +0000
-+++ ./CMakeLists.txt	2014-05-29 09:36:44.000000000 +0000
-@@ -24,12 +24,28 @@
- include (CPack)
- add_custom_target (dist COMMAND ${CMAKE_MAKE_PROGRAM} package_source)
- 
-+find_package (PkgConfig)
- find_package (Vala REQUIRED)
- include (ValaVersion)
- include (ValaPrecompile)
- 
- ensure_vala_version ("0.20.1" MINIMUM)
- 
-+message ("-- Checking for libgee...")
-+# libgee <= 0.6
-+pkg_check_modules (GEE_10 gee-1.0)
-+if (GEE_10_FOUND)
-+    set (GEE_PACKAGE gee-1.0)
-+    set (GEE_GIR Gee-1.0)
-+else ()
-+    # libgee >= 0.8
-+    pkg_check_modules (GEE_08 gee-0.8)
-+    if (GEE_08_FOUND)
-+        set (GEE_PACKAGE gee-0.8)
-+        set (GEE_GIR Gee-0.8)
-+    endif ()
-+endif ()
-+
- #
- # Packages in PKG_DEPS are used with the vala compiler and other related tools (not versioned.)
- # Packages in PKG_DEPS_CHECK are used with PKG-Config and for linking, etc. They can contain versions.
-@@ -42,31 +58,37 @@
-     gtk+-3.0
-     gio-unix-2.0
-     posix
--    gee-1.0)
-+    ${GEE_PACKAGE})
- 
- set (PKG_DEPS_CHECK
-     gtk+-3.0>=3.3.14
-     gio-unix-2.0
-     gthread-2.0
--    gee-1.0)
-+    ${GEE_PACKAGE})
- 
- # GI dependencies
--set (GI_PKG_DEPS Gtk-3.0 Gee-1.0)
-+set (GI_PKG_DEPS Gtk-3.0 ${GEE_GIR})
- 
- # Check for the deps
--find_package (PkgConfig)
- pkg_check_modules (DEPS REQUIRED ${PKG_DEPS_CHECK})
- 
- set (VALAC_OPTIONS
+--- ./CMakeLists.txt.orig	2014-05-25 19:42:24.000000000 +0000
++++ ./CMakeLists.txt	2014-07-27 10:49:39.000000000 +0000
+@@ -61,12 +61,18 @@
       --thread
       --target-glib=2.32)
  
@@ -71,6 +20,7 @@
  add_subdirectory (lib)
 -add_subdirectory (demo)
 -add_subdirectory (doc)
-+#add_subdirectory (doc)
  add_subdirectory (po)
- add_subdirectory (icons)
+-add_subdirectory (icons)
+\ No newline at end of file
++add_subdirectory (icons)

Modified: head/x11-toolkits/granite/files/patch-lib__CMakeLists.txt
==============================================================================
--- head/x11-toolkits/granite/files/patch-lib__CMakeLists.txt	Tue Dec  2 17:56:09 2014	(r373775)
+++ head/x11-toolkits/granite/files/patch-lib__CMakeLists.txt	Tue Dec  2 18:27:47 2014	(r373776)
@@ -1,16 +1,22 @@
---- ./lib/CMakeLists.txt.orig	2013-12-15 12:43:00.000000000 +0000
-+++ ./lib/CMakeLists.txt	2014-02-11 21:08:46.000000000 +0000
-@@ -64,7 +64,12 @@
- if(NOT DEFINED LIB_INSTALL_DIR)
-     set(LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib")
- endif()
--install (FILES ${CMAKE_CURRENT_BINARY_DIR}/${PKG_NAME}.pc DESTINATION ${LIB_INSTALL_DIR}/pkgconfig)
-+
-+if (${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD" OR ${CMAKE_SYSTEM_NAME} MATCHES "DragonFly")
+--- ./lib/CMakeLists.txt.orig	2014-05-25 19:42:24.000000000 +0000
++++ ./lib/CMakeLists.txt	2014-07-27 11:00:15.000000000 +0000
+@@ -62,7 +62,11 @@
+ configure_file (${CMAKE_CURRENT_SOURCE_DIR}/${PKG_NAME}.pc.cmake ${CMAKE_CURRENT_BINARY_DIR}/${PKG_NAME}.pc)
+ 
+ include (GNUInstallDirs)
+-install (FILES ${CMAKE_CURRENT_BINARY_DIR}/${PKG_NAME}.pc DESTINATION ${CMAKE_INSTALL_FULL_LIBDIR}/pkgconfig)
++if (${CMAKE_SYSTEM_NAME} MATCHES "DragonFly" OR ${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
 +    install (FILES ${CMAKE_CURRENT_BINARY_DIR}/${PKG_NAME}.pc DESTINATION ${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig)
 +else ()
-+    install (FILES ${CMAKE_CURRENT_BINARY_DIR}/${PKG_NAME}.pc DESTINATION ${LIB_INSTALL_DIR}/pkgconfig)
++    install (FILES ${CMAKE_CURRENT_BINARY_DIR}/${PKG_NAME}.pc DESTINATION ${CMAKE_INSTALL_FULL_LIBDIR}/pkgconfig)
 +endif ()
  
  # Link all
  set (CFLAGS ${DEPS_CFLAGS} ${DEPS_CFLAGS_OTHER})
+@@ -114,4 +118,4 @@
+ if (INTROSPECTION_FOUND)
+     include (GObjectIntrospectionMacros)
+     add_target_gir (${PKG_NAME} ${PKG_GIR_NAME} ${PKG_NAME}.h "${VALA_C}" "${DEPS_CFLAGS}" ${API_VERSION} ${GI_PKG_DEPS})
+-endif ()
+\ No newline at end of file
++endif ()

Added: head/x11-toolkits/granite/files/patch-lib__Widgets__AboutDialog.vala
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-toolkits/granite/files/patch-lib__Widgets__AboutDialog.vala	Tue Dec  2 18:27:47 2014	(r373776)
@@ -0,0 +1,29 @@
+--- ./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);

Modified: head/x11-toolkits/granite/pkg-plist
==============================================================================
--- head/x11-toolkits/granite/pkg-plist	Tue Dec  2 17:56:09 2014	(r373775)
+++ head/x11-toolkits/granite/pkg-plist	Tue Dec  2 18:27:47 2014	(r373776)
@@ -2,13 +2,15 @@ include/granite/granite.h
 include/granite/widgets-utils.h
 lib/girepository-1.0/Granite-1.0.typelib
 lib/libgranite.so
-lib/libgranite.so.1
-lib/libgranite.so.1.0.1
+lib/libgranite.so.2
+lib/libgranite.so.2.0.1
 libdata/pkgconfig/granite.pc
 share/gir-1.0/Granite-1.0.gir
 share/icons/hicolor/16x16/actions/application-menu.svg
+share/icons/hicolor/16x16/actions/appointment.svg
 share/icons/hicolor/22x22/actions/application-menu.svg
 share/icons/hicolor/24x24/actions/application-menu.svg
+share/icons/hicolor/24x24/actions/appointment.svg
 share/icons/hicolor/32x32/actions/application-menu.svg
 share/icons/hicolor/48x48/actions/application-menu.svg
 share/icons/hicolor/scalable/actions/application-menu-symbolic.svg
@@ -60,8 +62,10 @@ share/locale/rue/LC_MESSAGES/granite.mo
 share/locale/sk/LC_MESSAGES/granite.mo
 share/locale/sl/LC_MESSAGES/granite.mo
 share/locale/sma/LC_MESSAGES/granite.mo
+share/locale/sq/LC_MESSAGES/granite.mo
 share/locale/sr/LC_MESSAGES/granite.mo
 share/locale/sv/LC_MESSAGES/granite.mo
+share/locale/ta/LC_MESSAGES/granite.mo
 share/locale/te/LC_MESSAGES/granite.mo
 share/locale/tr/LC_MESSAGES/granite.mo
 share/locale/ug/LC_MESSAGES/granite.mo
@@ -71,18 +75,3 @@ share/locale/zh_CN/LC_MESSAGES/granite.m
 share/locale/zh_TW/LC_MESSAGES/granite.mo
 share/vala/vapi/granite.deps
 share/vala/vapi/granite.vapi
- at dirrmtry share/locale/ug/LC_MESSAGES
- at dirrmtry share/locale/ug
- at dirrmtry share/locale/te/LC_MESSAGES
- at dirrmtry share/locale/te
- at dirrmtry share/locale/sma/LC_MESSAGES
- at dirrmtry share/locale/sma
- at dirrmtry share/locale/rue/LC_MESSAGES
- at dirrmtry share/locale/rue
- at dirrmtry share/locale/lb/LC_MESSAGES
- at dirrmtry share/locale/lb
- at dirrmtry share/locale/fy/LC_MESSAGES
- at dirrmtry share/locale/fy
- at dirrmtry share/locale/fr_CA/LC_MESSAGES
- at dirrmtry share/locale/fr_CA
- at dirrm include/granite


More information about the svn-ports-head mailing list