[Midnightbsd-cvs] mports [16068] trunk/www/midori: midori 0.5.7
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Tue Mar 18 00:17:28 EDT 2014
Revision: 16068
http://svnweb.midnightbsd.org/mports/?rev=16068
Author: laffer1
Date: 2014-03-18 00:17:27 -0400 (Tue, 18 Mar 2014)
Log Message:
-----------
midori 0.5.7
Modified Paths:
--------------
trunk/www/midori/Makefile
trunk/www/midori/distinfo
trunk/www/midori/pkg-plist
Removed Paths:
-------------
trunk/www/midori/files/patch-wscript
Modified: trunk/www/midori/Makefile
===================================================================
--- trunk/www/midori/Makefile 2014-03-17 01:56:53 UTC (rev 16067)
+++ trunk/www/midori/Makefile 2014-03-18 04:17:27 UTC (rev 16068)
@@ -1,7 +1,7 @@
# $MidnightBSD$
PORTNAME= midori
-PORTVERSION= 0.5.5
+PORTVERSION= 0.5.7
CATEGORIES= www xfce
MASTER_SITES= http://www.midori-browser.org/downloads/
DISTNAME= ${PORTNAME}_${PORTVERSION}_all_
@@ -10,86 +10,79 @@
MAINTAINER= ports at MidnightBSD.org
COMMENT= Lightweight web browser using WebKit browser engine
-LICENSE= lgpl2.1
+LICENSE= lgpl2.1 mit
+LICENSE_COMB= multi
BUILD_DEPENDS= rsvg-convert:${PORTSDIR}/graphics/librsvg2 \
valac:${PORTSDIR}/lang/vala
-LIB_DEPENDS= webkitgtk-1:${PORTSDIR}/www/webkit-gtk2 \
- sqlite3:${PORTSDIR}/databases/sqlite3 \
+LIB_DEPENDS= sqlite3:${PORTSDIR}/databases/sqlite3 \
notify:${PORTSDIR}/devel/libnotify \
- soup-gnome-2:${PORTSDIR}/devel/libsoup-gnome \
- execinfo:${PORTSDIR}/devel/libexecinfo
+ soup-gnome-2.4:${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 <bsd.mport.options.mk>
-# WAF needs that
-CONFIGURE_ENV+= CC="${CC}"
+.if ${PORT_OPTIONS:MGTK2}
+LIB_DEPENDS+= webkitgtk-1.0:${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+= webkitgtk-3.0:${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+= unique-1:${PORTSDIR}/x11-toolkits/unique
-CONFIGURE_ARGS+=--enable-unique
-.else
-CONFIGURE_ARGS+=--disable-unique
-.endif
-
.if ${PORT_OPTIONS:MZEITGEIST}
-LIB_DEPENDS+= zeitgeist-1:${PORTSDIR}/sysutils/libzeitgeist
-CONFIGURE_ARGS+=--enable-zeitgeist
+LIB_DEPENDS+= zeitgeist-1.0:${PORTSDIR}/sysutils/libzeitgeist
+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} ${DOCSDIR}/api/${dir}/html
- @cd ${WRKSRC}/_build/docs/api/${dir}/html && \
- ${COPYTREE_SHARE} . ${DOCSDIR}/api/${dir}/html
+post-patch:
+# Avoid errors with CMake
+ @${RM} ${WRKSRC}/*.orig
+.for dir in extensions
+ @${RM} ${WRKSRC}/${dir}/*.orig
.endfor
-.endif
.include <bsd.port.mk>
Modified: trunk/www/midori/distinfo
===================================================================
--- trunk/www/midori/distinfo 2014-03-17 01:56:53 UTC (rev 16067)
+++ trunk/www/midori/distinfo 2014-03-18 04:17:27 UTC (rev 16068)
@@ -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.7_all_.tar.bz2) = 2875bb2aa8a8a0cce342178f04700d4ebccd13bf1b2ad4cb3ba9fec7e2bd0b4d
+SIZE (xfce4/midori_0.5.7_all_.tar.bz2) = 1191260
Deleted: trunk/www/midori/files/patch-wscript
===================================================================
--- trunk/www/midori/files/patch-wscript 2014-03-17 01:56:53 UTC (rev 16067)
+++ trunk/www/midori/files/patch-wscript 2014-03-18 04:17:27 UTC (rev 16068)
@@ -1,62 +0,0 @@
-- Fix PACKAGE_VERSION in gtk_about_dialog_widget (bug #1200903).
-- Check if execinfo.h header is found (bug #1212761).
-- Add test to avoid installing .orig files (for config/search).
-
---- ./wscript.orig 2013-08-14 18:32:02.000000000 +0000
-+++ ./wscript 2013-08-15 19:05:48.000000000 +0000
-@@ -29,7 +29,6 @@
-
- APPNAME = 'midori'
- VERSION = VERSION_FULL = '0.5.5'
--VERSION_SUFFIX = ' (%s)' % VERSION
-
- try:
- if os.path.isdir ('.git'):
-@@ -44,8 +43,10 @@
- folder = os.getcwd ()
- if VERSION in folder:
- VERSION_FULL = os.path.basename (folder)
-- if VERSION in VERSION_FULL:
-- VERSION_SUFFIX = VERSION_FULL.replace (VERSION, '')
-+ if APPNAME in VERSION_FULL:
-+ VERSION_FULL = VERSION_FULL.replace (APPNAME, '')[1:]
-+
-+ VERSION_SUFFIX = ' (%s)' % VERSION_FULL
- except:
- pass
-
-@@ -234,6 +235,8 @@
- conf.check (header_name='X11/extensions/scrnsaver.h',
- includes='/usr/X11R6/include', mandatory=False)
- conf.check (lib='Xss', libpath='/usr/X11R6/lib', mandatory=False)
-+ # Check if execinfo.h header is found
-+ conf.check (header_name='execinfo.h', mandatory=True)
-
- have_gtk3 = option_enabled ('gtk3') or option_enabled ('webkit2') or option_enabled ('granite')
- if have_gtk3:
-@@ -530,15 +533,16 @@
-
- for config_file in os.listdir ('config'):
- dest = '${SYSCONFDIR}/xdg/' + APPNAME
-- if (os.path.isdir ('config/' + config_file)):
-- dest += '/' + config_file
-- for child in os.listdir ('config/' + config_file):
-- if (os.path.isdir ('config/' + config_file + '/' + child)):
-- dest += '/' + child
-- child += '/*'
-- bld.install_files (dest, 'config/' + config_file + '/' + child)
-- continue
-- bld.install_files (dest, 'config/' + config_file)
-+ if not config_file.endswith('.orig'):
-+ if (os.path.isdir ('config/' + config_file)):
-+ dest += '/' + config_file
-+ for child in os.listdir ('config/' + config_file):
-+ if (os.path.isdir ('config/' + config_file + '/' + child)):
-+ dest += '/' + child
-+ child += '/*'
-+ bld.install_files (dest, 'config/' + config_file + '/' + child)
-+ continue
-+ bld.install_files (dest, 'config/' + config_file)
-
- if Options.commands['check'] or bld.env['tests']:
- bld.add_subdirs ('tests')
Modified: trunk/www/midori/pkg-plist
===================================================================
--- trunk/www/midori/pkg-plist 2014-03-17 01:56:53 UTC (rev 16067)
+++ trunk/www/midori/pkg-plist 2014-03-18 04:17:27 UTC (rev 16068)
@@ -1,13 +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/devpet.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
@@ -16,9 +12,9 @@
lib/midori/libcookie-permissions.so
lib/midori/libcopy-tabs.so
lib/midori/libdelayed-load.so
-lib/midori/libdevpet.so
lib/midori/libexternal-download-manager.so
lib/midori/libfeed-panel.so
+lib/midori/libflummi.so
lib/midori/libformhistory.so
lib/midori/libhistory-list.so
lib/midori/libmouse-gestures.so
@@ -28,67 +24,65 @@
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/appdata/midori.appdata.xml
+share/applications/midori-private.desktop
share/applications/midori.desktop
-share/applications/midori-private.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/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/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/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-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/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-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
@@ -95,133 +89,117 @@
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 at 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 at 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/flummi/Create.sql
+%%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/devpet.deps
-share/vala/vapi/devpet.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
- at dirrmtry share/vala/vapi
- at dirrmtry share/vala
+%%DATADIR%%/res/tabby/Create.sql
+%%DATADIR%%/res/tabby/Update1.sql
+ at dirrm %%DATADIR%%/res/tabby
@dirrm %%DATADIR%%/res/nojs
+ at dirrm %%DATADIR%%/res/history
+ at dirrm %%DATADIR%%/res/forms
+ at dirrm %%DATADIR%%/res/flummi
+ at 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 at latin/LC_MESSAGES
-%%NLS%%@dirrmtry share/locale/sr at 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
+ at dirrmtry share/locale/ug/LC_MESSAGES
+ at dirrmtry share/locale/ug
+ at dirrmtry share/locale/sr at latin/LC_MESSAGES
+ at dirrmtry share/locale/sr at latin
+ at dirrmtry share/locale/ky/LC_MESSAGES
+ at dirrmtry share/locale/ky
+ at dirrmtry share/locale/kk/LC_MESSAGES
+ at dirrmtry share/locale/kk
+ at dirrmtry share/locale/ia/LC_MESSAGES
+ at dirrmtry share/locale/ia
+ at dirrmtry share/locale/gd/LC_MESSAGES
+ at dirrmtry share/locale/gd
+ at dirrmtry share/locale/ast/LC_MESSAGES
+ at 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%%
+ at dirrm share/appdata
@dirrm lib/midori
- at dirrm include/midori-%%VERSION%%/extensions
- at dirrm include/midori-%%VERSION%%
@dirrm etc/xdg/midori/extensions/adblock
@dirrm etc/xdg/midori/extensions
@dirrm etc/xdg/midori
- at exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true
- at unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true
- at exec %%LOCALBASE%%/bin/gtk-update-icon-cache -q -f -t %%LOCALBASE%%/share/icons/hicolor
More information about the Midnightbsd-cvs
mailing list