mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
e69e6941cc
- This XFCE release uses almost exclusively gtk3, so the USES=xfce now defaults to gtk3 - Make x11-themes/gtk-xfce-engine an optional dependency(disabled by default), it only supports gtk2, so would leave miost of this XFCE version unthemed. - Add Greybird as an optional and enabled dependency as a modern theme supporting both GTK versions and all other XFCE parts - The xfce4-vala port is deprecated and removed. The VALA bindings are available in the library ports using the GIR and VAPI options (on by default) - Fixed various missing library and portlint warnings (portmgr fixit blanket) - Default Display Manager changed to lightdm (Thanks to woodsb02 for help) - Add x11/xfce4-screensaver as an optional dependency to the xfce4-goodies (enabled by default) - Remove dependency on x11-fm/thunar-vfs and deprecate the port. It is EOL upstream and the functionality is included in thunar itself Update: - Added back sysutils/xfce4-places-plugin, updated to 1.8.1 - archivers/thunar-archive-plugin to 0.4.0 - audio/thunar-media-tags-plugin to 0.3.0 - audio/xfce4-mpc-plugin to 0.5.2 - audio/xfce4-pulseaudio-plugin to 0.4.2 - deskutils/xfce4-tumbler to 0.2.7 - devel/thunar-vcs-plugin to 0.2.0 [1] - devel/xfce4-dev-tools to 4.14.0 - misc/xfce4-appfinder to 4.14.0 - misc/xfce4-weather-plugin to 0.10.0 - multimedia/xfce4-parole to 1.0.4 - sysutils/gigolo to 0.5.0 - sysutils/xfce4-battery-plugin to 1.1.3 - sysutils/xfce4-fsguard-plugin to 1.1.1 - sysutils/xfce4-netload-plugin to 1.3.2 - sysutils/xfce4-power-manage to 1.6.5 - sysutils/xfce4-settings 4.14.1 - sysutils/xfce4-systemload-plugin to 1.2.3 - sysutils/xfce4-wavelan-plugin to 0.6.1 - www/xfce4-smartbookmark-plugin to 0.5.1 - x11-clocks/xfce4-datetime-plugin to 0.8.0 - Added new xfce4-stopwatch-plugin, version 0.3.1 - x11-clocks/xfce4-timer-out-plugin to 1.0.3 - x11-fm/thunar to 1.8.9 - x11-wm/xfce4-desktop to 4.14.1 - x11-wm/xfce4-panel to 4.14.0 - x11-wm/xfce4-session to 4.14.0 - x11-wm/xfce4-wm to 4.14.0 - x11/libexo to 0.12.8 - x11/libxfce4menu to 4.14.1 - x11/libxfce4util to 4.14.0 - x11/xfce4-conf to 4.14.1 - x11/xfce4-dashboard to 0.7.5 - x11/xfce4-screensaver to 0.1.8 - x11/xfce4-screenshooter-plugin to 1.9.6 - x11/xfce4-verve-plugin to 2.0.0 Thanks to: Olivier Duchateau <duchateau.olivier@gmail.com> PR: 240236 Exp-run by: antoine Tested by: sbruno Approved by: sergey.dyatko@gmail.com (maintainer timeout via email), portmgr (fixit blanket, port breaks with new Thunar if not updated) [1] Differential Revision: https://reviews.freebsd.org/D21278
59 lines
1.4 KiB
Makefile
59 lines
1.4 KiB
Makefile
# Created by: Michael Johnson <ahze@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= midori
|
|
PORTVERSION= 9.0
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= www xfce
|
|
|
|
MAINTAINER= xfce@FreeBSD.org
|
|
COMMENT= Lightweight web browser using WebKit browser engine
|
|
|
|
LICENSE= LGPL21 MIT
|
|
LICENSE_COMB= multi
|
|
|
|
BUILD_DEPENDS= rsvg-convert:graphics/librsvg2 \
|
|
valac:lang/vala
|
|
LIB_DEPENDS= libnotify.so:devel/libnotify \
|
|
libjson-glib-1.0.so:devel/json-glib \
|
|
libsoup-2.4.so:devel/libsoup \
|
|
libsoup-gnome-2.4.so:devel/libsoup-gnome \
|
|
libp11-kit.so:security/p11-kit \
|
|
libgcr-3.so:security/gcr \
|
|
libpeas-1.0.so:devel/libpeas \
|
|
libwebkit2gtk-4.0.so:www/webkit2-gtk3
|
|
RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss
|
|
|
|
USES= cmake compiler:c++11-lang desktop-file-utils gettext gnome \
|
|
libarchive localbase:ldflags pkgconfig sqlite tar:bzip2 xorg
|
|
USE_GNOME= cairo glib20 gtk30 intltool introspection libxml2
|
|
USE_XORG= xscrnsaver
|
|
|
|
CFLAGS+= -Wno-return-type
|
|
CMAKE_ARGS= -DUSE_APIDOCS:BOOL=OFF
|
|
|
|
INSTALLS_ICONS= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
PLIST_SUB= VERSION="${PORTVERSION:R}"
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= midori-browser
|
|
GH_PROJECT= core
|
|
|
|
OPTIONS_DEFINE= ZEITGEIST
|
|
OPTIONS_SUB= yes
|
|
|
|
ZEITGEIST_DESC= User logs activities
|
|
|
|
ZEITGEIST_LIB_DEPENDS= libzeitgeist-2.0.so:sysutils/zeitgeist
|
|
ZEITGEIST_CMAKE_OFF= -DUSE_ZEITGEIST:BOOL=OFF
|
|
|
|
post-patch:
|
|
# Avoid errors with CMake
|
|
.for dir in config extensions
|
|
@${RM} ${WRKSRC}/${dir}/*.orig
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|