On Sun May 07, 2017 at 10:14:55PM +0100, Stuart Henderson wrote: > On 2017/05/07 22:37, Rafael Sadowski wrote: > > On Sun Apr 30, 2017 at 12:08:47PM +0100, Stuart Henderson wrote: > > > On 2017/04/29 23:14, Rafael Sadowski wrote: > > > > is there any good reason to not update libgd? Here are eight good > > > > reasons for a update: > > > > > > No reason not to update it. Quite a few things depend on it though, > > > so testing is a bit annoying, which might explain why it's old. > > > > > > > -WANTLIB += c expat fontconfig freetype iconv jpeg m png pthread > > > > -WANTLIB += pthread-stubs ${LIBCXX} tiff vpx z > > > > +#WANTLIB += c expat fontconfig freetype iconv jpeg m png pthread > > > > +#WANTLIB += pthread-stubs ${LIBCXX} tiff vpx z > > > > > > er? > > > > > > > LIB_DEPENDS= converters/libiconv \ > > > > graphics/jpeg \ > > > > graphics/png \ > > > > - graphics/tiff \ > > > > - multimedia/libvpx > > > > + graphics/tiff > > > > > > Need to make sure that dropping libvpx doesn't cause problems in > > > dependent ports. > > > > > > Didn't they change from libvpx to libwebp rather than dropping webp > > > support completely? > > > > Please find an new diff with libwebp support from Brad Smith. > > > > The following ports are affected (diff see below): > > > > cad/pcb > > graphics/libgphoto2 > > net/amule > > net/rtg > > print/texlive/base > > sysutils/modlogan > > www/analog > > > > Unaffected: > > > > emulators/fceux > > mail/rspamd > > math/plplot > > net/mldonkey > > net/nagios/nagios > > sysutils/nut > > www/rt > > www/webalizer > > These lists don't match the diff; www/analog isn't in the diff, > net/mldonkey is in the diff but listed as unaffected, and > math/graphviz is in the diff but not listed above at all.
Everything too rash! Now, with more structure! > > (For a commit which touches ports all over the tree, you should > list the directories on the command line rather than letting cvs > iterate over the whole lot, so you want the list to be correct :) ACK; > > Apart from the extra whitespace in the WANTLIB line for graphviz, > what's in the diff looks correct, but there are some other ports > which I think may be affected too - are you sure that you don't > need changes for libpst, cvsgraph, eduke32, mscgen, p5-GD, > gnuplot, gstreamer1-plugins-good? Now, hopefully complete. Affected: net/amule/ devel/cvsgraph/ math/gnuplot/ math/graphviz/ graphics/libgphoto2/ converters/libpst/ net/mldonkey/ sysutils/modlogan/ graphics/mscgen/ graphics/p5-GD/ cad/pcb/ net/rtg/ print/texlive/base Unaffected: emulators/fceux/ games/eduke32/ graphics/ansilove/ graphics/fswebcam/ graphics/luagd/ graphics/py-gd/ mail/rspamd/ math/plplot/ multimedia/gstreamer1/ (tested but there is no gd) net/icinga/core net/nagios/nagios net/pfstat/ net/vnstat sysutils/apcupsd/ sysutils/nut/ www/analog/ www/nginx/ www/rt/ www/sarg/ www/webalizer Index: Makefile =================================================================== RCS file: /cvs/ports/net/amule/Makefile,v retrieving revision 1.58 diff -u -p -u -p -r1.58 Makefile --- Makefile 10 Apr 2017 11:46:23 -0000 1.58 +++ Makefile 7 May 2017 19:44:56 -0000 @@ -6,7 +6,7 @@ COMMENT-daemon =stand-alone daemon/cmdli V = 2.3.2 DISTNAME = aMule-$V -REVISION = 1 +REVISION = 2 CATEGORIES = net HOMEPAGE = http://www.amule.org/ @@ -52,7 +52,7 @@ RUN_DEPENDS-main = ${RUN_DEPENDS} \ commonWANTLIB = c ixml m pthread ${LIBCXX} threadutil upnp \ wx_base wx_base_net z WANTLIB-main = ${WANTLIB} ${commonWANTLIB} \ - GeoIP X11 cryptopp fontconfig tiff vpx \ + GeoIP X11 cryptopp fontconfig tiff webp \ freetype gd jpeg png wx_gtk2_adv wx_gtk2_core WANTLIB-daemon = ${WANTLIB} ${commonWANTLIB} \ cryptopp readline termcap Index: Makefile =================================================================== RCS file: /cvs/ports/devel/cvsgraph/Makefile,v retrieving revision 1.21 diff -u -p -u -p -r1.21 Makefile --- Makefile 13 Sep 2016 14:40:29 -0000 1.21 +++ Makefile 8 May 2017 19:57:24 -0000 @@ -5,11 +5,12 @@ COMMENT= graphical representation of CV DISTNAME= cvsgraph-1.7.0 CATEGORIES= devel HOMEPAGE= http://www.akhphd.au.dk/~bertho/cvsgraph +REVISION= 0 # GPLv2+ PERMIT_PACKAGE_CDROM= Yes -WANTLIB += c fontconfig freetype gd iconv jpeg m png pthread tiff vpx +WANTLIB += c fontconfig freetype gd iconv jpeg m png pthread tiff webp WANTLIB += z MASTER_SITES= ${HOMEPAGE}/release/ Index: Makefile =================================================================== RCS file: /home/cvs/ports/graphics/gd/Makefile,v retrieving revision 1.70 diff -u -p -u -p -r1.70 Makefile --- Makefile 10 Apr 2017 11:46:20 -0000 1.70 +++ Makefile 30 Apr 2017 03:45:05 -0000 @@ -2,12 +2,11 @@ COMMENT= library for dynamic creation of images -V= 2.1.1 -REVISION= 3 +V= 2.2.4 DISTNAME= libgd-$V PKGNAME= gd-$V -SHARED_LIBS += gd 21.1 # 3.0 +SHARED_LIBS += gd 22.0 # 3.0 CATEGORIES= graphics @@ -16,17 +15,17 @@ HOMEPAGE= http://www.libgd.org/ PERMIT_PACKAGE_CDROM= Yes WANTLIB += c expat fontconfig freetype iconv jpeg m png pthread -WANTLIB += pthread-stubs ${LIBCXX} tiff vpx z +WANTLIB += pthread-stubs ${LIBCXX} tiff webp z -MASTER_SITES= https://bitbucket.org/libgd/gd-libgd/downloads/ +MASTER_SITES= https://github.com/libgd/libgd/releases/download/${PKGNAME}/ CONFIGURE_STYLE= gnu CONFIGURE_ARGS+= --without-xpm LIB_DEPENDS= converters/libiconv \ graphics/jpeg \ + graphics/libwebp \ graphics/png \ - graphics/tiff \ - multimedia/libvpx + graphics/tiff .include <bsd.port.mk> Index: distinfo =================================================================== RCS file: /home/cvs/ports/graphics/gd/distinfo,v retrieving revision 1.8 diff -u -p -u -p -r1.8 distinfo --- distinfo 14 Nov 2015 12:41:53 -0000 1.8 +++ distinfo 30 Apr 2017 03:36:39 -0000 @@ -1,2 +1,2 @@ -SHA256 (libgd-2.1.1.tar.gz) = z0e85aTExtx3uo0DSdHuyc7/d+2G8UskmgeAt/GFVMU= -SIZE (libgd-2.1.1.tar.gz) = 2390586 +SHA256 (libgd-2.2.4.tar.gz) = SHplCqYUIX7QirG9GqXSgvnTec/ZXHVq7QtDQGOBvmU= +SIZE (libgd-2.2.4.tar.gz) = 3013928 Index: patches/patch-src_gd_crop_c =================================================================== RCS file: patches/patch-src_gd_crop_c diff -N patches/patch-src_gd_crop_c --- patches/patch-src_gd_crop_c 30 Jun 2016 13:27:42 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,19 +0,0 @@ -$OpenBSD: patch-src_gd_crop_c,v 1.1 2016/06/30 13:27:42 jasper Exp $ - -CVE-2016-6128 -https://bugs.php.net/bug.php?id=72494 -https://github.com/libgd/libgd/compare/3fe0a7128bac5000fdcfab888bd2a75ec0c9447d...fd623025505e87bba7ec8555eeb72dae4fb0afd - ---- src/gd_crop.c.orig Thu Jun 30 15:23:49 2016 -+++ src/gd_crop.c Thu Jun 30 15:24:14 2016 -@@ -136,6 +136,10 @@ BGD_DECLARE(gdImagePtr) gdImageCropThreshold(gdImagePt - return NULL; - } - -+ if (!gdImageTrueColor(im) && color >= gdImageColorsTotal(im)) { -+ return NULL; -+ } -+ - /* TODO: Add gdImageGetRowPtr and works with ptr at the row level - * for the true color and palette images - * new formats will simply work with ptr Index: patches/patch-src_gd_gd2_c =================================================================== RCS file: patches/patch-src_gd_gd2_c diff -N patches/patch-src_gd_gd2_c --- patches/patch-src_gd_gd2_c 9 May 2016 06:29:18 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,15 +0,0 @@ -$OpenBSD: patch-src_gd_gd2_c,v 1.1 2016/05/09 06:29:18 ajacoutot Exp $ - -gd2: handle corrupt images better (CVE-2016-3074) - ---- src/gd_gd2.c.orig Sun May 8 23:50:58 2016 -+++ src/gd_gd2.c Sun May 8 23:52:14 2016 -@@ -167,6 +167,8 @@ _gd2GetHeader (gdIOCtxPtr in, int *sx, int *sy, - if (gdGetInt (&cidx[i].size, in) != 1) { - goto fail2; - }; -+ if (cidx[i].offset < 0 || cidx[i].size < 0) -+ goto fail2; - }; - *chunkIdx = cidx; - }; Index: patches/patch-src_gd_gif_out_c =================================================================== RCS file: patches/patch-src_gd_gif_out_c diff -N patches/patch-src_gd_gif_out_c --- patches/patch-src_gd_gif_out_c 6 Jul 2016 08:46:01 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,41 +0,0 @@ -$OpenBSD: patch-src_gd_gif_out_c,v 1.1 2016/07/06 08:46:01 jasper Exp $ - -CVE-2016-6161 -https://github.com/libgd/libgd/commit/82b80dcb70a7ca8986125ff412bceddafc896842 - ---- src/gd_gif_out.c.orig Tue Jan 6 10:16:03 2015 -+++ src/gd_gif_out.c Wed Jul 6 10:43:57 2016 -@@ -1442,15 +1442,23 @@ nomatch: - * code in turn. When the buffer fills up empty it and start over. - */ - --static unsigned long masks[] = { -+static const unsigned long masks[] = { - 0x0000, 0x0001, 0x0003, 0x0007, 0x000F, - 0x001F, 0x003F, 0x007F, 0x00FF, - 0x01FF, 0x03FF, 0x07FF, 0x0FFF, - 0x1FFF, 0x3FFF, 0x7FFF, 0xFFFF - }; - -+/* Arbitrary value to mark output is done. When we see EOFCode, then we don't -+ * expect to see any more data. If we do (e.g. corrupt image inputs), cur_bits -+ * might be negative, so flag it to return early. -+ */ -+#define CUR_BITS_FINISHED -1000 -+ - static void output(code_int code, GifCtx *ctx) - { -+ if (ctx->cur_bits == CUR_BITS_FINISHED) -+ return; - ctx->cur_accum &= masks[ctx->cur_bits]; - - if(ctx->cur_bits > 0) { -@@ -1492,6 +1500,8 @@ static void output(code_int code, GifCtx *ctx) - ctx->cur_accum >>= 8; - ctx->cur_bits -= 8; - } -+ /* Flag that it's done to prevent re-entry. */ -+ ctx->cur_bits = CUR_BITS_FINISHED; - - flush_char(ctx); - } Index: patches/patch-src_webpimg_c =================================================================== RCS file: patches/patch-src_webpimg_c diff -N patches/patch-src_webpimg_c --- patches/patch-src_webpimg_c 18 Apr 2015 09:16:36 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,28 +0,0 @@ -$OpenBSD: patch-src_webpimg_c,v 1.1 2015/04/18 09:16:36 sthen Exp $ - -Fix the build with newer libvpx. - ---- src/webpimg.c.orig Sun Apr 12 19:49:36 2015 -+++ src/webpimg.c Sun Apr 12 19:50:47 2015 -@@ -711,14 +711,14 @@ static WebPResult VPXEncode(const uint8* Y, - codec_ctl(&enc, VP8E_SET_STATIC_THRESHOLD, 0); - codec_ctl(&enc, VP8E_SET_TOKEN_PARTITIONS, 2); - -- vpx_img_wrap(&img, IMG_FMT_I420, -+ vpx_img_wrap(&img, VPX_IMG_FMT_I420, - y_width, y_height, 16, (uint8*)(Y)); -- img.planes[PLANE_Y] = (uint8*)(Y); -- img.planes[PLANE_U] = (uint8*)(U); -- img.planes[PLANE_V] = (uint8*)(V); -- img.stride[PLANE_Y] = y_stride; -- img.stride[PLANE_U] = uv_stride; -- img.stride[PLANE_V] = uv_stride; -+ img.planes[VPX_PLANE_Y] = (uint8*)(Y); -+ img.planes[VPX_PLANE_U] = (uint8*)(U); -+ img.planes[VPX_PLANE_V] = (uint8*)(V); -+ img.stride[VPX_PLANE_Y] = y_stride; -+ img.stride[VPX_PLANE_U] = uv_stride; -+ img.stride[VPX_PLANE_V] = uv_stride; - - res = vpx_codec_encode(&enc, &img, 0, 1, 0, VPX_DL_BEST_QUALITY); - Index: Makefile =================================================================== RCS file: /cvs/ports/math/gnuplot/Makefile,v retrieving revision 1.62 diff -u -p -u -p -r1.62 Makefile --- Makefile 10 Apr 2017 11:46:22 -0000 1.62 +++ Makefile 8 May 2017 20:08:04 -0000 @@ -4,7 +4,7 @@ COMMENT = command-driven interactive fun V = 4.6 PATCHLEVEL = 6 -REVISION = 0 +REVISION = 1 DISTNAME = gnuplot-${V}.${PATCHLEVEL} CATEGORIES = math graphics MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=gnuplot/} @@ -46,7 +46,7 @@ CONFIGURE_ARGS += --without-x \ --without-gd .else LIB_DEPENDS += converters/libiconv graphics/gd -WANTLIB += X11 fontconfig freetype gd iconv jpeg png tiff vpx +WANTLIB += X11 fontconfig freetype gd iconv jpeg png tiff webp CONFIGURE_ARGS += --with-x .endif Index: Makefile =================================================================== RCS file: /cvs/ports/math/graphviz/Makefile,v retrieving revision 1.67 diff -u -p -u -p -r1.67 Makefile --- Makefile 10 Apr 2017 11:46:22 -0000 1.67 +++ Makefile 7 May 2017 21:26:02 -0000 @@ -3,7 +3,7 @@ COMMENT-main= graph drawing software DISTNAME= graphviz-2.36.0 -REVISION= 7 +REVISION= 8 PKGNAME-main= ${DISTNAME} CATEGORIES= math devel graphics @@ -54,7 +54,7 @@ WANTLIB += gmodule-2.0 gmp gobject-2.0 g WANTLIB += guile harfbuzz jpeg lcms2 ltdl lzma m openjp2 pango-1.0 WANTLIB += pangocairo-1.0 pangoft2-1.0 pcre perl pixman-1 png WANTLIB += poppler poppler-glib pthread pthread-stubs rsvg-2 ${LIBCXX} -WANTLIB += tiff tk85 util vpx xcb xcb-render xcb-shm xml2 z +WANTLIB += tiff tk85 util webp xcb xcb-render xcb-shm xml2 z MODULES= devel/gettext \ x11/tk \ Index: Makefile =================================================================== RCS file: /cvs/ports/graphics/libgphoto2/Makefile,v retrieving revision 1.49 diff -u -p -u -p -r1.49 Makefile --- Makefile 10 Apr 2017 18:11:03 -0000 1.49 +++ Makefile 7 May 2017 19:43:47 -0000 @@ -5,6 +5,7 @@ COMMENT= digital camera library VERSION= 2.5.13 DISTNAME= libgphoto2-${VERSION} PKGNAME= libgphoto-${VERSION} +REVISION= 0 GPHOTO2_PORT_API= 0.12.0 SUBST_VARS= GPHOTO2_PORT_API VERSION @@ -23,7 +24,7 @@ PERMIT_PACKAGE_CDROM= Yes WANTLIB += c exif expat fontconfig freetype gd iconv intl jpeg WANTLIB += ltdl lzma m png pthread pthread-stubs tiff usb usb-1.0 -WANTLIB += vpx xml2 z +WANTLIB += webp xml2 z MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gphoto/} Index: Makefile =================================================================== RCS file: /cvs/ports/converters/libpst/Makefile,v retrieving revision 1.48 diff -u -p -u -p -r1.48 Makefile --- Makefile 10 Apr 2017 11:45:24 -0000 1.48 +++ Makefile 8 May 2017 19:54:16 -0000 @@ -11,6 +11,7 @@ SHARED_LIBS += pst 3.0 PKGNAME-main= ${DISTNAME} PKGNAME-python= py-${DISTNAME} +REVISION-main= 0 CATEGORIES= converters mail @@ -26,7 +27,7 @@ cWANTLIB += m pthread ${LIBCXX} WANTLIB-main += ${cWANTLIB} iconv intl WANTLIB-main += bz2 c expat ffi fontconfig freetype gd gio-2.0 WANTLIB-main += glib-2.0 gmodule-2.0 gobject-2.0 gsf-1 jpeg pcre png -WANTLIB-main += pthread-stubs tiff vpx xml2 z m pthread ${LIBCXX} lzma +WANTLIB-main += pthread-stubs tiff webp xml2 z m pthread ${LIBCXX} lzma WANTLIB-python += ${cWANTLIB} iconv WANTLIB-python += pst util boost_python Index: Makefile =================================================================== RCS file: /cvs/ports/net/mldonkey/Makefile,v retrieving revision 1.19 diff -u -p -u -p -r1.19 Makefile --- Makefile 10 Apr 2017 11:46:32 -0000 1.19 +++ Makefile 7 May 2017 20:21:36 -0000 @@ -2,7 +2,7 @@ COMMENT = e-donkey client DISTNAME = mldonkey-3.1.5 -REVISION = 4 +REVISION = 5 CATEGORIES = net HOMEPAGE = http://mldonkey.sourceforge.net/Main_Page @@ -18,7 +18,7 @@ WANTLIB += Xrandr Xrender atk-1.0 bz2 c WANTLIB += freetype gd gdk-x11-2.0 gdk_pixbuf-2.0 gio-2.0 glib-2.0 WANTLIB += gobject-2.0 gtk-x11-2.0 jpeg m magic miniupnpc natpmp WANTLIB += pango-1.0 pangocairo-1.0 pangoft2-1.0 png pthread rsvg-2 -WANTLIB += ${LIBCXX} tiff vpx z +WANTLIB += ${LIBCXX} tiff webp z EXTRACT_SUFX = .tar.bz2 Index: Makefile =================================================================== RCS file: /cvs/ports/sysutils/modlogan/Makefile,v retrieving revision 1.29 diff -u -p -u -p -r1.29 Makefile --- Makefile 27 Mar 2016 20:53:15 -0000 1.29 +++ Makefile 7 May 2017 19:45:52 -0000 @@ -3,7 +3,7 @@ COMMENT= modular log analyzer DISTNAME= modlogan-0.8.13 -REVISION= 7 +REVISION= 8 CATEGORIES= sysutils www HOMEPAGE= http://jan.kneschke.de/projects/modlogan/ @@ -15,8 +15,8 @@ PERMIT_PACKAGE_CDROM= Yes MODULES= devel/gettext -WANTLIB += X11 Xpm adns bz2 c expat fontconfig freetype gd jpeg -WANTLIB += m pcre png pthread-stubs tiff vpx xcb z +WANTLIB += adns bz2 c expat fontconfig freetype gd jpeg m pcre +WANTLIB += png pthread pthread-stubs tiff webp z LIB_DEPENDS= archivers/bzip2 \ devel/pcre \ Index: Makefile =================================================================== RCS file: /cvs/ports/graphics/mscgen/Makefile,v retrieving revision 1.6 diff -u -p -u -p -r1.6 Makefile --- Makefile 13 Sep 2016 15:29:02 -0000 1.6 +++ Makefile 8 May 2017 20:02:13 -0000 @@ -3,7 +3,7 @@ COMMENT= utility to create Message Sequence Charts DISTNAME= mscgen-src-0.20 -REVISION= 1 +REVISION= 2 PKGNAME= ${DISTNAME:S/-src//} CATEGORIES= graphics @@ -15,7 +15,7 @@ PERMIT_PACKAGE_CDROM= Yes MASTER_SITES= ${HOMEPAGE}/software/ -WANTLIB += c fontconfig freetype gd iconv jpeg m png pthread tiff vpx z +WANTLIB += c fontconfig freetype gd iconv jpeg m png pthread tiff webp z LIB_DEPENDS= converters/libiconv \ graphics/gd Index: Makefile =================================================================== RCS file: /cvs/ports/graphics/p5-GD/Makefile,v retrieving revision 1.46 diff -u -p -u -p -r1.46 Makefile --- Makefile 13 Sep 2016 15:29:02 -0000 1.46 +++ Makefile 8 May 2017 20:04:01 -0000 @@ -4,11 +4,12 @@ COMMENT = module to interface with the DISTNAME = GD-2.56 CATEGORIES = graphics +REVISION = 0 # perl PERMIT_PACKAGE_CDROM = Yes -WANTLIB += c fontconfig freetype gd iconv jpeg m perl png tiff vpx z +WANTLIB += c fontconfig freetype gd iconv jpeg m perl png tiff webp z LIB_DEPENDS = converters/libiconv \ graphics/gd Index: Makefile =================================================================== RCS file: /cvs/ports/cad/pcb/Makefile,v retrieving revision 1.33 diff -u -p -u -p -r1.33 Makefile --- Makefile 18 May 2015 11:29:37 -0000 1.33 +++ Makefile 7 May 2017 19:43:11 -0000 @@ -3,7 +3,7 @@ COMMENT= printed circuit board layout tool DISTNAME= pcb-20110918 CATEGORIES= cad -REVISION= 6 +REVISION= 7 HOMEPAGE= http://pcb.gpleda.org/ @@ -15,7 +15,7 @@ WANTLIB += Xi Xinerama Xmu Xrandr Xrende WANTLIB += fontconfig freetype gd gdk-x11-2.0 gdk_pixbuf-2.0 WANTLIB += gdkglext-x11-1.0 gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0 WANTLIB += gtk-x11-2.0 gtkglext-x11-1.0 jpeg m pango-1.0 pangocairo-1.0 -WANTLIB += pangoft2-1.0 pangox-1.0 png pthread tiff vpx z +WANTLIB += pangoft2-1.0 pangox-1.0 png pthread tiff webp z MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pcb/} Index: Makefile =================================================================== RCS file: /cvs/ports/net/rtg/Makefile,v retrieving revision 1.15 diff -u -p -u -p -r1.15 Makefile --- Makefile 13 Sep 2016 16:12:14 -0000 1.15 +++ Makefile 7 May 2017 19:46:02 -0000 @@ -3,7 +3,7 @@ COMMENT = SNMP statistics monitoring system DISTNAME = rtg-0.7.4 -REVISION = 11 +REVISION = 12 CATEGORIES = net MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=rtg/} @@ -15,7 +15,7 @@ MAINTAINER = Stuart Henderson <sthen@op PERMIT_PACKAGE_CDROM = Yes WANTLIB += c crypto fontconfig freetype gd iconv jpeg m mysqlclient_r -WANTLIB += netsnmp png pthread tiff vpx z +WANTLIB += netsnmp png pthread tiff webp z LIB_DEPENDS = converters/libiconv \ net/net-snmp \ Index: Makefile =================================================================== RCS file: /cvs/ports/print/texlive/base/Makefile,v retrieving revision 1.86 diff -u -p -u -p -r1.86 Makefile --- Makefile 10 Apr 2017 11:46:33 -0000 1.86 +++ Makefile 7 May 2017 19:57:18 -0000 @@ -6,7 +6,7 @@ COMMENT = base binaries for TeXLive typ DIST_V_SOURCE = ${V}0521 DISTNAME = texlive-${DIST_V_SOURCE}-source PKGNAME = texlive_base-${V} -REVISION = 0 +REVISION = 1 DISTFILES = ${DISTNAME}${EXTRACT_SUFX} \ texlive-${DIST_V}-extra${EXTRACT_SUFX} @@ -20,7 +20,7 @@ WANTLIB += ICE SM X11 Xau Xaw Xdmcp Xext WANTLIB += c cairo expat fontconfig freetype gd glib-2.0 graphite2 WANTLIB += harfbuzz harfbuzz-icu iconv icudata icui18n icuio icuuc intl WANTLIB += jpeg lcms2 m openjp2 paper pcre pixman-1 png poppler -WANTLIB += potrace pthread pthread-stubs ${LIBCXX} tiff vpx xcb +WANTLIB += potrace pthread pthread-stubs ${LIBCXX} tiff webp xcb WANTLIB += xcb-render xcb-shm z zzip RUN_DEPENDS = print/ghostscript/gnu \