From owner-freebsd-ports@FreeBSD.ORG Mon May 19 07:23:50 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 48845106566C for ; Mon, 19 May 2008 07:23:50 +0000 (UTC) (envelope-from mspitzer@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.180]) by mx1.freebsd.org (Postfix) with ESMTP id 02C118FC1C for ; Mon, 19 May 2008 07:23:49 +0000 (UTC) (envelope-from mspitzer@gmail.com) Received: by py-out-1112.google.com with SMTP id u52so1744705pyb.10 for ; Mon, 19 May 2008 00:23:49 -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:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=TVx6xOT/aw5CkcHExLKjoafvQ+OYQ+2hjFA2+swOtds=; b=omTJjsSazEPK7OkT00tUZThQg3ywUPh5nBiFVb/DW56KPv65CmjyLXAZbpEMFjfmnNA5WKo0sjAWzq9PvQQxUxY00qFoRx22Q6I1NKpX4ZR7CifhSKjLEQljFdwrnZSPVrT0gCHIJ2doRrEXTzt/ApJlZDVh61W7UODpmI6JNFY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=VZVKRIUTQ4WRQpc0iFkW/mS+8ve6fHQvj7U1vVDSP6TPRKgNWipoQa9W5hJZo2NYZjQ7EwQm8MBIUiOG07WJe4EHaA+PijK29iehi4iG5X1eAz15o2Pp+fGsA75P+/HVISG1HCfCxcCVP7lSo+yWHNEpC+ZhYPZ/4TFqL/KU58o= Received: by 10.143.44.3 with SMTP id w3mr2691678wfj.315.1211181829097; Mon, 19 May 2008 00:23:49 -0700 (PDT) Received: by 10.143.123.5 with HTTP; Mon, 19 May 2008 00:23:48 -0700 (PDT) Message-ID: <8c50a3c30805190023l5ff94782xf033a19797c42204@mail.gmail.com> Date: Mon, 19 May 2008 03:23:48 -0400 From: "Marc Spitzer" To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: 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 07:23:50 -0000 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 now the files are in the right place, including atf-test-case.4, but they are not compressed. The prefix I am using for testing is /var/tmp/atf btw. And this is on 8.0. Here is my Makefile: bob# more Makefile # New ports collection makefile for: ATF # Date created: 12 May 2008 # Whom: Marc Spitzer # # $FreeBSD$ # PORTNAME= atf PORTVERSION= 0.5 CATEGORIES= devel MASTER_SITES= ftp://ftp.netbsd.org/pub/NetBSD/misc/jmmv/atf/0.5/ MAINTAINER= mspitzer@gmail.com COMMENT=The ATF unit testing framework, C, C++ and Posix Shell bindings GNU_CONFIGURE= yes CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} USE_AUTOTOOLS= autoconf:261 MAN1= tools/atf-format.1 tools/atf-compile.1 tools/atf-cleanup.1 tools/atf-run.1 \ tools/atf-config.1 tools/atf-version.1 tools/atf-killpg.1 tools/atf-report.1 \ tools/atf-exec.1 doc/atf-test-program.1 MAN3= atf-c++/atf-c++-api.3 atf-c/atf-c-api.3 atf-sh/atf-sh-api.3 MAN4= doc/atf-test-case.4 MANCOMPRESSED=yes .include bob# Thanks for the help, marc -- Freedom is nothing but a chance to be better. Albert Camus