From owner-svn-ports-head@FreeBSD.ORG Mon Apr 7 14:38:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 194FFD5A; Mon, 7 Apr 2014 14:38:35 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id CAE237B9; Mon, 7 Apr 2014 14:38:34 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 217F0BDC82; Mon, 7 Apr 2014 16:38:33 +0200 (CEST) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id EA2C9BDC5C; Mon, 7 Apr 2014 16:38:32 +0200 (CEST) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id 4DF1B6122; Mon, 7 Apr 2014 16:38:32 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id CEC836AFF6B6; Mon, 7 Apr 2014 16:38:31 +0200 (CEST) Date: Mon, 07 Apr 2014 16:38:31 +0200 From: Mathieu Arnold To: Gerald Pfeifer , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r350437 - head/lang/gcc47 Message-ID: <33DF6797A917667990B328F1@ogg.in.absolight.net> In-Reply-To: References: <201404070917.s379H6rE049741@svn.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Apr 2014 14:38:35 -0000 +--On 7 avril 2014 15:10:32 +0200 Gerald Pfeifer wrote: | On Mon, 7 Apr 2014, Gerald Pfeifer wrote: |> No longer install rebuild-gcj-db47 (which requires bash among others) |> and its man page. | |> Modified: head/lang/gcc47/Makefile |> ======================================================================== |> ====== @@ -135,6 +135,8 @@ full-regression-test: build |> post-install: |> ${RM} -f ${STAGEDIR}${TARGLIB}/*.la |> ${RM} -f ${STAGEDIR}${PREFIX}/man/man7/* |> + ${RM} -f ${STAGEDIR}${PREFIX}/bin/rebuild-gcj-db${SUFFIX} \ |> + ${STAGEDIR}${PREFIX}/man/man1/rebuild-gcj-db${SUFFIX}.1.gz | |> Modified: head/lang/gcc47/pkg-plist |> ======================================================================== |> ====== -%%JAVA%%bin/rebuild-gcj-db%%SUFFIX%% | : |> -%%JAVA%%man/man1/rebuild-gcj-db%%SUFFIX%%.1.gz | | And I must be missing something really obvious, but does anyone | see why after this I am now getting | | ====> Items missing from pkg-plist (check-orphans) | man/man1/rebuild-gcj-db%%SUFFIX%%.1.gz | | despite removing this file explicitly? (I'm impressed that | check-orphans uses %%SUFFIX%% by the way.) Ok, gotcha. you have to remove the .1 file, not the .1.gz, the compress-man target is ran after the post-install one (so that man pages you install in there get compressed too.) -- Mathieu Arnold