freebsd-ports/sysutils/policykit/Makefile
Florent Thoumie 80ce349ead Add support to create users and groups from information stored in UIDs/GIDs
files. Users and groups won't be deleted at deinstall time as we're lacking
a refcount to know if any port is using them.

Also convert a few ports while I'm here.

PR:		ports/108514
Submitted by:	mm, self
2009-09-06 21:18:50 +00:00

64 lines
1.9 KiB
Makefile

# New ports collection makefile for: PolicyKit
# Date Created: 01 May 2006
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
#
# $FreeBSD$
# $MCom: ports/sysutils/policykit/Makefile,v 1.22 2008/08/21 21:53:00 mezz Exp $
#
PORTNAME= policykit
PORTVERSION= 0.9
PORTREVISION= 5
CATEGORIES= sysutils gnome
MASTER_SITES= http://hal.freedesktop.org/releases/
DISTNAME= PolicyKit-${PORTVERSION}
MAINTAINER= gnome@FreeBSD.org
COMMENT= Framework for controlling access to system-wide components
LIB_DEPENDS= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \
expat.6:${PORTSDIR}/textproc/expat2
USERS= polkit
GROUPS= polkit
USE_GNOME= gnomehack glib20 intlhack
USE_GMAKE= yes
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
CONFIGURE_ARGS= --disable-gtk-doc \
--with-pam-include=system \
--with-os-type=freebsd \
--localstatedir=/var \
--with-polkit-user=polkit \
--with-polkit-group=polkit
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib" \
GTKDOC="false"
.if defined(NO_INSTALL_MANPAGES)
CONFIGURE_ARGS+=--disable-man-pages
.else
BUILD_DEPENDS= ${LOCALBASE}/share/sgml/docbook/4.1/catalog:${PORTSDIR}/textproc/docbook-410 \
xsltproc:${PORTSDIR}/textproc/libxslt \
${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl:${PORTSDIR}/textproc/docbook-xsl
MAN1= polkit-action.1 polkit-auth.1 polkit-config-file-validate.1 \
polkit-policy-file-validate.1
MAN5= PolicyKit.conf.5
MAN8= PolicyKit.8
.endif
post-install:
${MKDIR} ${PREFIX}/etc/PolicyKit
if [ ! -f ${PREFIX}/etc/PolicyKit/PolicyKit.conf ]; then \
${INSTALL_DATA} ${WRKSRC}/data/PolicyKit.conf \
${PREFIX}/etc/PolicyKit/PolicyKit.conf ; \
fi
${INSTALL_DATA} ${WRKSRC}/data/PolicyKit.conf \
${PREFIX}/etc/PolicyKit/PolicyKit.conf.dist
.if !defined(PACKAGE_BUILDING)
@${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
.endif
.include <bsd.port.mk>