mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
109 lines
3.2 KiB
Makefile
109 lines
3.2 KiB
Makefile
# Created by: Joe Marcus Clarke <marcus@FreeBSD.org>
|
|
# $FreeBSD$
|
|
# $MCom: ports/x11/gdm/Makefile,v 1.192 2012/09/03 16:28:28 mezz Exp $
|
|
|
|
PORTNAME= gdm
|
|
PORTVERSION= 2.30.7
|
|
PORTREVISION= 2
|
|
CATEGORIES= x11 gnome
|
|
MASTER_SITES= GNOME
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= GNOME 2 version of xdm display manager
|
|
|
|
BUILD_DEPENDS= zenity:${PORTSDIR}/x11/zenity \
|
|
${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes
|
|
LIB_DEPENDS= ck-connector:${PORTSDIR}/sysutils/consolekit \
|
|
polkit-gtk-1:${PORTSDIR}/sysutils/polkit-gnome \
|
|
execinfo:${PORTSDIR}/devel/libexecinfo \
|
|
upower-glib:${PORTSDIR}/sysutils/upower \
|
|
xklavier:${PORTSDIR}/x11/libxklavier \
|
|
canberra-gtk:${PORTSDIR}/audio/libcanberra
|
|
RUN_DEPENDS= zenity:${PORTSDIR}/x11/zenity \
|
|
${LOCALBASE}/libexec/gnome-settings-daemon:${PORTSDIR}/sysutils/gnome-settings-daemon \
|
|
gnome-session:${PORTSDIR}/x11/gnome-session \
|
|
${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes
|
|
|
|
CONFLICTS= gdm-3.[0-9]*
|
|
|
|
USERS= gdm
|
|
GROUPS= gdm
|
|
|
|
USE_XZ= yes
|
|
USE_LDCONFIG= yes
|
|
USE_XORG= dmx dmxproto
|
|
INSTALLS_ICONS= yes
|
|
USE_RC_SUBR= gdm
|
|
USE_GNOME_SUBR= yes
|
|
USE_GMAKE= yes
|
|
USES= pathfix gettext
|
|
USE_GNOME= intlhack gnomehier gconf2 librsvg2 \
|
|
gnomedocutils gnomeprefix gnomepanel
|
|
GCONF_SCHEMAS= gdm-simple-greeter.schemas
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-working-directory=${PREFIX}/etc/gdm/home \
|
|
--with-at-spi-registryd-directory=${LOCALBASE}/libexec
|
|
CONFIGURE_ENV= LIBS="-lm" \
|
|
GTKDOC="false"
|
|
CPPFLAGS+= -I${LOCALBASE}/include -DHAS_SA_LEN
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
SUB_FILES+= gdm.pam
|
|
|
|
GDMDIR?= ${PREFIX}/etc/gdm
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
|
|
GNOME_LOCALSTATEDIR= /var
|
|
|
|
OPTIONS_DEFINE= IPV6 KEYRING
|
|
OPTIONS_DEFAULT=KEYRING
|
|
KEYRING_DESC= GnomeKeyring/PAM integration
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MKEYRING}
|
|
LIB_DEPENDS+= gnome-keyring:${PORTSDIR}/security/libgnome-keyring
|
|
SUB_LIST+= PAM_KEYRING=
|
|
.else
|
|
SUB_LIST+= PAM_KEYRING=\#
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MIPV6}
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|root:root|root:wheel|g' \
|
|
${WRKSRC}/data/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
|
|
-e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
|
|
${WRKSRC}/daemon/gdm-session-worker.c \
|
|
${WRKSRC}/data/gconf.path
|
|
@${REINPLACE_CMD} -e 's|/bin/true|/usr/bin/true|g' \
|
|
${WRKSRC}/data/session-setup.entries
|
|
@${REINPLACE_CMD} -e 's|/usr/X11R6|${LOCALBASE}|g' \
|
|
${WRKSRC}/configure ${WRKSRC}/daemon/*.c ${WRKSRC}/po/*.po
|
|
@${REINPLACE_CMD} -e 's|/usr/lib|${LOCALBASE}/lib|g' \
|
|
${WRKSRC}/data/greeter-autostart/*.desktop.in*
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/data/gconf.path \
|
|
${PREFIX}/share/gdm/gconf.path
|
|
${INSTALL_DATA} ${WRKSRC}/data/session-setup.entries \
|
|
${PREFIX}/share/gdm/session-setup.entries
|
|
.if !defined(PACKAGE_BUILDING)
|
|
@${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
.endif
|
|
${INSTALL_DATA} ${WRKSRC}/data/gdm.conf-custom \
|
|
${PREFIX}/etc/gdm/custom.conf.default
|
|
${MKDIR} ${PREFIX}/share/xsessions
|
|
${INSTALL_DATA} ${WRKDIR}/gdm.pam ${PREFIX}/etc/pam.d/gdm
|
|
@${SED} -e 's|%%PREFIX%%|${PREFIX}|g' < ${PKGDIR}/pkg-message \
|
|
| /usr/bin/fmt 75 79 > ${PKGMESSAGE}
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|