mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-27 10:03:20 +00:00
d129587b5d
The offical GNOME 3.16 release notes can be found at https://help.gnome.org/misc/release-notes/3.16/ Upgrade instructions for port users: Delete the old tracker package with: # pkg delete -f tracker And user port upgrade tool of choice to upgrade. Thanks to Antoine Brodin for running the exp-runs. This release was made possible by the following people: Gustau Perez Ting-Wei_Lan PR: 201980
36 lines
1.0 KiB
Makefile
36 lines
1.0 KiB
Makefile
# Created by: Koop Mast <kwm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= accountsservice
|
|
PORTVERSION= 0.6.40
|
|
CATEGORIES= sysutils devel
|
|
MASTER_SITES= http://www.freedesktop.org/software/${PORTNAME}/
|
|
|
|
MAINTAINER= kwm@FreeBSD.org
|
|
COMMENT= D-Bus interface for user account query and manipulation
|
|
|
|
LICENSE= GPLv3 # or later
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \
|
|
libpolkit-gobject-1.so:${PORTSDIR}/sysutils/polkit
|
|
|
|
USE_GNOME= glib20 intlhack introspection:build libxslt
|
|
USES= cpe gettext gmake libtool pathfix pkgconfig tar:xz
|
|
CPE_VENDOR= ray_stode
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
CONFIGURE_ARGS= --disable-systemd --localstatedir=/var/
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
INSTALL_TARGET= install-strip
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/etc/gdm/custom.conf|${LOCALBASE}/etc/gdm/custom.conf|g' \
|
|
${WRKSRC}/src/daemon.c
|
|
@${REINPLACE_CMD} -e 's|/lib/AccountsService|/db/AccountsService|g' \
|
|
${WRKSRC}/src/user.c ${WRKSRC}/src/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|
|
|