From owner-svn-ports-head@FreeBSD.ORG Thu Nov 21 20:20:41 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 610C9A48; Thu, 21 Nov 2013 20:20:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4EF7E22BE; Thu, 21 Nov 2013 20:20:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rALKKfiq042415; Thu, 21 Nov 2013 20:20:41 GMT (envelope-from olivierd@svn.freebsd.org) Received: (from olivierd@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rALKKe73042406; Thu, 21 Nov 2013 20:20:40 GMT (envelope-from olivierd@svn.freebsd.org) Message-Id: <201311212020.rALKKe73042406@svn.freebsd.org> From: Olivier Duchateau Date: Thu, 21 Nov 2013 20:20:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r334518 - in head/www/midori: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Nov 2013 20:20:41 -0000 Author: olivierd Date: Thu Nov 21 20:20:39 2013 New Revision: 334518 URL: http://svnweb.freebsd.org/changeset/ports/334518 Log: - Update to 0.5.6 - Add GTK2 and GTK3 options (OPTIONS_SINGLE) - Remove unneeded patches (upstream switched to CMake) Added: head/www/midori/files/patch-cmake__GtkDoc.cmake (contents, props changed) head/www/midori/files/patch-extensions__CMakeLists.txt (contents, props changed) Deleted: head/www/midori/files/patch-extensions__wscript_build head/www/midori/files/patch-wscript Modified: head/www/midori/Makefile head/www/midori/distinfo head/www/midori/files/patch-config__search head/www/midori/pkg-plist Modified: head/www/midori/Makefile ============================================================================== --- head/www/midori/Makefile Thu Nov 21 20:06:53 2013 (r334517) +++ head/www/midori/Makefile Thu Nov 21 20:20:39 2013 (r334518) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= midori -PORTVERSION= 0.5.5 -PORTREVISION= 1 +PORTVERSION= 0.5.6 CATEGORIES= www xfce MASTER_SITES= http://www.midori-browser.org/downloads/ DISTNAME= ${PORTNAME}_${PORTVERSION}_all_ @@ -16,81 +15,73 @@ LICENSE= LGPL21 BUILD_DEPENDS= rsvg-convert:${PORTSDIR}/graphics/librsvg2 \ valac:${PORTSDIR}/lang/vala -LIB_DEPENDS= libwebkitgtk-1.0.so:${PORTSDIR}/www/webkit-gtk2 \ - libsqlite3.so:${PORTSDIR}/databases/sqlite3 \ +LIB_DEPENDS= libsqlite3.so:${PORTSDIR}/databases/sqlite3 \ libnotify.so:${PORTSDIR}/devel/libnotify \ libsoup-gnome-2.4.so:${PORTSDIR}/devel/libsoup-gnome RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -CONFIGURE_ARGS+=--enable-addons \ - --enable-docs \ - --disable-gtk3 \ - --jobs=${MAKE_JOBS_NUMBER} +CMAKE_ARGS= -DUSE_GRANITE:BOOL=OFF \ + -DUSE_GCR:BOOL=OFF WRKSRC= ${WRKDIR}/${DISTNAME:C/([a-z]*)_([0-9\.]*)(_all_)/\1-\2/} -HAS_CONFIGURE= yes -USE_PYTHON= -2.7 -USE_PYTHON_BUILD= yes USE_BZIP2= yes -USE_GNOME= glib20 gtk20 intltool libxml2 +USE_GNOME= glib20 intltool libxml2 USE_XORG= xscrnsaver INSTALLS_ICONS= yes USE_LDCONFIG= yes -USES= desktop-file-utils pkgconfig +USES= desktop-file-utils pkgconfig cmake gettext PLIST_SUB= VERSION="${PORTVERSION:R}" -OPTIONS_DEFINE= DOCS NLS UNIQUE ZEITGEIST -OPTIONS_DEFAULT= NLS UNIQUE - -UNIQUE_DESC= Single instance support +OPTIONS_DEFINE= DOCS ZEITGEIST +OPTIONS_SINGLE= GTK +OPTIONS_SINGLE_GTK= GTK2 GTK3 +OPTIONS_DEFAULT= GTK2 ZEITGEIST_DESC= User logs activities .include -# WAF needs that -CONFIGURE_ENV+= CC="${CC}" +.if ${PORT_OPTIONS:MGTK2} +LIB_DEPENDS+= libwebkitgtk-1.0.so:${PORTSDIR}/www/webkit-gtk2 +USE_GNOME+= gtk20 +CMAKE_ARGS+= -DUSE_GTK3:BOOL=OFF +.endif -.if ${PORT_OPTIONS:MNLS} -USES+= gettext -PLIST_SUB+= NLS="" +.if ${PORT_OPTIONS:MGTK3} +LIB_DEPENDS+= libwebkitgtk-3.0.so:${PORTSDIR}/www/webkit-gtk3 +USE_GNOME+= gtk30 +CMAKE_ARGS+= -DUSE_GTK3:BOOL=ON + +# Support the new WebKit2 API (>= 1.11.91) +.if exists(${LOCALBASE}/libdata/pkgconfig/webkit2gtk-3.0.pc) +CMAKE_ARGS+= -DHALF_BRO_INCOM_WEBKIT2:BOOL=ON .else -CONFIGURE_ARGS+= --disable-nls -PLIST_SUB+= NLS="@comment " +CMAKE_ARGS+= -DHALF_BRO_INCOM_WEBKIT2:BOOL=OFF +.endif .endif .if ${PORT_OPTIONS:MDOCS} BUILD_DEPENDS+= gtkdoc-scan:${PORTSDIR}/textproc/gtk-doc -CONFIGURE_ARGS+=--enable-apidocs +CMAKE_ARGS+= -DUSE_APIDOCS:BOOL=ON PLIST_SUB+= APIDOCS="" .else -CONFIGURE_ARGS+=--disable-apidocs +CMAKE_ARGS+= -DUSE_APIDOCS:BOOL=OFF PLIST_SUB+= APIDOCS="@comment " .endif -.if ${PORT_OPTIONS:MUNIQUE} -LIB_DEPENDS+= libunique-1.0.so:${PORTSDIR}/x11-toolkits/unique -CONFIGURE_ARGS+=--enable-unique -.else -CONFIGURE_ARGS+=--disable-unique -.endif - .if ${PORT_OPTIONS:MZEITGEIST} LIB_DEPENDS+= libzeitgeist-1.0.so:${PORTSDIR}/sysutils/libzeitgeist -CONFIGURE_ARGS+=--enable-zeitgeist +CMAKE_ARGS+= -DUSE_ZEITGEIST:BOOL=ON .else -CONFIGURE_ARGS+=--disable-zeitgeist +CMAKE_ARGS+= -DUSE_ZEITGEIST:BOOL=OFF .endif -post-install: -.if ${PORT_OPTIONS:MDOCS} -.for dir in katze midori - @${MKDIR} ${STAGEDIR}${DOCSDIR}/api/${dir}/html - @cd ${WRKSRC}/_build/docs/api/${dir}/html && \ - ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/api/${dir}/html +post-patch: +# Avoid errors with CMake +.for dir in config extensions + @cd ${WRKSRC} && ${RM} ${dir}/*.orig .endfor -.endif .include Modified: head/www/midori/distinfo ============================================================================== --- head/www/midori/distinfo Thu Nov 21 20:06:53 2013 (r334517) +++ head/www/midori/distinfo Thu Nov 21 20:20:39 2013 (r334518) @@ -1,2 +1,2 @@ -SHA256 (xfce4/midori_0.5.5_all_.tar.bz2) = ca69382a285222a86028abebd73fed1976735883027ff0adc094b627789bbd62 -SIZE (xfce4/midori_0.5.5_all_.tar.bz2) = 1092309 +SHA256 (xfce4/midori_0.5.6_all_.tar.bz2) = c5be1b5d9933776f09c5cab7945a073a820d65555e51fda9ff55fd063843f24a +SIZE (xfce4/midori_0.5.6_all_.tar.bz2) = 1194529 Added: head/www/midori/files/patch-cmake__GtkDoc.cmake ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/midori/files/patch-cmake__GtkDoc.cmake Thu Nov 21 20:20:39 2013 (r334518) @@ -0,0 +1,11 @@ +--- ./cmake/GtkDoc.cmake.orig 2013-11-20 01:26:52.000000000 +0000 ++++ ./cmake/GtkDoc.cmake 2013-11-21 16:30:38.000000000 +0000 +@@ -52,7 +52,7 @@ + file (MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/${module}/html") + gtkdoc_build (${module}) + +- set (DOC_DIR "html/midori-${MIDORI_MAJOR_VERSION}-${MIDORI_MINOR_VERSION}") ++ set (DOC_DIR "html/midori-${MIDORI_MAJOR_VERSION}.${MIDORI_MINOR_VERSION}") + install (DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/${module}/html/" + DESTINATION "${CMAKE_INSTALL_DATADIR}/gtk-doc/${DOC_DIR}/${module}" + PATTERN "html/*" Modified: head/www/midori/files/patch-config__search ============================================================================== --- head/www/midori/files/patch-config__search Thu Nov 21 20:06:53 2013 (r334517) +++ head/www/midori/files/patch-config__search Thu Nov 21 20:20:39 2013 (r334518) @@ -1,5 +1,5 @@ ---- ./config/search.orig 2013-08-14 18:32:02.000000000 +0000 -+++ ./config/search 2013-08-15 10:17:00.000000000 +0000 +--- ./config/search.orig 2013-11-20 01:26:52.000000000 +0000 ++++ ./config/search 2013-11-20 18:03:47.000000000 +0000 @@ -16,6 +16,12 @@ uri=http://www.google.com/search?q=%s token=g Added: head/www/midori/files/patch-extensions__CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/midori/files/patch-extensions__CMakeLists.txt Thu Nov 21 20:20:39 2013 (r334518) @@ -0,0 +1,16 @@ +--- ./extensions/CMakeLists.txt.orig 2013-09-17 10:59:53.000000000 +0000 ++++ ./extensions/CMakeLists.txt 2013-09-17 14:46:05.000000000 +0000 +@@ -24,6 +24,13 @@ + "nsplugin-manager.vala" + ) + endif () ++string(FIND ${CMAKE_SYSTEM_NAME} "BSD" BEGIN) ++string(SUBSTRING ${CMAKE_SYSTEM_NAME} ${BEGIN} 3 BSD) ++if (BSD) ++ list(REMOVE_ITEM EXTENSIONS ++ "devpet.vala" ++ ) ++endif () + + foreach(UNIT_SRC ${EXTENSIONS}) + string(FIND ${UNIT_SRC} ".c" UNIT_EXTENSION) Modified: head/www/midori/pkg-plist ============================================================================== --- head/www/midori/pkg-plist Thu Nov 21 20:06:53 2013 (r334517) +++ head/www/midori/pkg-plist Thu Nov 21 20:20:39 2013 (r334518) @@ -1,12 +1,9 @@ bin/midori etc/xdg/midori/extensions/adblock/config etc/xdg/midori/search -include/midori-%%VERSION%%/extensions/apps.h -include/midori-%%VERSION%%/extensions/delayed-load.h -include/midori-%%VERSION%%/extensions/external-download-manager.h -include/midori-%%VERSION%%/extensions/history-list.h -include/midori-%%VERSION%%/extensions/nsplugin-manager.h -include/midori-%%VERSION%%/extensions/transfers.h +lib/libmidori-core.so +lib/libmidori-core.so.0.0.0 +lib/libmidori-core.so.1 lib/midori/libadblock.so lib/midori/libaddons.so lib/midori/libapps.so @@ -26,197 +23,180 @@ lib/midori/libshortcuts.so lib/midori/libstatus-clock.so lib/midori/libstatusbar-features.so lib/midori/libtab-panel.so +lib/midori/libtabby.so lib/midori/libtabs-minimized.so lib/midori/libtoolbar-editor.so lib/midori/libtransfers.so -share/applications/midori.desktop +share/appdata/midori.appdata.xml share/applications/midori-private.desktop +share/applications/midori.desktop %%DOCSDIR%%/AUTHORS %%DOCSDIR%%/COPYING %%DOCSDIR%%/ChangeLog %%DOCSDIR%%/EXPAT %%DOCSDIR%%/README -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/api-index-full.html -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/ch01.html -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/deprecated-api-index.html -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/home.png -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/index.html -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/index.sgml -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/katze-KatzeItem.html -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/katze-KatzeCellRendererComboBoxText.html -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/katze-KatzePreferences.html -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/katze-gtk3-compat.html -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/katze-katze-array.html -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/katze-katze-arrayaction.html -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/katze-katze-http-auth.html -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/katze-katze-throbber.html -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/katze-katze-utils.html -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/katze.devhelp2 -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/left.png -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/right.png -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/style.css -%%APIDOCS%%%%DOCSDIR%%/api/katze/html/up.png -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/api-index-full.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/ch01.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/deprecated-api-index.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/home.png -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/index.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/index.sgml -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/left.png -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-MidoriBrowser.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-MidoriExtension.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-MidoriPreferences.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-midori-app.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-midori-array.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-midori-bookmarks.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-midori-frontend.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-midori-history.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-midori-locationaction.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-midori-panel.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-midori-platform.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-midori-privatedata.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-midori-searchaction.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-midori-session.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-midori-stock.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-midori-view.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-midori-websettings.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-midori.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-socket.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori-sokoke.html -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/midori.devhelp2 -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/right.png -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/style.css -%%APIDOCS%%%%DOCSDIR%%/api/midori/html/up.png %%DOCSDIR%%/faq.css %%DOCSDIR%%/faq.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/katze/api-index-full.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/katze/ch01.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/katze/deprecated-api-index.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/katze/home.png +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/katze/index.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/katze/katze-KatzeArray.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/katze/katze-KatzeCellRendererComboBoxText.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/katze/katze-KatzeItem.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/katze/katze-KatzePreferences.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/katze/katze-gtk3-compat.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/katze/katze-katze-arrayaction.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/katze/katze-katze-http-auth.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/katze/katze-katze-throbber.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/katze/katze-katze-utils.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/katze/katze.devhelp2 +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/katze/left.png +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/katze/right.png +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/katze/style.css +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/katze/up.png +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/api-index-full.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/ch01.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/deprecated-api-index.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/home.png +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/index.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/left.png +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-MidoriBrowser.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-MidoriExtension.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-MidoriPreferences.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-MidoriViewable.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-midori-app.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-midori-array.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-midori-bookmarks-db.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-midori-frontend.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-midori-history.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-midori-locationaction.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-midori-panel.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-midori-platform.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-midori-privatedata.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-midori-searchaction.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-midori-session.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-midori-stock.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-midori-view.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-midori-websettings.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-midori.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori-sokoke.html +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/midori.devhelp2 +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/right.png +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/style.css +%%APIDOCS%%share/gtk-doc/html/midori-%%VERSION%%/midori/up.png share/icons/hicolor/16x16/apps/midori.png share/icons/hicolor/16x16/categories/extension.png share/icons/hicolor/16x16/status/internet-news-reader.png share/icons/hicolor/22x22/apps/midori.png share/icons/hicolor/22x22/categories/extension.png share/icons/hicolor/22x22/status/internet-news-reader.png -share/icons/hicolor/24x24/apps/midori.png -share/icons/hicolor/24x24/categories/extension.png -share/icons/hicolor/24x24/status/internet-news-reader.png -share/icons/hicolor/32x32/apps/midori.png -share/icons/hicolor/32x32/categories/extension.png -share/icons/hicolor/32x32/status/internet-news-reader.png -share/icons/hicolor/48x48/apps/midori.png -share/icons/hicolor/48x48/categories/extension.png -share/icons/hicolor/48x48/status/internet-news-reader.png share/icons/hicolor/scalable/apps/midori.svg share/icons/hicolor/scalable/categories/extension.svg share/icons/hicolor/scalable/status/internet-news-reader.svg -%%NLS%%share/locale/ast/LC_MESSAGES/midori.mo -%%NLS%%share/locale/ar/LC_MESSAGES/midori.mo -%%NLS%%share/locale/be/LC_MESSAGES/midori.mo -%%NLS%%share/locale/bg/LC_MESSAGES/midori.mo -%%NLS%%share/locale/bs/LC_MESSAGES/midori.mo -%%NLS%%share/locale/ca/LC_MESSAGES/midori.mo -%%NLS%%share/locale/cs/LC_MESSAGES/midori.mo -%%NLS%%share/locale/cy/LC_MESSAGES/midori.mo -%%NLS%%share/locale/da/LC_MESSAGES/midori.mo -%%NLS%%share/locale/de/LC_MESSAGES/midori.mo -%%NLS%%share/locale/el/LC_MESSAGES/midori.mo -%%NLS%%share/locale/en_AU/LC_MESSAGES/midori.mo -%%NLS%%share/locale/en_CA/LC_MESSAGES/midori.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/midori.mo -%%NLS%%share/locale/eo/LC_MESSAGES/midori.mo -%%NLS%%share/locale/es/LC_MESSAGES/midori.mo -%%NLS%%share/locale/et/LC_MESSAGES/midori.mo -%%NLS%%share/locale/eu/LC_MESSAGES/midori.mo -%%NLS%%share/locale/fa/LC_MESSAGES/midori.mo -%%NLS%%share/locale/fi/LC_MESSAGES/midori.mo -%%NLS%%share/locale/fr/LC_MESSAGES/midori.mo -%%NLS%%share/locale/gd/LC_MESSAGES/midori.mo -%%NLS%%share/locale/gl/LC_MESSAGES/midori.mo -%%NLS%%share/locale/he/LC_MESSAGES/midori.mo -%%NLS%%share/locale/hr/LC_MESSAGES/midori.mo -%%NLS%%share/locale/hu/LC_MESSAGES/midori.mo -%%NLS%%share/locale/ia/LC_MESSAGES/midori.mo -%%NLS%%share/locale/id/LC_MESSAGES/midori.mo -%%NLS%%share/locale/it/LC_MESSAGES/midori.mo -%%NLS%%share/locale/ja/LC_MESSAGES/midori.mo -%%NLS%%share/locale/ko/LC_MESSAGES/midori.mo -%%NLS%%share/locale/kk/LC_MESSAGES/midori.mo -%%NLS%%share/locale/ky/LC_MESSAGES/midori.mo -%%NLS%%share/locale/lt/LC_MESSAGES/midori.mo -%%NLS%%share/locale/lv/LC_MESSAGES/midori.mo -%%NLS%%share/locale/ms/LC_MESSAGES/midori.mo -%%NLS%%share/locale/nb/LC_MESSAGES/midori.mo -%%NLS%%share/locale/nl/LC_MESSAGES/midori.mo -%%NLS%%share/locale/nn/LC_MESSAGES/midori.mo -%%NLS%%share/locale/no/LC_MESSAGES/midori.mo -%%NLS%%share/locale/pa/LC_MESSAGES/midori.mo -%%NLS%%share/locale/pl/LC_MESSAGES/midori.mo -%%NLS%%share/locale/pt/LC_MESSAGES/midori.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/midori.mo -%%NLS%%share/locale/ro/LC_MESSAGES/midori.mo -%%NLS%%share/locale/ru/LC_MESSAGES/midori.mo -%%NLS%%share/locale/sk/LC_MESSAGES/midori.mo -%%NLS%%share/locale/sl/LC_MESSAGES/midori.mo -%%NLS%%share/locale/sr/LC_MESSAGES/midori.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/midori.mo -%%NLS%%share/locale/sv/LC_MESSAGES/midori.mo -%%NLS%%share/locale/th/LC_MESSAGES/midori.mo -%%NLS%%share/locale/tr/LC_MESSAGES/midori.mo -%%NLS%%share/locale/ug/LC_MESSAGES/midori.mo -%%NLS%%share/locale/uk/LC_MESSAGES/midori.mo -%%NLS%%share/locale/vi/LC_MESSAGES/midori.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/midori.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/midori.mo +share/locale/ar/LC_MESSAGES/midori.mo +share/locale/ast/LC_MESSAGES/midori.mo +share/locale/be/LC_MESSAGES/midori.mo +share/locale/bg/LC_MESSAGES/midori.mo +share/locale/bs/LC_MESSAGES/midori.mo +share/locale/ca/LC_MESSAGES/midori.mo +share/locale/cs/LC_MESSAGES/midori.mo +share/locale/cy/LC_MESSAGES/midori.mo +share/locale/da/LC_MESSAGES/midori.mo +share/locale/de/LC_MESSAGES/midori.mo +share/locale/el/LC_MESSAGES/midori.mo +share/locale/en_AU/LC_MESSAGES/midori.mo +share/locale/en_CA/LC_MESSAGES/midori.mo +share/locale/en_GB/LC_MESSAGES/midori.mo +share/locale/eo/LC_MESSAGES/midori.mo +share/locale/es/LC_MESSAGES/midori.mo +share/locale/et/LC_MESSAGES/midori.mo +share/locale/eu/LC_MESSAGES/midori.mo +share/locale/fa/LC_MESSAGES/midori.mo +share/locale/fi/LC_MESSAGES/midori.mo +share/locale/fr/LC_MESSAGES/midori.mo +share/locale/gd/LC_MESSAGES/midori.mo +share/locale/gl/LC_MESSAGES/midori.mo +share/locale/he/LC_MESSAGES/midori.mo +share/locale/hr/LC_MESSAGES/midori.mo +share/locale/hu/LC_MESSAGES/midori.mo +share/locale/ia/LC_MESSAGES/midori.mo +share/locale/id/LC_MESSAGES/midori.mo +share/locale/it/LC_MESSAGES/midori.mo +share/locale/ja/LC_MESSAGES/midori.mo +share/locale/kk/LC_MESSAGES/midori.mo +share/locale/ko/LC_MESSAGES/midori.mo +share/locale/ky/LC_MESSAGES/midori.mo +share/locale/lt/LC_MESSAGES/midori.mo +share/locale/lv/LC_MESSAGES/midori.mo +share/locale/ml/LC_MESSAGES/midori.mo +share/locale/ms/LC_MESSAGES/midori.mo +share/locale/nb/LC_MESSAGES/midori.mo +share/locale/nl/LC_MESSAGES/midori.mo +share/locale/nn/LC_MESSAGES/midori.mo +share/locale/no/LC_MESSAGES/midori.mo +share/locale/pa/LC_MESSAGES/midori.mo +share/locale/pl/LC_MESSAGES/midori.mo +share/locale/pt/LC_MESSAGES/midori.mo +share/locale/pt_BR/LC_MESSAGES/midori.mo +share/locale/ro/LC_MESSAGES/midori.mo +share/locale/ru/LC_MESSAGES/midori.mo +share/locale/sk/LC_MESSAGES/midori.mo +share/locale/sl/LC_MESSAGES/midori.mo +share/locale/sr/LC_MESSAGES/midori.mo +share/locale/sr@latin/LC_MESSAGES/midori.mo +share/locale/sv/LC_MESSAGES/midori.mo +share/locale/th/LC_MESSAGES/midori.mo +share/locale/tr/LC_MESSAGES/midori.mo +share/locale/ug/LC_MESSAGES/midori.mo +share/locale/uk/LC_MESSAGES/midori.mo +share/locale/vi/LC_MESSAGES/midori.mo +share/locale/zh_CN/LC_MESSAGES/midori.mo +share/locale/zh_TW/LC_MESSAGES/midori.mo %%DATADIR%%/res/about.css %%DATADIR%%/res/autosuggestcontrol.css %%DATADIR%%/res/autosuggestcontrol.js +%%DATADIR%%/res/bookmarks/Create.sql +%%DATADIR%%/res/bookmarks/Import_old_db_bookmarks.sql %%DATADIR%%/res/close.png %%DATADIR%%/res/error.html +%%DATADIR%%/res/forms/Create.sql %%DATADIR%%/res/gtk3.css +%%DATADIR%%/res/history/Create.sql +%%DATADIR%%/res/history/Day.sql %%DATADIR%%/res/logo-shade.png -%%DATADIR%%/res/logo-shade.svg -%%DATADIR%%/res/nojs/nojs-statusicon-allowed.png -%%DATADIR%%/res/nojs/nojs-statusicon-denied.png -%%DATADIR%%/res/nojs/nojs-statusicon-mixed.png %%DATADIR%%/res/speeddial-head.html -share/vala/vapi/apps.deps -share/vala/vapi/apps.vapi -share/vala/vapi/delayed-load.deps -share/vala/vapi/delayed-load.vapi -share/vala/vapi/external-download-manager.deps -share/vala/vapi/external-download-manager.vapi -share/vala/vapi/history-list.deps -share/vala/vapi/history-list.vapi -share/vala/vapi/nsplugin-manager.deps -share/vala/vapi/nsplugin-manager.vapi -share/vala/vapi/transfers.deps -share/vala/vapi/transfers.vapi -@dirrmtry share/vala/vapi -@dirrmtry share/vala -@dirrm %%DATADIR%%/res/nojs +%%DATADIR%%/res/tabby/Create.sql +%%DATADIR%%/res/tabby/Update1.sql +@dirrm %%DATADIR%%/res/tabby +@dirrm %%DATADIR%%/res/history +@dirrm %%DATADIR%%/res/forms +@dirrm %%DATADIR%%/res/bookmarks @dirrm %%DATADIR%%/res @dirrm %%DATADIR%% -%%NLS%%@dirrmtry share/locale/ug/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/ug -%%NLS%%@dirrmtry share/locale/sr@latin/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/sr@latin -%%NLS%%@dirrmtry share/locale/ky/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/ky -%%NLS%%@dirrmtry share/locale/kk/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/kk -%%NLS%%@dirrmtry share/locale/ia/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/ia -%%NLS%%@dirrmtry share/locale/gd/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/gd -%%NLS%%@dirrmtry share/locale/ast/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/ast -%%APIDOCS%%@dirrm %%DOCSDIR%%/api/midori/html -%%APIDOCS%%@dirrm %%DOCSDIR%%/api/midori -%%APIDOCS%%@dirrm %%DOCSDIR%%/api/katze/html -%%APIDOCS%%@dirrm %%DOCSDIR%%/api/katze -%%APIDOCS%%@dirrm %%DOCSDIR%%/api +@dirrmtry share/locale/ug/LC_MESSAGES +@dirrmtry share/locale/ug +@dirrmtry share/locale/sr@latin/LC_MESSAGES +@dirrmtry share/locale/sr@latin +@dirrmtry share/locale/ky/LC_MESSAGES +@dirrmtry share/locale/ky +@dirrmtry share/locale/kk/LC_MESSAGES +@dirrmtry share/locale/kk +@dirrmtry share/locale/ia/LC_MESSAGES +@dirrmtry share/locale/ia +@dirrmtry share/locale/gd/LC_MESSAGES +@dirrmtry share/locale/gd +@dirrmtry share/locale/ast/LC_MESSAGES +@dirrmtry share/locale/ast +%%APIDOCS%%@dirrm share/gtk-doc/html/midori-%%VERSION%%/midori +%%APIDOCS%%@dirrm share/gtk-doc/html/midori-%%VERSION%%/katze +%%APIDOCS%%@dirrm share/gtk-doc/html/midori-%%VERSION%% +%%APIDOCS%%@dirrmtry share/gtk-doc/html +%%APIDOCS%%@dirrmtry share/gtk-doc @dirrm %%DOCSDIR%% +@dirrm share/appdata @dirrm lib/midori -@dirrm include/midori-%%VERSION%%/extensions -@dirrm include/midori-%%VERSION%% @dirrm etc/xdg/midori/extensions/adblock @dirrm etc/xdg/midori/extensions @dirrm etc/xdg/midori