mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
143337722b
* ignore because there will not be any new releases. * check specific versions or ignore devel versions.
66 lines
2.3 KiB
Makefile
66 lines
2.3 KiB
Makefile
# Created by: Pawel Worach <pawel.worach@gmail.com>
|
|
# $FreeBSD$
|
|
# $MCom: ports/trunk/x11/gnome-shell/Makefile 20036 2014-11-03 08:23:27Z kwm $
|
|
|
|
PORTNAME= gnome-shell
|
|
PORTVERSION= 3.14.3
|
|
CATEGORIES= x11 gnome
|
|
MASTER_SITES= GNOME
|
|
DIST_SUBDIR= gnome3
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Next generation GNOME desktop shell
|
|
|
|
BUILD_DEPENDS= ca_root_nss>=0:${PORTSDIR}/security/ca_root_nss \
|
|
gnome-control-center:${PORTSDIR}/sysutils/gnome-control-center
|
|
LIB_DEPENDS= libstartup-notification-1.so:${PORTSDIR}/x11/startup-notification \
|
|
libcaribou.so:${PORTSDIR}/accessibility/caribou \
|
|
libmutter.so:${PORTSDIR}/x11-wm/mutter \
|
|
libgnome-keyring.so:${PORTSDIR}/security/libgnome-keyring \
|
|
libgcr-3.so:${PORTSDIR}/security/gcr \
|
|
libtelepathy-glib.so:${PORTSDIR}/net-im/telepathy-glib \
|
|
libtelepathy-logger.so:${PORTSDIR}/net-im/telepathy-logger \
|
|
libfolks.so:${PORTSDIR}/net-im/folks \
|
|
libibus-1.0.so:${PORTSDIR}/textproc/ibus \
|
|
libpulse.so:${PORTSDIR}/audio/pulseaudio \
|
|
libcroco-0.6.so:${PORTSDIR}/textproc/libcroco \
|
|
libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \
|
|
libclutter-1.0.so:${PORTSDIR}/graphics/clutter \
|
|
libgjs.so:${PORTSDIR}/lang/gjs
|
|
RUN_DEPENDS= py*-dbus>=0:${PORTSDIR}/devel/py-dbus \
|
|
gdm>=0:${PORTSDIR}/x11/gdm \
|
|
gnome-control-center:${PORTSDIR}/sysutils/gnome-control-center \
|
|
ca_root_nss>=0:${PORTSDIR}/security/ca_root_nss
|
|
|
|
PORTSCOUT= limitw:1,even
|
|
|
|
USES= compiler:c11 gettext gmake libtool pathfix pkgconfig \
|
|
tar:xz webplugin:native
|
|
USE_GNOME= evolutiondataserver3 gnomedesktop3 gnomeprefix \
|
|
gtk30 intlhack introspection
|
|
USE_XORG= x11 xfixes sm
|
|
USE_GSTREAMER1= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
WEBPLUGIN_DIR= ${PREFIX}/lib/
|
|
WEBPLUGIN_FILES=libgnome-shell-browser-plugin.so
|
|
CONFIGURE_ARGS+=--enable-compile-warnings=no \
|
|
--with-ca-certificates=${LOCALBASE}/share/certs/ca-root-nss.crt
|
|
CONFIGURE_ENV+= BROWSER_PLUGIN_DIR=${PREFIX}/lib/
|
|
CPPFLAGS+= -I${LOCALASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
INSTALL_TARGET= install-strip
|
|
|
|
GLIB_SCHEMAS= org.gnome.shell.gschema.xml
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|applications.menu|gnome-applications.menu|g' \
|
|
${WRKSRC}/src/shell-app-system.c
|
|
@${REINPLACE_CMD} -e 's|\-DG_DISABLE_DEPRECATED||g' \
|
|
${WRKSRC}/src/Makefile.in \
|
|
${WRKSRC}/browser-plugin/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|libnm-glib libnm-util ||g' \
|
|
${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|