From owner-freebsd-ports@freebsd.org Sun Sep 13 03:44:19 2015 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 324E39CD93E for ; Sun, 13 Sep 2015 03:44:19 +0000 (UTC) (envelope-from andoriyu@gmail.com) Received: from mail-pa0-x22f.google.com (mail-pa0-x22f.google.com [IPv6:2607:f8b0:400e:c03::22f]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 041AC15DD for ; Sun, 13 Sep 2015 03:44:19 +0000 (UTC) (envelope-from andoriyu@gmail.com) Received: by padhy16 with SMTP id hy16so110630059pad.1 for ; Sat, 12 Sep 2015 20:44:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:message-id:subject:mime-version:content-type; bh=AW1vXqigAg75l6ZovRMwXFDEYByTidQEqjZovA7IWRg=; b=pECdgRWUMkxtB7c8qHjXAdajvCf0+4r3rGjmFJfK5fsF24Txcs8YHtXA85ulNSEGIi JM9A0OsF/ujVuEc1EFKUg7d65jP6f2Ic2UxfOzd4Z1qTUfcsxIM7VE2JGakCe/3eRgrv o4EygcAWOlPn9EEsw+jbsIn6xa7SRYRTdNJ3zZjYBbEij1VIub/LnKTRQCpMPGGKKAG5 aHPBStfclRlFwDpXCXEQa6eVChiFgW6xVIIcektYh2InzAJ6fj+tQ6b08nKe+aJJNDL1 sTcNPrxZSc2a51Ni2lkhO0U7+QdSKXdHh498zETr54r/SZG1QUF1Xq7L3iSXZ5FH9/Px LCnw== X-Received: by 10.68.185.132 with SMTP id fc4mr10847733pbc.96.1442115858643; Sat, 12 Sep 2015 20:44:18 -0700 (PDT) Received: from Andreys-MacBook-Pro.local ([2606:6000:6245:3c00:451f:ec7d:b6c5:73b7]) by smtp.gmail.com with ESMTPSA id og5sm8351205pbc.68.2015.09.12.20.44.17 for (version=TLSv1/SSLv3 cipher=OTHER); Sat, 12 Sep 2015 20:44:17 -0700 (PDT) Date: Sat, 12 Sep 2015 20:44:16 -0700 From: Andrey Cherkashin To: freebsd-ports@freebsd.org Message-ID: Subject: Re: Help with new port with multiple downloaded files from github X-Mailer: Airmail Beta (326) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Sep 2015 03:44:19 -0000 Hey, any luck with this port=3F >Tom Pusateri writes: > >> Here=E2=80=99s the Makefile >> >> PORTNAME=3D libchromiumcontent >> PORTVERSION=3D 43.0.2357.65 > >To override these variables you have to modify master port to use =3F=3D= . >And altering PORTNAME often breaks master's DIST=46ILES/WRKSRC/etc. > >In this case PORTVERSION should probably stay in sync with master to >avoid trying to apply new port patches against old chromium. > >> DISTVERSIONPRE=46IX=3D v >> DISTVERSIONSU=46=46IX=3D -atom-2 > >DISTVERSION*=46IX affect both master and slave distfile. If you only wan= t >to alter the latter convert into GH=5FTAGNAME. > >> >> MAINTAINER=3D pusateri at bangj.com >> COMMENT=3D Shared library build of Chromium's Content module >> >> USE=5FGITHUB=3D yes >Define to =22nodefault=22 to avoid altering MASTER=5FSITES inherited fro= m the >master port. > >> GH=5FPROJECT=3D libchromiumcontent:libchromiumcontent >> GH=5FACCOUNT=3D atom:libchromiumcontent >> >> .include =22=24=7BMASTERDIR=7D/Makefile=22 > >Would the following work for you=3F >--8<---------------cut here---------------start------------->8--- >PKGNAMEPRE=46IX=3D libchromiumcontent- > >MAINTAINER=3D pusateri at bangj.com >COMMENT=3D Shared library build of Chromium's Content module > >USE=5FGITHUB=3D nodefault >GH=5FPROJECT=3D libchromiumcontent:libchromiumcontent >GH=5FACCOUNT=3D atom:libchromiumcontent >GH=5FTAGNAME=3D v43.0.2357.65-atom-2:libchromiumcontent > >MASTERDIR=3D =24=7B.CURDIR=7D/../chromium >DESCR=3D =24=7B.CURDIR=7D/pkg-descr >DISTIN=46O=5F=46ILE=3D =24=7B.CURDIR=7D/distinfo > >=23 Apply port patches if any from slave >.if exists(=24=7B.CURDIR=7D/files) >EXTRA=5FPATCHES+=3D =24=7B.CURDIR=7D/files/patch-* >.endif > >.include =22=24=7BMASTERDIR=7D/Makefile=22 >--8<---------------cut here---------------end--------------->8---