From owner-freebsd-ports@FreeBSD.ORG Sat Dec 17 09:25:16 2011 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 07908106567B for ; Sat, 17 Dec 2011 09:25:16 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-iy0-f182.google.com (mail-iy0-f182.google.com [209.85.210.182]) by mx1.freebsd.org (Postfix) with ESMTP id C570D8FC12 for ; Sat, 17 Dec 2011 09:25:15 +0000 (UTC) Received: by iadj38 with SMTP id j38so2347787iad.13 for ; Sat, 17 Dec 2011 01:25:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=7oRItUJGiTt8bRkkwhT/bFJ4ra66KuCVaHSNbK2rBW4=; b=CMkj7T3nhqahyFTHO7aXOplQWWf+IdZYs+wrQpGgoVpNpoAQHde6rjXgyL7e7QzW/I TW1B67Z3mQpAwvUTGMgSsuK7puWPLbuuqMCAwJMlQc4iG/K/TEkKK6l8yD3vPRe6YkCD BcWjCuKrT8olxPQdyVLv4UBIKwSMTT6tclfgs= MIME-Version: 1.0 Received: by 10.50.88.163 with SMTP id bh3mr2548067igb.28.1324113915404; Sat, 17 Dec 2011 01:25:15 -0800 (PST) Received: by 10.231.199.18 with HTTP; Sat, 17 Dec 2011 01:25:15 -0800 (PST) Received: by 10.231.199.18 with HTTP; Sat, 17 Dec 2011 01:25:15 -0800 (PST) In-Reply-To: References: Date: Sat, 17 Dec 2011 09:25:15 +0000 Message-ID: From: Chris Rees To: Christer Edwards Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: "freebsd-ports@FreeBSD.org" Subject: Re: RUN_DEPENDS for python based port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Dec 2011 09:25:16 -0000 On 17 Dec 2011 08:23, "Christer Edwards" wrote: > > I've been working on building my first python based port recently and > I'm running into some issue that I'm hoping the list can provide some > tips for. Currently the Makefile looks like this: > > ----- > > # New ports collection makefile for: salt > # Date created: 17 Dec 2011 > # Whom: cedwards > # > # $FreeBSD$ > # > > PORTNAME= salt > PORTVERSION= 0.9.4 > CATEGORIES= sysutils python > MASTER_SITES= https://github.com/downloads/saltstack/salt/ > > MAINTAINER= christer.edwards@gmail.com > COMMENT= Central system and configuration manager > > LIB_DEPENDS= zmq.1:${PORTSDIR}/devel/zmq > > USE_PYTHON= yes > USE_PYDISTUTILS=yes > > RUN_DEPENDS+= > ${PYTHON_SITELIBDIR}/yaml/__init__.py:${PORTSDIR}/devel/py-yaml \ > > ${PYTHON_SITELIBDIR}/zmq/__init__.py}:${PORTSDIR}/devel/py-pyzmq \ > Oops, your mistake is here^^^ Hint: check your curly brackets. Chris