mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
a14e412f1f
Changelog:
92b910ce22/NEWS
PR: 258971
66 lines
1.7 KiB
Makefile
66 lines
1.7 KiB
Makefile
# Created by: Koop Mast<kwm@FreeBSD.org>
|
|
|
|
PORTNAME= polkit
|
|
PORTVERSION= 0.120
|
|
CATEGORIES= sysutils gnome
|
|
MASTER_SITES= https://www.freedesktop.org/software/polkit/releases/
|
|
|
|
MAINTAINER= desktop@FreeBSD.org
|
|
COMMENT= Framework for controlling access to system-wide components
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libexpat.so:textproc/expat2 \
|
|
libdbus-1.so:devel/dbus \
|
|
libmozjs-78.so:lang/spidermonkey78
|
|
|
|
USERS= polkitd
|
|
GROUPS= polkitd
|
|
|
|
USES= compiler:c++11-lib cpe gettext gnome libtool localbase meson \
|
|
pathfix pkgconfig shebangfix
|
|
USE_GNOME= glib20 intltool introspection:build
|
|
SHEBANG_FILES= ${WRKSRC}/src/polkitbackend/toarray.pl
|
|
USE_LDCONFIG= yes
|
|
CPE_VENDOR= polkit_project
|
|
|
|
MESON_ARGS= -Dpam_include=system \
|
|
-Dpolkitd_user=${USERS} \
|
|
-Dexamples=false \
|
|
-Dsession_tracking=ConsoleKit \
|
|
-Dtests=false \
|
|
-Dintrospection=true \
|
|
-Dlocalstatedir=/var \
|
|
-Dgtk_doc=false
|
|
|
|
INSTALL_TARGET= install-strip
|
|
|
|
OPTIONS_DEFINE= MANPAGES
|
|
|
|
MANPAGES_BUILD_DEPENDS= docbook-sgml>=4.5:textproc/docbook-sgml \
|
|
docbook-xsl>=1.76:textproc/docbook-xsl
|
|
MANPAGES_USE= gnome=libxslt:build
|
|
MANPAGES_MESON_TRUE= man
|
|
|
|
OPTIONS_SUB= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/bin/|${PREFIX}/bin/|g' \
|
|
${WRKSRC}/docs/man/pkexec.xml \
|
|
${WRKSRC}/src/examples/org.freedesktop.policykit.examples.pkexec.policy.in
|
|
@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${PREFIX}|g' \
|
|
${WRKSRC}/docs/man/polkit.xml
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}/var/lib/polkit-1 \
|
|
${STAGEDIR}${PREFIX}/share/polkit-1/rules.d
|
|
.for i in 10-vendor.d 20-org.d 30-site.d 50-local.d 90-mandatory.d
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/etc/polkit-1/localauthority/${i}
|
|
${MKDIR} ${STAGEDIR}/var/lib/polkit-1/localauthority/${i}
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|