1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-23 09:10:43 +00:00
freebsd-ports/graphics/evince/Makefile
Koop Mast d129587b5d The FreeBSD GNOME team proudly presents GNOME 3.16 for FreeBSD.
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
2015-08-05 19:13:24 +00:00

143 lines
3.7 KiB
Makefile

# Created by: Adam Weinberger <adamw@FreeBSD.org>
# $FreeBSD$
PORTNAME= evince
PORTVERSION= 3.16.1
PORTREVISION?= 1
CATEGORIES= graphics print gnome
MASTER_SITES= GNOME
DIST_SUBDIR= gnome3
MAINTAINER= gnome@FreeBSD.org
COMMENT?= GNOME 3 multi-format document viewer
BUILD_DEPENDS= gnome-icon-theme>=0:${PORTSDIR}/misc/gnome-icon-theme \
itstool:${PORTSDIR}/textproc/itstool \
adwaita-icon-theme>=0:${PORTSDIR}/x11-themes/adwaita-icon-theme \
gsettings-desktop-schemas>=0:${PORTSDIR}/devel/gsettings-desktop-schemas
LIB_DEPENDS= libpoppler-glib.so:${PORTSDIR}/graphics/poppler-glib \
libspectre.so:${PORTSDIR}/print/libspectre
RUN_DEPENDS= gnome-icon-theme>=0:${PORTSDIR}/misc/gnome-icon-theme \
adwaita-icon-theme>=0:${PORTSDIR}/x11-themes/adwaita-icon-theme \
gsettings-desktop-schemas>=0:${PORTSDIR}/devel/gsettings-desktop-schemas
PORTSCOUT= limitw:1,even
SLAVEPORT?= no
USES= compiler:c++11-lib desktop-file-utils gettext gmake libtool \
pathfix pkgconfig tar:xz
USE_GNOME= gtk30 intlhack
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
USE_XORG= ice
INSTALLS_ICONS= yes
CPPFLAGS+= -I${LOCALBASE}/include -Wno-format-nonliteral
LIBS+= -L${LOCALBASE}/lib
INSTALL_TARGET= install-strip
.if ${SLAVEPORT} == lite
CONFIGURE_ARGS+=--disable-introspection \
--disable-libgnome-desktop \
--disable-thumbnailer \
--disable-previewer
.else
USE_GNOME+= introspection:build
CONFIGURE_ARGS+= --enable-introspection
.endif
GLIB_SCHEMAS= org.gnome.Evince.gschema.xml
PLIST_SUB= VERSION=3.0
OPTIONS_DEFINE= COMICS DJVU DVI KEYRING NAUTILUS T1LIB XPS
OPTIONS_DEFAULT=COMICS KEYRING NAUTILUS XPS
DVI_DESC= DVI viewer support
T1LIB_DESC= T1LIB for TYPE1 fonts to DVI (Enables DVI)
NAUTILUS_DESC= Nautilus plugin
KEYRING_DESC= Keyring support
COMICS_DESC= Comic book archives support
DJVU_DESC= DJVU support
XPS_DESC= XPS support
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:NDBUS} && ${SLAVEPORT} == lite
CONFIGURE_ARGS+=--disable-dbus
.else
CONFIGURE_ARGS+=--enable-dbus
.endif
.if ${OSVERSION} < 900000
BROKEN= Fails to build
.endif
.if ${PORT_OPTIONS:MDVI} || ${PORT_OPTIONS:MT1LIB}
USE_TEX= latex
CONFIGURE_ARGS+= --enable-dvi
PLIST_SUB+= DVI=""
. if ${PORT_OPTIONS:MT1LIB}
LIB_DEPENDS+= libt1.so:${PORTSDIR}/devel/t1lib
CONFIGURE_ARGS+= --enable-t1lib
. else
CONFIGURE_ARGS+= --disable-t1lib
. endif
.else
CONFIGURE_ARGS+= --disable-dvi
PLIST_SUB+= DVI="@comment "
.endif
.if ${PORT_OPTIONS:MKEYRING}
LIB_DEPENDS+= libsecret-1.so:${PORTSDIR}/security/libsecret
.else
CONFIGURE_ARGS+=--without-keyring
.endif
.if ${PORT_OPTIONS:MNAUTILUS}
USE_GNOME+= nautilus3
CONFIGURE_ARGS+= --enable-nautilus
PLIST_SUB+= NAUTILUS=""
.else
BUILD_DEPENDS+= ${LOCALBASE}/share/icons/gnome/index.theme:${PORTSDIR}/misc/gnome-icon-theme
RUN_DEPENDS+= ${LOCALBASE}/share/icons/gnome/index.theme:${PORTSDIR}/misc/gnome-icon-theme
CONFIGURE_ARGS+= --disable-nautilus
PLIST_SUB+= NAUTILUS="@comment "
.endif
.if ${PORT_OPTIONS:MXPS}
LIB_DEPENDS+= libgxps.so:${PORTSDIR}/graphics/libgxps
CONFIGURE_ARGS+= --enable-xps
PLIST_SUB+= XPS=""
.else
CONFIGURE_ARGS+= --disable-xps
PLIST_SUB+= XPS="@comment "
.endif
.if ${PORT_OPTIONS:MDJVU}
LIB_DEPENDS+= libdjvulibre.so:${PORTSDIR}/graphics/djvulibre
CONFIGURE_ARGS+= --enable-djvu
PLIST_SUB+= DJVU=""
.else
CONFIGURE_ARGS+= --disable-djvu
PLIST_SUB+= DJVU="@comment "
.endif
.if ${PORT_OPTIONS:MCOMICS}
CONFIGURE_ARGS+= --enable-comics
PLIST_SUB+= COMICS=""
.else
CONFIGURE_ARGS+= --disable-comics
PLIST_SUB+= COMICS="@comment "
.endif
post-patch:
@${REINPLACE_CMD} -e 's|execinfo.h|#|g' \
-e 's|" == "|" = "|g' \
-e 's|-Werror||g' \
${WRKSRC}/configure
@${REINPLACE_CMD} -e '/^DOC_MODULE_VERSION/d' \
${WRKSRC}/help/reference/libdocument/Makefile.in \
${WRKSRC}/help/reference/libview/Makefile.in
.include <bsd.port.mk>