mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
59 lines
1.5 KiB
Makefile
59 lines
1.5 KiB
Makefile
# Created by: Koop Mast <kwm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
# $MCom: ports/sysutils/gnome-settings-daemon/Makefile,v 1.75 2011/04/25 19:56:57 mezz Exp $
|
|
|
|
PORTNAME= gnome-settings-daemon
|
|
PORTVERSION= 2.32.1
|
|
PORTREVISION= 4
|
|
CATEGORIES= sysutils gnome
|
|
MASTER_SITES= GNOME
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= GNOME 2 settings daemon
|
|
|
|
LIB_DEPENDS= canberra-gtk:${PORTSDIR}/audio/libcanberra \
|
|
notify:${PORTSDIR}/devel/libnotify \
|
|
gdbm:${PORTSDIR}/databases/gdbm \
|
|
nss3:${PORTSDIR}/security/nss
|
|
RUN_DEPENDS= xrdb:${PORTSDIR}/x11/xrdb
|
|
|
|
CONFLICTS= gnome-settings-daemon-3.[0-9]*
|
|
|
|
USE_XORG= xxf86misc
|
|
USE_BZIP2= yes
|
|
USES= gmake pathfix gettext pkgconfig
|
|
USE_GNOME= gnomeprefix intlhack gnomedesktop libgnomekbd
|
|
USE_GSTREAMER= good
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
INSTALLS_ICONS= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
OPTIONS_DEFINE= PULSEAUDIO
|
|
OPTIONS_DEFAULT=PULSEAUDIO
|
|
|
|
GCONF_SCHEMAS= apps_gnome_settings_daemon_housekeeping.schemas \
|
|
apps_gnome_settings_daemon_keybindings.schemas \
|
|
apps_gnome_settings_daemon_xrandr.schemas \
|
|
desktop_gnome_font_rendering.schemas \
|
|
desktop_gnome_keybindings.schemas \
|
|
desktop_gnome_peripherals_smartcard.schemas \
|
|
desktop_gnome_peripherals_touchpad.schemas \
|
|
gnome-settings-daemon.schemas
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MPULSEAUDIO}
|
|
LIB_DEPENDS+= pulse:${PORTSDIR}/audio/pulseaudio
|
|
CONFIGURE_ARGS+=--enable-pulse
|
|
PLIST_SUB+= PULSEAUDIO=""
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-pulse
|
|
PLIST_SUB+= PULSEAUDIO="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|