A new version of nomacs has been released. Fix: Use the attached patch for the update. Patch attached with submission follows: How-To-Repeat: -
Responsible Changed From-To: freebsd-ports-bugs->antoine Take
Author: antoine Date: Wed Oct 16 18:37:03 2013 New Revision: 330529 URL: http://svnweb.freebsd.org/changeset/ports/330529 Log: - Update to 1.6.0 - Use new LIB_DEPENDS syntax - Options are already described in bsd.options.desc.mk - Convert to STAGEDIR PR: ports/183011 Submitted by: Jens K. Loewe (maintainer) Modified: head/graphics/nomacs/Makefile head/graphics/nomacs/distinfo head/graphics/nomacs/pkg-plist Modified: head/graphics/nomacs/Makefile ============================================================================== --- head/graphics/nomacs/Makefile Wed Oct 16 18:29:49 2013 (r330528) +++ head/graphics/nomacs/Makefile Wed Oct 16 18:37:03 2013 (r330529) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= nomacs -PORTVERSION= 1.4.0 +PORTVERSION= 1.6.0 CATEGORIES= graphics MASTER_SITES= SF/nomacs/nomacs-${PORTVERSION}/ DISTNAME= ${PORTNAME}-${PORTVERSION}-source @@ -11,8 +11,8 @@ COMMENT= Small, fast and free image view LICENSE= GPLv3 -LIB_DEPENDS= exiv2:${PORTSDIR}/graphics/exiv2 \ - sysinfo:${PORTSDIR}/devel/libsysinfo +LIB_DEPENDS= libexiv2.so:${PORTSDIR}/graphics/exiv2 \ + libsysinfo.so:${PORTSDIR}/devel/libsysinfo USE_BZIP2= yes USES= cmake desktop-file-utils pkgconfig @@ -22,25 +22,21 @@ LDFLAGS+= -lsysinfo -lkvm WRKTOP= ${WRKDIR} WRKSUBDIR= ${DISTNAME:S,-source,,} WRKSRC= ${WRKTOP}/${WRKSUBDIR} -MAN1= nomacs.1 OPTIONS_DEFINE= RAW TIFF OPTIONS_DEFAULT= RAW TIFF -RAW_DESC= RAW images support -TIFF_DESC= Support multi-page TIFF images -NO_STAGE= yes .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MRAW} -LIB_DEPENDS+= raw:${PORTSDIR}/graphics/libraw \ - opencv_legacy:${PORTSDIR}/graphics/opencv +LIB_DEPENDS+= libraw.so:${PORTSDIR}/graphics/libraw \ + libopencv_legacy.so:${PORTSDIR}/graphics/opencv .else CMAKE_ARGS+= -DENABLE_RAW=0 .endif .if ${PORT_OPTIONS:MTIFF} -LIB_DEPENDS+= tiff:${PORTSDIR}/graphics/tiff +LIB_DEPENDS+= libtiff.so:${PORTSDIR}/graphics/tiff .else CMAKE_ARGS+= -DENABLE_TIFF=0 .endif Modified: head/graphics/nomacs/distinfo ============================================================================== --- head/graphics/nomacs/distinfo Wed Oct 16 18:29:49 2013 (r330528) +++ head/graphics/nomacs/distinfo Wed Oct 16 18:37:03 2013 (r330529) @@ -1,2 +1,2 @@ -SHA256 (nomacs-1.4.0-source.tar.bz2) = bf76935d3b0adfca5a9c15e2dd59498e71ddad80bced2c4d545e165119cb97cb -SIZE (nomacs-1.4.0-source.tar.bz2) = 885880 +SHA256 (nomacs-1.6.0-source.tar.bz2) = 39e25542c8cef90578864e2a2e98a8c6723872cddf82f12f17f6caf9b426683d +SIZE (nomacs-1.6.0-source.tar.bz2) = 1169739 Modified: head/graphics/nomacs/pkg-plist ============================================================================== --- head/graphics/nomacs/pkg-plist Wed Oct 16 18:29:49 2013 (r330528) +++ head/graphics/nomacs/pkg-plist Wed Oct 16 18:37:03 2013 (r330529) @@ -1,4 +1,5 @@ bin/nomacs +man/man1/nomacs.1.gz share/applications/nomacs.desktop %%DATADIR%%/translations/nomacs_als.qm %%DATADIR%%/translations/nomacs_az.qm @@ -6,6 +7,7 @@ share/applications/nomacs.desktop %%DATADIR%%/translations/nomacs_de.qm %%DATADIR%%/translations/nomacs_en.qm %%DATADIR%%/translations/nomacs_es.qm +%%DATADIR%%/translations/nomacs_fr.qm %%DATADIR%%/translations/nomacs_it.qm %%DATADIR%%/translations/nomacs_pl.qm %%DATADIR%%/translations/nomacs_pt.qm _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Port updated, thanks!