From owner-svn-ports-all@FreeBSD.ORG Tue Jan 28 11:05:32 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 728B5C01; Tue, 28 Jan 2014 11:05:32 +0000 (UTC) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5F337110D; Tue, 28 Jan 2014 11:05:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0SB5WTP031470; Tue, 28 Jan 2014 11:05:32 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0SB5WrA031469; Tue, 28 Jan 2014 11:05:32 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201401281105.s0SB5WrA031469@svn.freebsd.org> From: Kubilay Kocak Date: Tue, 28 Jan 2014 11:05:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341533 - head/devel/py-capstone 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.17 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: Tue, 28 Jan 2014 11:05:32 -0000 Author: koobs Date: Tue Jan 28 11:05:31 2014 New Revision: 341533 URL: http://svnweb.freebsd.org/changeset/ports/341533 QAT: https://qat.redports.org/buildarchive/r341533/ Log: devel/py-capstone: Actually add LIB_DEPENDS on libcapstone capstone will not import without the library installed. This seems obvious in hindsight :) Modified: head/devel/py-capstone/Makefile Modified: head/devel/py-capstone/Makefile ============================================================================== --- head/devel/py-capstone/Makefile Tue Jan 28 10:58:01 2014 (r341532) +++ head/devel/py-capstone/Makefile Tue Jan 28 11:05:31 2014 (r341533) @@ -3,6 +3,7 @@ PORTNAME= capstone PORTVERSION= 2.0 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,6 +14,8 @@ COMMENT= Python bindings for the Capston LICENSE= BSD3CLAUSE +LIB_DEPENDS= libcapstone.so:${PORTSDIR}/devel/capstone + USE_PYTHON= yes USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes