From 7315b1c16ae631c60d787b73475db448b86b7e0b Mon Sep 17 00:00:00 2001 From: marcus Date: Sun, 30 Apr 2006 00:47:21 +0000 Subject: Presenting GNOME 2.14.1 for FreeBSD! Checkout http://www.gnome.org/start/2.14/ for the official release notes, and a list of all the gooides in this new release. In particular, GNOME 2.14 focused on performance, and they did not miss the mark. There's some new eye candy, but most of the big things are waiting until GNOME 2.16. On the FreeBSD side, we tried to clean up all the crashers we could. In particular, we really improved GNOME's 64-bit support. The good news is that this release does not bring any big shared library version bumps, so you can almost do a simple portupgrade to get to 2.14. There are a few minor gotchas that will be documented in UPDATING shortly. The FreeBSD GNOME Team would like th thank the following users for their patches, feedback, and sometimes incessant complaing about crashes (you know who you are). Yasuda Keisuke Pascal Hofstee rmgls@wanadoo.fr tmclaugh Yuri Pankov sajd on #freebsd-gnome ade ankon on #FreeBSD-Gnome mux Pascal Hofstee QuiRK on #freebsd-gnome Vladimir Timofeev --- graphics/evince/Makefile | 43 +++++++++++++++++++++++++++---------------- 1 file changed, 27 insertions(+), 16 deletions(-) (limited to 'graphics/evince/Makefile') diff --git a/graphics/evince/Makefile b/graphics/evince/Makefile index cbe79f439a50..5f5693145737 100644 --- a/graphics/evince/Makefile +++ b/graphics/evince/Makefile @@ -3,24 +3,24 @@ # Whom: Adam Weinberger # # $FreeBSD$ -# $MCom: ports/graphics/evince/Makefile,v 1.35 2005/10/20 01:37:54 ahze Exp $ +# $MCom: ports/graphics/evince/Makefile,v 1.50 2006/04/24 00:54:32 ahze Exp $ # PORTNAME= evince -PORTVERSION= 0.4.0 -PORTREVISION= 4 +PORTVERSION= 0.5.2 +PORTREVISION= 2 CATEGORIES= graphics print gnome MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.4 +MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.5 MAINTAINER= gnome@FreeBSD.org COMMENT= GNOME 2 multi-format document viewer -LIB_DEPENDS= poppler.0:${PORTSDIR}/graphics/poppler +LIB_DEPENDS= poppler-glib.1:${PORTSDIR}/graphics/poppler-gtk USE_BZIP2= yes GNU_CONFIGURE= yes -USE_REINPLACE= yes +USE_GETTEXT= yes USE_X_PREFIX= yes USE_GMAKE= yes USE_GHOSTSCRIPT=yes @@ -35,8 +35,9 @@ GCONF_SCHEMAS= evince.schemas evince-thumbnailer.schemas OPTIONS= DVI "Enable DVI viewer support" off \ T1LIB "Enable T1LIB for TYPE1 fonts to DVI (Enables DVI)" off \ NAUTILUS "Enable Nautilus plugin" on \ - DBUS "Enable D-BUS support" off \ - DJVU "Enable DJVU support" off + DBUS "Enable D-BUS support" on \ + COMICS "Enable comic book archives support" off +# DJVU "Enable DJVU support" off .include @@ -73,20 +74,30 @@ DJVU_DIR?= # empty DJVU_DIR?= -nox11 .endif -.if defined(WITH_DJVU) -LIB_DEPENDS+= djvulibre.17:${PORTSDIR}/graphics/djvulibre${DJVU_DIR} -CONFIGURE_ARGS+= --enable-djvu -GCONF_SCHEMAS+= evince-thumbnailer-djvu.schemas -.else +# DJVU is broken, need older version of djvu +#.if defined(WITH_DJVU) +#LIB_DEPENDS+= djvulibre.17:${PORTSDIR}/graphics/djvulibre${DJVU_DIR} +#CONFIGURE_ARGS+= --enable-djvu +#GCONF_SCHEMAS+= evince-thumbnailer-djvu.schemas +#.else CONFIGURE_ARGS+= --disable-djvu -.endif +#.endif -.if defined(WITH_DBUS) +.if !defined(WITHOUT_DBUS) LIB_DEPENDS+= dbus-glib-1.2:${PORTSDIR}/devel/dbus .endif +.if defined(WITH_COMICS) +CONFIGURE_ARGS+= --enable-comics +GCONF_SCHEMAS+= evince-thumbnailer-comics.schemas + +RUN_DEPENDS= unrar:${PORTSDIR}/archivers/unrar \ + unzip:${PORTSDIR}/archivers/unzip +.endif + post-patch: - @${REINPLACE_CMD} -e 's|-lt1lib|-lt1 -lm|' \ + @${REINPLACE_CMD} -e 's|-lt1lib|-lt1 -lm| ; \ + s|execinfo.h|#|g' \ ${WRKSRC}/configure \ ${WRKSRC}/dvi/mdvi-lib/Makefile.in -- cgit