474895cdb6
This version uses Python 3 instead of the expired Python 2.7 From the main PR (249856): " There are a couple known issues: * x11-fm/nemo crashes upon closing a window or tab. * x11/cinnamon-screensaver unlocking doesn't work, most likely due to a missing PAM (Linux-PAM?) integration. Both of these issues are being worked on. I've been dogfooding since Cinnamon 4.0, and apart from those issues, everything works." PR: 249771 PR: 249851 PR: 249855 PR: 249856 PR: 249857 PR: 249858 Submitted by: Charlie Li
62 lines
1.6 KiB
Makefile
62 lines
1.6 KiB
Makefile
# Created by: Gustau Perez i Querol <gustau.perez@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cinnamon-control-center
|
|
PORTVERSION= 4.8.1
|
|
CATEGORIES= sysutils gnome
|
|
DIST_SUBDIR= gnome
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Control center for Cinnamon
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= cinnamon-settings-daemon>=1.0.0:sysutils/cinnamon-settings-daemon \
|
|
iso-codes>0:misc/iso-codes
|
|
LIB_DEPENDS= libcinnamon-desktop.so:x11/cinnamon-desktop \
|
|
libcinnamon-menu-3.so:x11/cinnamon-menus \
|
|
libdbus-1.so:devel/dbus \
|
|
libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2 \
|
|
libnotify.so:devel/libnotify \
|
|
libpolkit-gobject-1.so:sysutils/polkit \
|
|
libxklavier.so:x11/libxklavier \
|
|
libharfbuzz.so:print/harfbuzz
|
|
RUN_DEPENDS= iso-codes>0:misc/iso-codes \
|
|
cinnamon-settings-daemon>=1.0.0:sysutils/cinnamon-settings-daemon
|
|
|
|
USES= gettext gnome meson pkgconfig python:3.5+,build shebangfix xorg
|
|
USE_GNOME= cairo gdkpixbuf2 gtk30 intltool libgnomekbd libxml2
|
|
USE_XORG= x11 xfixes sm
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= linuxmint
|
|
|
|
INSTALLS_ICONS= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
MESON_ARGS= -Dnetworkmanager=false \
|
|
-Dmodemmanager=false
|
|
|
|
SHEBANG_GLOB= *.py
|
|
|
|
OPTIONS_DEFINE= COLORD ONLINEACCOUNTS WACOM
|
|
OPTIONS_DEFAULT=COLORD ONLINEACCOUNTS WACOM
|
|
OPTIONS_SUB= yes
|
|
|
|
ONLINEACCOUNTS_DESC= GNOME Online Accounts panel support
|
|
WACOM_DESC= Wacom management panel support
|
|
|
|
COLORD_LIB_DEPENDS= libcolord.so:graphics/colord
|
|
COLORD_MESON_TRUE= color
|
|
|
|
ONLINEACCOUNTS_LIB_DEPENDS= libgoa-1.0.so:net/gnome-online-accounts
|
|
ONLINEACCOUNTS_MESON_TRUE= onlineaccounts
|
|
|
|
WACOM_LIB_DEPENDS= libwacom.so:x11/libwacom
|
|
WACOM_USE= xorg=xi
|
|
WACOM_MESON_TRUE= wacom
|
|
|
|
.include <bsd.port.mk>
|