From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 23 15:20:08 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5DBC1106566C for ; Fri, 23 Sep 2011 15:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 389F68FC19 for ; Fri, 23 Sep 2011 15:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p8NFK8Yk058811 for ; Fri, 23 Sep 2011 15:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p8NFK8nS058810; Fri, 23 Sep 2011 15:20:08 GMT (envelope-from gnats) Resent-Date: Fri, 23 Sep 2011 15:20:08 GMT Resent-Message-Id: <201109231520.p8NFK8nS058810@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Grzegorz Blach" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF802106566C for ; Fri, 23 Sep 2011 15:19:05 +0000 (UTC) (envelope-from magik@roorback.net) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 6CD0D8FC1A for ; Fri, 23 Sep 2011 15:19:04 +0000 (UTC) Received: by fxg9 with SMTP id 9so5079100fxg.13 for ; Fri, 23 Sep 2011 08:19:03 -0700 (PDT) Received: by 10.223.34.70 with SMTP id k6mr5207039fad.31.1316791095476; Fri, 23 Sep 2011 08:18:15 -0700 (PDT) Received: from silver.nine (user-109-243-225-54.play-internet.pl. [109.243.225.54]) by mx.google.com with ESMTPS id f25sm11387447faf.7.2011.09.23.08.18.09 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 23 Sep 2011 08:18:14 -0700 (PDT) Message-Id: <1316791092.25844@silver.nine> Date: Fri, 23 Sep 2011 17:18:12 +0200 From: "Grzegorz Blach" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.9 Cc: Subject: ports/160942: devel/ninja: Fixed PORTDOCS list - make port installable X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Sep 2011 15:20:08 -0000 >Number: 160942 >Category: ports >Synopsis: devel/ninja: Fixed PORTDOCS list - make port installable >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Sep 23 15:20:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Grzegorz Blach >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD 8.2-STABLE #13 r225147: Wed Aug 24 20:20:58 CEST 2011 magik@silver.nine:/usr/obj/usr/src/sys/SILVER >Description: Currently devel/ninja can't be installed because `make install` generate this error message: ===> Installing for ninja-20110922 ===> ninja-20110922 depends on file: /usr/local/bin/python2.7 - found ===> Generating temporary packing list ===> Checking if devel/ninja already installed install: todo: No such file or directory *** Error code 71 Stop in /usr/ports/devel/ninja. To fix this bug I removed 'todo' file from PORTDOCS, since this file was removed from source. >How-To-Repeat: cd /usr/ports/devel/ninja make install clean >Fix: --- ninja.diff.txt begins here --- diff -ruN devel/ninja/Makefile devel/ninja/Makefile --- devel/ninja/Makefile 2011-09-23 10:32:40.000000000 +0200 +++ devel/ninja/Makefile 2011-09-23 17:09:41.951949758 +0200 @@ -23,7 +23,7 @@ WRKSRC= ${WRKDIR}/Roorback-${PORTNAME}-${GITVERSION} PLIST_FILES= bin/ninja -PORTDOCS= COPYING HACKING README manual.asciidoc todo +PORTDOCS= COPYING HACKING README manual.asciidoc do-build: @(cd ${WRKSRC}; CXX=${CXX} ./bootstrap.sh) @@ -32,7 +32,7 @@ @${INSTALL} -m 755 ${WRKSRC}/ninja ${PREFIX}/bin .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} - @(cd ${WRKSRC}; ${INSTALL} -m 644 COPYING HACKING README todo ${DOCSDIR}) + @(cd ${WRKSRC}; ${INSTALL} -m 644 COPYING HACKING README ${DOCSDIR}) @(cd ${WRKSRC}/doc; ${INSTALL} -m 644 manual.asciidoc ${DOCSDIR}) .endif --- ninja.diff.txt ends here --- >Release-Note: >Audit-Trail: >Unformatted: