49a6114148
add an autostart condition: gnome-shell comes with its own implementation of a policy kit agent, however the fallback session does not and needs polkit-gnome-authentication-agent to be started. This only affects the !gtk2 FLAVOR (polkit-gnome,gtk2 will automatically start as usual).
93 lines
2.9 KiB
Makefile
93 lines
2.9 KiB
Makefile
# $OpenBSD: Makefile,v 1.8 2011/05/19 17:55:45 ajacoutot Exp $
|
|
|
|
COMMENT= PolicyKit integration for GNOME/GTK+2
|
|
|
|
DISTNAME= polkit-gnome-0.101
|
|
REVISION= 1
|
|
|
|
CATEGORIES= x11 sysutils
|
|
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
SHARED_LIBS += polkit-gtk-1 1.0 # 0.0
|
|
|
|
HOMEPAGE= http://hal.freedesktop.org/docs/PolicyKit-gnome/
|
|
|
|
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
|
|
|
|
# LGPLv2+
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB += GL X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes
|
|
WANTLIB += Xi Xinerama Xrandr Xrender Xxf86vm atk-1.0 c cairo
|
|
WANTLIB += drm expat fontconfig freetype gdk_pixbuf-2.0 gio-2.0
|
|
WANTLIB += glib-2.0 gmodule-2.0 gobject-2.0 gthread-2.0 m pango-1.0
|
|
WANTLIB += pangocairo-1.0 pangoft2-1.0 pcre pixman-1 png polkit-agent-1
|
|
WANTLIB += polkit-gobject-1 pthread pthread-stubs xcb xcb-render
|
|
WANTLIB += xcb-shm z
|
|
|
|
MASTER_SITES= http://hal.freedesktop.org/releases/
|
|
|
|
MODULES= devel/gettext \
|
|
textproc/intltool
|
|
|
|
BUILD_DEPENDS= devel/gobject-introspection
|
|
|
|
LIB_DEPENDS= sysutils/polkit>=0.97p6
|
|
|
|
# XXX: the libtool wrapper script is passed as argument to g-ir-scanner,
|
|
# instead of the actual library
|
|
USE_LIBTOOL= gnu
|
|
|
|
USE_GMAKE= Yes
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
|
|
--localstatedir=/var \
|
|
--enable-introspection \
|
|
--disable-gtk-doc \
|
|
--disable-silent-rules
|
|
|
|
FLAVORS= gtk2
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Mgtk2}
|
|
CONFIGURE_ARGS+=--with-gtk=2.0
|
|
LIB_DEPENDS+= x11/gtk+2
|
|
WANTLIB += gdk-x11-2.0 gtk-x11-2.0
|
|
.else
|
|
CONFIGURE_ARGS+=--with-gtk=3.0
|
|
LIB_DEPENDS+= x11/gtk+3
|
|
WANTLIB += cairo-gobject gdk-3 gtk-3
|
|
.endif
|
|
|
|
# revert the following commit:
|
|
# ----------------------------------------------------------------------
|
|
# From 47ca445decf21b8de13d804b870d6ce171bad306 Mon Sep 17 00:00:00 2001
|
|
# From: David Zeuthen <davidz@redhat.com>
|
|
# Date: Mon, 21 Feb 2011 21:44:43 +0000
|
|
# Subject: Nuke desktop file for autostart
|
|
# It is much easier if the desktops (and power users) using this
|
|
# authentication agent just loads it themselves (via e.g. XDG autostart
|
|
# or whatever).
|
|
# ----------------------------------------------------------------------
|
|
# Also add an autostart condition: gnome-shell comes with its own
|
|
# implementation of a policy kit agent, however the fallback session
|
|
# does not and needs polkit-gnome-authentication-agent to be started.
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/polkit-gnome/xdg/autostart
|
|
${SUBST_CMD} -o ${SHAREOWN} -g ${SHAREGRP} \
|
|
-c ${FILESDIR}/polkit-gnome-authentication-agent-1.desktop \
|
|
${PREFIX}/share/examples/polkit-gnome/xdg/autostart/polkit-gnome-authentication-agent-1.desktop
|
|
.if ! ${FLAVOR:L:Mgtk2}
|
|
echo 'AutostartCondition=GNOME3 if-session gnome-fallback' >> \
|
|
${PREFIX}/share/examples/polkit-gnome/xdg/autostart/polkit-gnome-authentication-agent-1.desktop
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|