diff options
author | marcus <marcus@FreeBSD.org> | 2006-04-30 08:47:21 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2006-04-30 08:47:21 +0800 |
commit | 7315b1c16ae631c60d787b73475db448b86b7e0b (patch) | |
tree | 0a7edc722d829b9a98914843c0c09d978324e75f /graphics/evince/Makefile | |
parent | e43bffa408ddb90519bcbf271791632a33f25217 (diff) | |
download | freebsd-ports-gnome-7315b1c16ae631c60d787b73475db448b86b7e0b.tar.gz freebsd-ports-gnome-7315b1c16ae631c60d787b73475db448b86b7e0b.tar.zst freebsd-ports-gnome-7315b1c16ae631c60d787b73475db448b86b7e0b.zip |
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 <kysd@po.harenet.ne.jp>
Pascal Hofstee <caelian@gmail.com>
rmgls@wanadoo.fr
tmclaugh
Yuri Pankov <yuri.pankov@gmail.com>
sajd on #freebsd-gnome
ade
ankon on #FreeBSD-Gnome
mux
Pascal Hofstee <caelian@gmail.com>
QuiRK on #freebsd-gnome
Vladimir Timofeev <vovkasm@gmail.com>
Diffstat (limited to 'graphics/evince/Makefile')
-rw-r--r-- | graphics/evince/Makefile | 43 |
1 files changed, 27 insertions, 16 deletions
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 <adamw@FreeBSD.org> # # $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 <bsd.port.pre.mk> @@ -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 |