From owner-freebsd-ports@FreeBSD.ORG Thu Jun 12 12:52:31 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1792B37B401 for ; Thu, 12 Jun 2003 12:52:31 -0700 (PDT) Received: from cultdeadsheep.org (charon.cultdeadsheep.org [80.65.226.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D95043FB1 for ; Thu, 12 Jun 2003 12:52:29 -0700 (PDT) (envelope-from sheepkiller@cultdeadsheep.org) Received: (qmail 43995 invoked from network); 12 Jun 2003 19:52:27 -0000 Received: from unknown (HELO lucifer.cultdeadsheep.org) (192.168.0.2) by goofy.cultdeadsheep.org with SMTP; 12 Jun 2003 19:52:27 -0000 Date: Thu, 12 Jun 2003 21:52:45 +0200 From: Clement Laforet To: Paul Chvostek Message-Id: <20030612215245.32858fe5.sheepkiller@cultdeadsheep.org> In-Reply-To: <20030612193622.GA68410@mail.it.ca> References: <20030612185429.GA17904@mail.it.ca> <20030612212009.46193029.sheepkiller@cultdeadsheep.org> <20030612193622.GA68410@mail.it.ca> Organization: tH3 cUlt 0f tH3 d3@d sH33p X-Mailer: Sylpheed version 0.9.1 (GTK+ 1.2.10; i386-portbld-freebsd4.8) X-Face: ._cVVRDn#-2((lnfi^P7CoD4htI$4+#G/G)!w|,}H5yK~%(3-C.JlEYbOjJGFwJkt*7N^%z jYeu[;}]}F"3}l5R'l"X0HbvT^D\Q&%deCo)MayY`);TO Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: changes to the original source... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 19:52:31 -0000 On Thu, 12 Jun 2003 15:36:22 -0400 Paul Chvostek wrote: > On Thu, Jun 12, 2003 at 09:20:09PM +0200, Clement Laforet wrote: > > > > > Also, if the application's man page fails to include gobs of > > > useful information and examples that are available via www, what's > > > the best way to grab content for inclusion in > > > $PREFIX/share/doc/$PKGNAME ? Should I just punt with fetch, or is > > > there another preferred way to grab additional files to add to > > > $DOCSDIR? > ... > > DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} > > .if !defined(NOPORTDOCS) > > DISTFILES+= foo-doc.tar.gz > > .endif > > Perhaps I should have been more specific. The default DISTNAME works > fine for source tarball, but the extra documentation is from a URL > that reside outside the directory specified by $MASTER_SITES, i.e. the > source is at > http://somehost/${PORTNAME}/${PORTNAME}.${PORTVERSION}.tar.gz but the > extra documentation is at http://somehost/${PORTNAME}.html. Should I > shrink MASTER_SITES to "http://somehost/" and make DISTFILES include a > directory for what needs it? That seems wrong.... I understand :) you can do this (see below) :) IMHO, I prefer "checksum'd" docs :) Obviously, "daily changing" documentations can't be reasonnably "checksum'ed", but I don't think is a good idea to install them with the port :) Here 's my small example: PORTNAME= suphp PORTVERSION= 0.2.3 CATEGORIES= www DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}:0 MASTER_SITES= http://www.suphp.org/download/:0 .if !defined(NOPORTDOCS) DISTFILES+= suphp-fr-doc-0.2.3.tar.gz:1 MASTER_SITES+= http://www.cultdeadsheep.org/sheepkiller/:1 .endif > It's actually looking as if post-extract: would be the best place for > a fetch (it's the first target after $WRKSRC is created). But if > there's a "right" way to include the file in DISTFILES, I'll do that > instead. > > > do-install: > > .if !defined(NOPORTDOCS) > > @${MKDIR} ${DOCSDIR} > > @${INSTALL_DATA} ${DOCSDIR} > > .endif > > Well, yeah, but I was being brief. ;) It was a simple "copy and paste" :) Regards, clem