b2f2269daf
Upstream announce: https://xfce.org/about/news/?post=1608595200 This XFCE release dropped support for GTK2 plugins and also dropped GTK2 from all components. WARNING: please check UPDATING before upgrading your packages. In case of problems also read the libexo pkg-message. Due to this some panel plugins and libraries will be removed since they cannot compile anymore: - print/xfce4-print - x11/xfce4-quicklauncher-plugin - x11/xfce4-wmdock-plugin - x11-toolkits/libxfce4gui These further components also fail to build or work and are being marked BROKEN, deprecated and marked for removal: - science/xfce4-equake-plugin - x11/xfce4-embed-plugin - deskutils/orage - deskutils/xfce4-volumed [1] deskutils/xfce4-notes-plugin will be also marked BROKEN, but there is active development in it's upstream repository and a fixed release is expected soon. deskutils/xfce4-generic-slider will also be marked broken, since it fails to compile. [2] Thanks also to riggs, Olivier Duchateau <duchateau.olivier@gmail.com> and the people in Approved and Reviewed lines below for help and contributions. Reviewed by: woodsb02 Approved by: sergey.dyatko@gmail.com (maintainer) [1], ehaupt [2] Differential Revision: https://reviews.freebsd.org/D27846
39 lines
996 B
Makefile
39 lines
996 B
Makefile
# Created by: Emanuel Haupt <ehaupt@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xfce4-generic-slider
|
|
PORTVERSION= 0.0.20171223
|
|
PORTREVISION= 1
|
|
CATEGORIES= deskutils
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= Slider plugin to adjust and/or monitor any numeric variable
|
|
|
|
LICENSE= GPLv3
|
|
|
|
BROKEN= Depends on removed XFCE GTK2 support
|
|
|
|
BUILD_DEPENDS= xdt-autogen:devel/xfce4-dev-tools
|
|
LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2
|
|
|
|
USES= compiler:c11 gettext gmake gnome libtool pkgconfig xfce:gtk2
|
|
USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 intltool pango
|
|
USE_XFCE= libmenu panel
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= xfce-mirror
|
|
GH_TAGNAME= d1fc31f
|
|
|
|
CONFIGURE_ARGS= CC="${CC}"
|
|
PLIST_FILES= lib/xfce4/panel/plugins/libgeneric-slider.so \
|
|
share/xfce4/panel/plugins/generic-slider.desktop
|
|
|
|
pre-configure:
|
|
(cd ${WRKSRC} && ./autogen.sh ${CONFIGURE_ARGS})
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/xfce4/panel/plugins/libgeneric-slider.so
|
|
|
|
.include <bsd.port.mk>
|