From owner-freebsd-ports@freebsd.org Fri Apr 20 06:01:30 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E68DDFA83A5 for ; Fri, 20 Apr 2018 06:01:29 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id 6DDB170370 for ; Fri, 20 Apr 2018 06:01:28 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id 8DFEC25613; Fri, 20 Apr 2018 15:01:19 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id 1692137546; Fri, 20 Apr 2018 15:01:19 +0900 (JST) Received: from localhost (half.home.utahime.org [192.168.174.12]) by eastasia.home.utahime.org (Postfix) with ESMTPSA id CD27637545; Fri, 20 Apr 2018 15:01:18 +0900 (JST) Date: Fri, 20 Apr 2018 15:01:01 +0900 (JST) Message-Id: <20180420.150101.967300340290942386.yasu@utahime.org> To: freebsd-ports@freebsd.org Subject: Re: How to get -RC2 is tarball name? From: Yasuhiro KIMURA In-Reply-To: References: X-Mailer: Mew version 6.7 on Emacs 25.3 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Apr 2018 06:01:30 -0000 From: Gary Aitken Subject: How to get -RC2 is tarball name? Date: Thu, 19 Apr 2018 23:48:24 -0600 > I'm trying to fetch: > https://download.gimp.org/mirror/pub/gimp/v2.10/gimp-2.10.0-RC2.tar.bz2 > Both the RC2 and the bz2 are giving me problems. > I've tried every combination I can think of and can't seem to get the > right thing. In order to get the -RC2 I had to resort to: > > PORTNAME?= gimp-devel-app > DISTVERSION= 2.10.0 > GIMPVERSION= RC2 > DISTNAME= gimp-${DISTVERSION}-${GIMPVERSION} > MASTER_SITES= https://download.gimp.org/mirror/pub/gimp/v2.10/ > > but that asks for .../v2.10/gimp-2.10.0-RC2.tar.gz > tacking the .tar.bz2 on the end of DISTNAME doesn't help. Add 'USES=tar:bzip2' to Makefile. It changes EXTRACT_SUFX to '.tar.bz2'. --- Yasuhiro KIMURA