From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 21 11:20:28 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4D0616A4CE for ; Sat, 21 Aug 2004 11:20:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA70D43D46 for ; Sat, 21 Aug 2004 11:20:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i7LBKP6X002827 for ; Sat, 21 Aug 2004 11:20:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7LBKP9r002826; Sat, 21 Aug 2004 11:20:25 GMT (envelope-from gnats) Date: Sat, 21 Aug 2004 11:20:25 GMT Message-Id: <200408211120.i7LBKP9r002826@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sergey Matveychuk Subject: Re: ports/62979: New Port: devel/p5-Config-Objective Perl Object config file X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Sergey Matveychuk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Aug 2004 11:20:29 -0000 The following reply was made to PR ports/62979; it has been noted by GNATS. From: Sergey Matveychuk To: freebsd-gnats-submit@FreeBSD.org, pirzyk@uiuc.edu Cc: Subject: Re: ports/62979: New Port: devel/p5-Config-Objective Perl Object config file Date: Sat, 21 Aug 2004 15:20:20 +0400 It's a wrong using of BUILD_DEPENDS (and as result - RUN_DEPENDS). As described in bsd.port.mk: # BUILD_DEPENDS - A list of "path:dir[:target]" tuples of other ports this # package depends to build (between the "extract" and # "build" stages, inclusive). The test done to # determine the existence of the dependency is the # same as FETCH_DEPENDS. If the third field ("target") You must specify path:dir for every dependencies. The dependencies split by space, new line etc. So, the right using is: BUILD_DEPENDS= ${SITE_PERL}/Parse/Yapp.pm:${PORTSDIR}/devel/p5-Parse-Yapp \ ${SITE_PERL}/Parse/Lex.pm:${PORTSDIR}/devel/p5-ParseLex And you sould not use spaces where tabs possible. -- Sem.