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
54 lines
1.7 KiB
Makefile
54 lines
1.7 KiB
Makefile
# Created by: FreeBSD GNOME Team <gnome@freebsd.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cheese
|
|
PORTVERSION= 3.16.1
|
|
CATEGORIES= multimedia gnome
|
|
MASTER_SITES= GNOME
|
|
DIST_SUBDIR= gnome3
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Photobooth-inspired app for taking pictures and videos from webcam
|
|
|
|
BUILD_DEPENDS= v4l_compat>=0:${PORTSDIR}/multimedia/v4l_compat \
|
|
gnome-video-effects>=0:${PORTSDIR}/graphics/gnome-video-effects \
|
|
vala>=0.14.0:${PORTSDIR}/lang/vala \
|
|
itstool:${PORTSDIR}/textproc/itstool
|
|
LIB_DEPENDS= libcanberra-gtk3.so:${PORTSDIR}/audio/libcanberra-gtk3 \
|
|
libhal.so:${PORTSDIR}/sysutils/hal \
|
|
libclutter-gtk-1.0.so:${PORTSDIR}/graphics/clutter-gtk3 \
|
|
libclutter-gst-2.0.so:${PORTSDIR}/multimedia/clutter-gst
|
|
RUN_DEPENDS= gnome-video-effects>=0:${PORTSDIR}/graphics/gnome-video-effects
|
|
|
|
PORTSCOUT= limitw:1,even
|
|
|
|
USES= gettext gmake libtool pathfix pkgconfig tar:xz
|
|
USE_GNOME= intlhack evolutiondataserver3 librsvg2 \
|
|
gnomedesktop3 libxml2:build introspection:build
|
|
USE_XORG= xxf86vm x11
|
|
USE_GSTREAMER1= bad good jpeg ogg theora v4l2 vorbis vpx
|
|
INSTALLS_ICONS= yes
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include -Wno-format-nonliteral
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
INSTALL_TARGET= install-strip
|
|
|
|
DOCS= AUTHORS COPYING ChangeLog NEWS README
|
|
GLIB_SCHEMAS= org.gnome.Cheese.gschema.xml
|
|
|
|
OPTIONS_DEFINE= MANPAGES
|
|
OPTIONS_DEFAULT=MANPAGES
|
|
|
|
MANPAGES_CONFIGURE_ENABLE= man
|
|
MANPAGES_BUILD_DEPENDS= docbook-xml>=0:${PORTSDIR}/textproc/docbook-xml \
|
|
docbook-xsl>=0:${PORTSDIR}/textproc/docbook-xsl
|
|
MANPAGES_USE= GNOME=libxslt:build
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for i in ${DOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|