From owner-freebsd-ports@FreeBSD.ORG Mon May 19 09:53:32 2008 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 6025E106564A for ; Mon, 19 May 2008 09:53:32 +0000 (UTC) (envelope-from florent.thoumie@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.176]) by mx1.freebsd.org (Postfix) with ESMTP id 2C6FB8FC27 for ; Mon, 19 May 2008 09:53:32 +0000 (UTC) (envelope-from florent.thoumie@gmail.com) Received: by wa-out-1112.google.com with SMTP id j4so1577391wah.3 for ; Mon, 19 May 2008 02:53:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; bh=EIYiUbCmS22EcNXzm2QCCxHrEND9PTN87JY79pozfxo=; b=fFV7OqCz3jjtToKR7VVkQhBT1jMznP3iZ6XM9AJozdBsvFKYbPCHxiN6eQOxJ87tCNtiqnrplSDEPt2q9FFBliQs4EqIlUtruRaqojDGj2o6CTcQoYeX95Yd2+1TxVJyBtqih321S0aDjH8Oyj3P47Nc6uTb0oe6ZwYTdkuP6A8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=IfBlkVaVgP8y9PYd4um7N19UBlILTIugQcZ1ZIfeuSd0SM0x44pS+Wh8CuZ3lxkehsHKmUuZ9UvIWbJLsDK9Kw2uUMR0UknRKyd3UCGJqZE5CAtuEyC8vevoyHVX2IytNo2F56zClA0aFZpw8f6kqxeMNVP+EYmx/ylAGDw1lyQ= Received: by 10.115.55.1 with SMTP id h1mr7243378wak.216.1211190811839; Mon, 19 May 2008 02:53:31 -0700 (PDT) Received: by 10.114.57.4 with HTTP; Mon, 19 May 2008 02:53:31 -0700 (PDT) Message-ID: Date: Mon, 19 May 2008 10:53:31 +0100 From: "Florent Thoumie" Sender: florent.thoumie@gmail.com To: "Marc Spitzer" In-Reply-To: <8c50a3c30805190023l5ff94782xf033a19797c42204@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <8c50a3c30805190023l5ff94782xf033a19797c42204@mail.gmail.com> X-Google-Sender-Auth: 6728947b63425186 Cc: freebsd-ports@freebsd.org Subject: Re: Makefile/man page problem 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: Mon, 19 May 2008 09:53:32 -0000 On Mon, May 19, 2008 at 8:23 AM, Marc Spitzer wrote: > Hello, > > I am having a problem with installing/deinstalling man pages of a port > I am working on, atf if interested. They are not being compressed on > install and when I denistall the port I get error messages as follows: > > > pkg_delete: file '/var/tmp/atf/man/man3/atf-c++/atf-c++-api.3.gz' doesn't exist > pkg_delete: file '/var/tmp/atf/man/man3/atf-c/atf-c-api.3.gz' doesn't exist > pkg_delete: file '/var/tmp/atf/man/man3/atf-sh/atf-sh-api.3.gz' doesn't exist > pkg_delete: file '/var/tmp/atf/man/man4/doc/atf-test-case.4.gz' doesn't exist > pkg_delete: couldn't entirely delete package (perhaps the packing list is $ find man -type f | head -5 man/man1/atf-test-program.1 man/man1/atf-config.1 man/man1/atf-cleanup.1 man/man1/atf-compile.1 man/man1/atf-exec.1 You need to set MAN1= atf-test-program.1 atf-config.1 ..., this is relative to MAN1DIR, not WRKSRC. Also, by default ATF_SHELL is set to /usr/local/bin/bash so you need to add shells/bash as a dependency if setting it to /bin/sh isn't good enough. -- Florent Thoumie flz@FreeBSD.org FreeBSD Committer