From owner-cvs-all@FreeBSD.ORG Fri Jun 15 18:44:14 2007 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4FA3F16A46D for ; Fri, 15 Jun 2007 18:44:14 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.229]) by mx1.freebsd.org (Postfix) with ESMTP id EE0AC13C46A for ; Fri, 15 Jun 2007 18:44:13 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: by nz-out-0506.google.com with SMTP id 14so893189nzn for ; Fri, 15 Jun 2007 11:44:13 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=eySnAS+8w97616fRIZZLB++5PIP2zUouNt8BI+el8CenxSMlZqmhrDfeN0Bv42mObo+yu7H4w446OXyKVUWEBvnlHYEfyfabbNJlUi2sIew8oZDnilrrbIlwwBHUnCIbGB3SgUCJNQ1DrNWCOCQV/y9twoxBdBWr9bioi77gIo4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=mQ9WAnhQSJkXMZ2YjMh3IyoGmL51IBmb2d9Di3evXXu4aQqlqs+fXzRoiVk9cni9ctUkr3iQQxQaakJt4AgLG87Z0ijhIYQGrS+O0mBBzqpU19cbZLZLjcTqaEiT6U8+FDWdMz2mYF0LYTNSe3NowqWBiW+JEuB4bMv87fO/SKE= Received: by 10.114.197.1 with SMTP id u1mr3309224waf.1181933052889; Fri, 15 Jun 2007 11:44:12 -0700 (PDT) Received: by 10.114.194.13 with HTTP; Fri, 15 Jun 2007 11:44:12 -0700 (PDT) Message-ID: Date: Fri, 15 Jun 2007 22:44:12 +0400 From: "Andrew Pantyukhin" Sender: infofarmer@gmail.com To: "Sergei Kolobov" , cvs-all@freebsd.org, cvs-ports@freebsd.org, ports-committers@freebsd.org In-Reply-To: <20070615182712.7053016A4D5@hub.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200706151818.l5FIIwTS008070@repoman.freebsd.org> <20070615182712.7053016A4D5@hub.freebsd.org> X-Google-Sender-Auth: 4ebbd82e353d6cc9 Cc: Subject: Re: cvs commit: ports/sysutils/cfengine Makefile distinfo ports/sysutils/cfengine/files cfexecd.in cfservd.in patch-Makefile.in patch-doc_Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: infofarmer@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jun 2007 18:44:14 -0000 On 6/15/07, Sergei Kolobov wrote: > sergei 2007-06-15 18:18:58 UTC > > FreeBSD ports repository > > Modified files: > sysutils/cfengine Makefile distinfo > sysutils/cfengine/files patch-Makefile.in > patch-doc_Makefile.in > Added files: > sysutils/cfengine/files cfexecd.in cfservd.in > Log: > - Update to 2.2.1 [1] > - Add rc.d scripts for cfexecd(8) and cfservd(8) > > PR: ports/113167 [1] > Submitted by: Jo Rhett > > Revision Changes Path > 1.38 +8 -3 ports/sysutils/cfengine/Makefile > 1.13 +3 -3 ports/sysutils/cfengine/distinfo > 1.1 +30 -0 ports/sysutils/cfengine/files/cfexecd.in (new) > 1.1 +30 -0 ports/sysutils/cfengine/files/cfservd.in (new) > 1.2 +12 -5 ports/sysutils/cfengine/files/patch-Makefile.in > 1.3 +30 -16 ports/sysutils/cfengine/files/patch-doc_Makefile.in > _______________________________________________ > +CONFIGURE_ARGS= --with-docs \ > + --docdir=${DOCSDIR} \ > + --infodir=${PREFIX}/info \ > + --mandir=${MANPREFIX}/man You set docdir to DOCSDIR here, but your patches change docdir to prefix/share/doc/cfengine, which is not quite the same thing. I know many ports don't support non-standard DOCSDIR, but still what you want to do is probably change your patches to replace the value with @docdir@ Thanks!