d129587b5d
The offical GNOME 3.16 release notes can be found at https://help.gnome.org/misc/release-notes/3.16/ Upgrade instructions for port users: Delete the old tracker package with: # pkg delete -f tracker And user port upgrade tool of choice to upgrade. Thanks to Antoine Brodin for running the exp-runs. This release was made possible by the following people: Gustau Perez Ting-Wei_Lan PR: 201980
35 lines
900 B
Makefile
35 lines
900 B
Makefile
# Created by: Martin Wilke <miwi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= clutter
|
|
PORTVERSION= 1.22.4
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= GNOME
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= OpenGL based interactive canvas library
|
|
|
|
LICENSE= LGPL21
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libjson-glib-1.0.so:${PORTSDIR}/devel/json-glib \
|
|
libcogl.so:${PORTSDIR}/graphics/cogl
|
|
|
|
PORTSCOUT= limit:1,even
|
|
|
|
USES= gettext gmake libtool pathfix pkgconfig tar:xz
|
|
USE_GNOME= gtk30 introspection:build
|
|
USE_GL= gl egl
|
|
USE_XORG= glproto x11 xfixes xdamage xcomposite xi
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
CONFIGURE_ARGS= --with-x --enable-conformance=no \
|
|
--enable-egl-backend=yes \
|
|
--enable-x11-backend=yes \
|
|
--enable-gdk-backend=no \
|
|
--enable-wayland-compositor=no
|
|
CPPFLAGS+= -I${LOCALBASE}/include -fno-omit-frame-pointer
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
INSTALL_TARGET= install-strip
|
|
|
|
.include <bsd.port.mk>
|