Index: head/graphics/py-wand/Makefile =================================================================== --- head/graphics/py-wand/Makefile (revision 416292) +++ head/graphics/py-wand/Makefile (revision 416293) @@ -1,25 +1,24 @@ # $FreeBSD$ PORTNAME= Wand -PORTVERSION= 0.4.2 -PORTREVISION= 1 +PORTVERSION= 0.4.3 CATEGORIES= graphics python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= olivierd@FreeBSD.org COMMENT= MagickWand Python binding LICENSE= MIT LIB_DEPENDS= libMagickWand-6.so:graphics/ImageMagick USES= python USE_PYTHON= distutils autoplist NO_ARCH= yes .include PYDISTUTILS_INSTALLARGS+= --install-data ${DATADIR} .include Index: head/graphics/py-wand/distinfo =================================================================== --- head/graphics/py-wand/distinfo (revision 416292) +++ head/graphics/py-wand/distinfo (revision 416293) @@ -1,2 +1,3 @@ -SHA256 (Wand-0.4.2.tar.gz) = a0ded99a9824ddd82617a4b449164e2c5c93853aaff96f9e0bab8b405d62ca7c -SIZE (Wand-0.4.2.tar.gz) = 63720 +TIMESTAMP = 1464905007 +SHA256 (Wand-0.4.3.tar.gz) = 576133476b1970313b4ab69460051dba2563ac125143bc109d6c796f77d9bd57 +SIZE (Wand-0.4.3.tar.gz) = 65381 Index: head/graphics/py-wand/files/patch-wand_api.py =================================================================== --- head/graphics/py-wand/files/patch-wand_api.py (revision 416292) +++ head/graphics/py-wand/files/patch-wand_api.py (revision 416293) @@ -1,22 +1,22 @@ ---- wand/api.py.orig 2015-11-29 19:02:15 UTC +--- wand/api.py.orig 2016-05-31 16:40:51 UTC +++ wand/api.py -@@ -179,8 +179,8 @@ try: +@@ -180,8 +180,8 @@ try: libraries = load_library() except (OSError, IOError): msg = 'http://docs.wand-py.org/en/latest/guide/install.html' - if sys.platform.startswith('freebsd'): - msg = 'pkg_add -r' + if sys.platform.startswith('dragonfly') or sys.platform.startswith('freebsd'): + msg = 'pkg install' elif sys.platform == 'win32': msg += '#install-imagemagick-on-windows' elif sys.platform == 'darwin': -@@ -1390,7 +1390,7 @@ if platform.system() == 'Windows': - else: - if platform.system() == 'Darwin': - libc = ctypes.cdll.LoadLibrary('libc.dylib') +@@ -1418,7 +1418,7 @@ else: + except OSError: + # In case of El Capitan SIP + libc = ctypes.cdll.LoadLibrary('/usr/lib/libc.dylib') - elif platform.system() == 'FreeBSD': + elif sys.platform.startswith('dragonfly') or sys.platform.startswith('freebsd'): libc = ctypes.cdll.LoadLibrary(ctypes.util.find_library('c')) else: libc = ctypes.cdll.LoadLibrary('libc.so.6')