diff options
author | madpilot <madpilot@FreeBSD.org> | 2019-09-20 07:46:33 +0800 |
---|---|---|
committer | madpilot <madpilot@FreeBSD.org> | 2019-09-20 07:46:33 +0800 |
commit | a9fce5ef779922337d667cd5a73fe3dc79de6eea (patch) | |
tree | e3316902afbb4318b0439dc574f0496749ecfdc3 /x11/libxfce4util | |
parent | 944f9ee4531c85923979cc2fce108220ccb6a408 (diff) | |
download | freebsd-ports-gnome-a9fce5ef779922337d667cd5a73fe3dc79de6eea.tar.gz freebsd-ports-gnome-a9fce5ef779922337d667cd5a73fe3dc79de6eea.tar.zst freebsd-ports-gnome-a9fce5ef779922337d667cd5a73fe3dc79de6eea.zip |
Welcome XFCE 4.14 to the FreeBSD ports tree
- 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
Diffstat (limited to 'x11/libxfce4util')
-rw-r--r-- | x11/libxfce4util/Makefile | 19 | ||||
-rw-r--r-- | x11/libxfce4util/distinfo | 5 | ||||
-rw-r--r-- | x11/libxfce4util/pkg-plist | 8 |
3 files changed, 27 insertions, 5 deletions
diff --git a/x11/libxfce4util/Makefile b/x11/libxfce4util/Makefile index 5246e449d317..7cd41a1c102a 100644 --- a/x11/libxfce4util/Makefile +++ b/x11/libxfce4util/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libxfce4util -PORTVERSION= 4.12.1 +PORTVERSION= 4.14.0 CATEGORIES= x11 xfce MASTER_SITES= XFCE DIST_SUBDIR= xfce4 @@ -14,17 +14,30 @@ LICENSE= GPLv2 USES= gettext-tools gmake gnome libtool pathfix perl5 pkgconfig \ tar:bzip2 xfce -USE_GNOME= glib20 intlhack intltool +USE_GNOME= glib20 intltool USE_LDCONFIG= yes GNU_CONFIGURE= yes INSTALL_TARGET= install-strip CONFIGURE_ARGS= --without-html-dir -OPTIONS_DEFINE= NLS +PORTSCOUT= limitw:1,even + +OPTIONS_DEFINE= GIR NLS VAPI +OPTIONS_DEFAULT= GIR VAPI OPTIONS_SUB= yes +GIR_DESC= Use Gobject Introspection + +GIR_USE= gnome=introspection:build +GIR_CONFIGURE_ON= --enable-introspection=yes +GIR_CONFIGURE_OFF= --enable-introspection=no + NLS_CONFIGURE_ENABLE= nls NLS_USES= gettext-runtime +VAPI_BUILD_DEPENDS= vapigen:lang/vala +VAPI_CONFIGURE_ENABLE= vala +VAPI_IMPLIES= GIR + .include <bsd.port.mk> diff --git a/x11/libxfce4util/distinfo b/x11/libxfce4util/distinfo index 02d509a93255..e67e4a42a6db 100644 --- a/x11/libxfce4util/distinfo +++ b/x11/libxfce4util/distinfo @@ -1,2 +1,3 @@ -SHA256 (xfce4/libxfce4util-4.12.1.tar.bz2) = 876bdefa2e13cbf68b626b2158892fb93e824e1ef59cf951123a96cefbc8881d -SIZE (xfce4/libxfce4util-4.12.1.tar.bz2) = 455329 +TIMESTAMP = 1565543253 +SHA256 (xfce4/libxfce4util-4.14.0.tar.bz2) = 32ad79b7992ec3fd863e8ff2f03eebda8740363ef9d7d910a35963ac1c1a6324 +SIZE (xfce4/libxfce4util-4.14.0.tar.bz2) = 516358 diff --git a/x11/libxfce4util/pkg-plist b/x11/libxfce4util/pkg-plist index 7278aaec52d1..70b63e386cb4 100644 --- a/x11/libxfce4util/pkg-plist +++ b/x11/libxfce4util/pkg-plist @@ -11,18 +11,22 @@ include/xfce4/libxfce4util/xfce-posix-signal-handler.h include/xfce4/libxfce4util/xfce-rc.h include/xfce4/libxfce4util/xfce-resource.h include/xfce4/libxfce4util/xfce-utf8.h +%%GIR%%lib/girepository-1.0/libxfce4util-1.0.typelib lib/libxfce4util.so lib/libxfce4util.so.7 lib/libxfce4util.so.7.0.0 libdata/pkgconfig/libxfce4util-1.0.pc sbin/xfce4-kiosk-query +%%GIR%%share/gir-1.0/libxfce4util-1.0.gir %%NLS%%share/locale/am/LC_MESSAGES/libxfce4util.mo %%NLS%%share/locale/ar/LC_MESSAGES/libxfce4util.mo %%NLS%%share/locale/ast/LC_MESSAGES/libxfce4util.mo +%%NLS%%share/locale/be/LC_MESSAGES/libxfce4util.mo %%NLS%%share/locale/bg/LC_MESSAGES/libxfce4util.mo %%NLS%%share/locale/bn/LC_MESSAGES/libxfce4util.mo %%NLS%%share/locale/ca/LC_MESSAGES/libxfce4util.mo %%NLS%%share/locale/cs/LC_MESSAGES/libxfce4util.mo +%%NLS%%share/locale/cy/LC_MESSAGES/libxfce4util.mo %%NLS%%share/locale/da/LC_MESSAGES/libxfce4util.mo %%NLS%%share/locale/de/LC_MESSAGES/libxfce4util.mo %%NLS%%share/locale/el/LC_MESSAGES/libxfce4util.mo @@ -37,7 +41,10 @@ sbin/xfce4-kiosk-query %%NLS%%share/locale/he/LC_MESSAGES/libxfce4util.mo %%NLS%%share/locale/hr/LC_MESSAGES/libxfce4util.mo %%NLS%%share/locale/hu/LC_MESSAGES/libxfce4util.mo +%%NLS%%share/locale/hy/LC_MESSAGES/libxfce4util.mo +%%NLS%%share/locale/hy_AM/LC_MESSAGES/libxfce4util.mo %%NLS%%share/locale/id/LC_MESSAGES/libxfce4util.mo +%%NLS%%share/locale/ie/LC_MESSAGES/libxfce4util.mo %%NLS%%share/locale/is/LC_MESSAGES/libxfce4util.mo %%NLS%%share/locale/it/LC_MESSAGES/libxfce4util.mo %%NLS%%share/locale/ja/LC_MESSAGES/libxfce4util.mo @@ -71,3 +78,4 @@ sbin/xfce4-kiosk-query %%NLS%%share/locale/zh_CN/LC_MESSAGES/libxfce4util.mo %%NLS%%share/locale/zh_HK/LC_MESSAGES/libxfce4util.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/libxfce4util.mo +%%VAPI%%share/vala/vapi/libxfce4util-1.0.vapi |