From owner-freebsd-ports@FreeBSD.ORG Wed Jan 19 14:25:35 2005 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 D60E816A4CE; Wed, 19 Jan 2005 14:25:35 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3088843D48; Wed, 19 Jan 2005 14:25:31 +0000 (GMT) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id j0JEa2nP043114; Wed, 19 Jan 2005 11:36:03 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.11/8.12.9) with ESMTP id j0JEOn4f076374; Wed, 19 Jan 2005 11:24:49 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.11/8.12.11/Submit) id j0JEOmx7076369; Wed, 19 Jan 2005 11:24:48 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Wed, 19 Jan 2005 11:24:48 -0300 From: Fernan Aguero To: Ion-Mihai Tetcu Message-ID: <20050119142448.GD33158@iib.unsam.edu.ar> Mail-Followup-To: Ion-Mihai Tetcu , Bill Coffman , freebsd-ports@freebsd.org, Alex Dupre References: <6f9c15f8050118105132e37e02@mail.gmail.com> <41ED88C0.1090805@FreeBSD.org> <6f9c15f805011817175e3e821@mail.gmail.com> <20050119032851.5d402a3e@it.buh.tecnik93.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050119032851.5d402a3e@it.buh.tecnik93.com> User-Agent: Mutt/1.5.6i cc: Alex Dupre cc: freebsd-ports@freebsd.org cc: Bill Coffman Subject: Re: port versions 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: Wed, 19 Jan 2005 14:25:36 -0000 +----[ Ion-Mihai Tetcu (18.Jan.2005 22:33): | | > Since we're on the subject, I was wondering about other conventions | > for port versions. Sometimes it's "_1" or "_2" and sometimes it's | > like "p5-DBD-mysql40-2.9004_1". Is there any reason for all these, or | > are they just left to the variable discretion of the port maintainer? | | No. Reason: | | /usr/share/doc/en_US.ISO8859-1/books/porters-handbook/makefile-naming.html | +----] I don't have it by that name, but under /usr/share/doc/en_US.ISO8859-1/books/porters-handbook/x400.html As already explained in a previous message, everything that is added after the port version, either in the package name or when registering the port (usually in /var/db/pkg), come from different variables defined in the ports Makefile PORTNAME= abc PORTVERSION= x gets added after portname as -x (abc-x) PORTREVISION= y gets added as _y (abc-x_y) PORTEPOCH= z gets added as ,z (abc-x_y,z) Fernan