blob: 7ececbc449d519b9cb3d776625a82fa21e772419 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# New ports collection makefile for: gnome-settings-daemon
# Date created: 14 Jan 2008
# Whom: Koop Mast <kwm@FreeBSD.org>
#
# $FreeBSD$
# $MCom$
#
PORTNAME= gnome-settings-daemon
PORTVERSION= 3.4.2
CATEGORIES= sysutils gnome
MASTER_SITES= GNOME
DIST_SUBDIR= gnome3
MAINTAINER= gnome@FreeBSD.org
COMMENT= GNOME 3 settings daemon
BUILD_DEPENDS= gnome-session>=2.91.0:${PORTSDIR}/x11/gnome-session3 \
${LOCALBASE}/libdata/pkgconfig/gsettings-desktop-schemas.pc:${PORTSDIR}/devel/gsettings-desktop-schemas
LIB_DEPENDS= canberra-gtk3.0:${PORTSDIR}/audio/libcanberra-gtk3 \
polkit-gobject-1.0:${PORTSDIR}/sysutils/polkit \
colord.1:${PORTSDIR}/graphics/colord \
pulse.0:${PORTSDIR}/audio/pulseaudio \
gdbm.4:${PORTSDIR}/databases/gdbm \
notify.4:${PORTSDIR}/devel/libnotify
RUN_DEPENDS= gnome-session>=2.91.0:${PORTSDIR}/x11/gnome-session3 \
${LOCALBASE}/libdata/pkgconfig/gsettings-desktop-schemas.pc:${PORTSDIR}/devel/gsettings-desktop-schemas
CONFLICTS= gnome-settings-daemon-2.[0-9]*
LATEST_LINK= gnome-settings-daemon3
USE_XORG= xxf86misc
USE_XZ= yes
USE_GMAKE= yes
USE_GNOME= gnomeprefix intlhack gnomehack gnomedesktop3 libgnomekbd3 \
gnomehier
USE_GETTEXT= yes
GNU_CONFIGURE= yes
INSTALLS_ICONS= yes
CONFIGURE_ARGS= --disable-gudev \
--disable-systemd \
--disable-packagekit
#--with-pnpids=${LOCALBASE}/share/libgnome-desktop-3.0/pnp.ids
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
OPTIONS= CUPS "Enable cups (printing) support" On \
SMARTCARD "Enable smartcard support" On
GLIB_SCHEMAS= org.gnome.settings-daemon.enums.xml \
org.gnome.settings-daemon.peripherals.gschema.xml \
org.gnome.settings-daemon.plugins.color.gschema.xml \
org.gnome.settings-daemon.plugins.gschema.xml \
org.gnome.settings-daemon.plugins.housekeeping.gschema.xml \
org.gnome.settings-daemon.plugins.keyboard.gschema.xml \
org.gnome.settings-daemon.plugins.media-keys.gschema.xml \
org.gnome.settings-daemon.plugins.power.gschema.xml \
org.gnome.settings-daemon.plugins.print-notifications.gschema.xml \
org.gnome.settings-daemon.plugins.xrandr.gschema.xml \
org.gnome.settings-daemon.plugins.xsettings.gschema.xml
MAN1= gnome-settings-daemon.1
.include <bsd.port.options.mk>
.if defined(WITH_CUPS)
LIB_DEPENDS+= cups.2:${PORTSDIR}/print/cups-client
PLIST_SUB+= CUPS=""
.else
PLIST_SUB+= CUPS="@comment "
CONFIGURE_ARGS+=--disable-cups
.endif
.if defined(WITHOUT_SMARTCARD)
CONFIGURE_ARGS+=--disable-smartcard-support
PLIST_SUB+= SMARTCARD="@comment "
.else
LIB_DEPENDS+= nss3.1:${PORTSDIR}/security/nss
CONFIGURE_ARGS+=--enable-smartcard-support
PLIST_SUB+= SMARTCARD=""
.endif
post-patch:
@${REINPLACE_CMD} -e 's|/etc/gnome|${PREFIX}/etc/gnome|g' \
${WRKSRC}/data/org.gnome.settings-daemon.plugins.xrandr.gschema.xml.in.in
.include <bsd.port.mk>
|