From owner-freebsd-ports@FreeBSD.ORG Thu Jul 17 13:05:00 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF89637B401 for ; Thu, 17 Jul 2003 13:05:00 -0700 (PDT) Received: from mx1.evo6.net (mx1.evo6.net [80.76.194.10]) by mx1.FreeBSD.org (Postfix) with SMTP id 382E643FAF for ; Thu, 17 Jul 2003 13:04:59 -0700 (PDT) (envelope-from andy@mx1.evo6.net) Received: (qmail 83974 invoked by uid 1001); 17 Jul 2003 20:04:57 -0000 Date: Thu, 17 Jul 2003 21:04:57 +0100 From: Andy Gilligan To: sumikawa@freebsd.org Message-ID: <20030717200457.GC79675@vega.evo6.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="pvezYHf7grwyp3Bc" Content-Disposition: inline User-Agent: Mutt/1.4.1i X-Spam-Status: No, hits=-3.0 required=5.0 tests=PATCH_UNIFIED_DIFF,USER_AGENT_MUTT version=2.55-evo6.net X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.55-evo6.net (1.174.2.19-2003-05-19-exp) cc: ports@freebsd.org Subject: net/zebra-pj missing autoheader X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Jul 2003 20:05:01 -0000 --pvezYHf7grwyp3Bc Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline The port net/zebra-pj needs 'autoheader' installed in order to build. This is part of devel/autoconf253, but this is missing from the BUILD_DEPENDS line of the Makefile. Also, the full path to 'automake' isn't necessary. A patch to correct this is attached. Best regards, -Andy --pvezYHf7grwyp3Bc Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: attachment; filename=patch-zebra-pj Index: Makefile =================================================================== RCS file: /data/cvs/freebsd/ports/net/zebra-pj/Makefile,v retrieving revision 1.73 diff -u -r1.73 Makefile --- Makefile 17 Jul 2003 11:36:31 -0000 1.73 +++ Makefile 17 Jul 2003 19:59:07 -0000 @@ -14,7 +14,8 @@ MAINTAINER= sumikawa@FreeBSD.org COMMENT= Patched Zebra -BUILD_DEPENDS= ${LOCALBASE}/bin/automake:${PORTSDIR}/devel/automake +BUILD_DEPENDS= automake:${PORTSDIR}/devel/automake \ + autoheader:${PORTSDIR}/devel/autoconf253 USE_SUBMAKE= yes GNU_CONFIGURE= yes --pvezYHf7grwyp3Bc--