mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
1ca7b37ec9
- Switch to USES= gmake (xfce4-desktop, xfce4-wm) - Convert to new LIB_DEPENDS format (xfce4-desktop, xfce4-panel, xfce4-wm)
56 lines
1.3 KiB
Makefile
56 lines
1.3 KiB
Makefile
# Created by: Matt Lancereau <matt@rimasec.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xfce4-session
|
|
PORTVERSION= 4.10.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= x11-wm xfce
|
|
MASTER_SITES= ${MASTER_SITE_XFCE}
|
|
MASTER_SITE_SUBDIR= src/xfce/${PORTNAME}/${PORTVERSION:R}
|
|
DIST_SUBDIR= xfce4
|
|
|
|
MAINTAINER= xfce@FreeBSD.org
|
|
COMMENT= Xfce's session manager
|
|
|
|
BUILD_DEPENDS= iceauth:${PORTSDIR}/x11/iceauth
|
|
RUN_DEPENDS= iceauth:${PORTSDIR}/x11/iceauth \
|
|
console-kit-daemon:${PORTSDIR}/sysutils/consolekit
|
|
LIB_DEPENDS= libwnck-1.so:${PORTSDIR}/x11-toolkits/libwnck \
|
|
libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \
|
|
libupower-glib.so:${PORTSDIR}/sysutils/upower \
|
|
libpolkit-gobject-1.so:${PORTSDIR}/sysutils/polkit
|
|
|
|
USE_AUTOTOOLS= libtool
|
|
GNU_CONFIGURE= yes
|
|
INSTALLS_ICONS= yes
|
|
USE_BZIP2= yes
|
|
USE_GNOME= gtk20 glib20 intltool intlhack
|
|
USES= pathfix pkgconfig gmake
|
|
USE_LDCONFIG= yes
|
|
USE_XFCE= configenv libmenu libutil xfconf
|
|
USE_XORG= x11 sm ice
|
|
|
|
CONFIGURE_ARGS+=--enable-legacy-sm \
|
|
--disable-systemd \
|
|
--with-xsession-prefix=${PREFIX}
|
|
|
|
SUB_FILES= pkg-message
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
|
|
PLIST_SUB= VERSION="4.6"
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
USES+= gettext
|
|
CONFIGURE_ARGS+= --enable-nls
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|