From owner-svn-ports-all@freebsd.org Thu Jun 25 19:44:37 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2671998CE58; Thu, 25 Jun 2015 19:44:37 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 176451FE6; Thu, 25 Jun 2015 19:44:37 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PJiakH084067; Thu, 25 Jun 2015 19:44:36 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5PJiaam084066; Thu, 25 Jun 2015 19:44:36 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201506251944.t5PJiaam084066@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Thu, 25 Jun 2015 19:44:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390594 - head/devel/py-libzfs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 19:44:37 -0000 Author: wg Date: Thu Jun 25 19:44:36 2015 New Revision: 390594 URL: https://svnweb.freebsd.org/changeset/ports/390594 Log: devel/py-libzfs: add missing run dependency Reported by: rm Modified: head/devel/py-libzfs/Makefile Modified: head/devel/py-libzfs/Makefile ============================================================================== --- head/devel/py-libzfs/Makefile Thu Jun 25 19:41:27 2015 (r390593) +++ head/devel/py-libzfs/Makefile Thu Jun 25 19:44:36 2015 (r390594) @@ -3,6 +3,7 @@ PORTNAME= libzfs PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -25,6 +26,10 @@ MAKE_ENV= FREEBSD_SRC=${SRC_BASE} .include +.if ${PYTHON_REL} < 3400 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}enum34>0:${PORTSDIR}/devel/py-enum34 +.endif + .if !exists(${SRC_BASE}/sys/Makefile) IGNORE= requires kernel source files in ${SRC_BASE} .endif