From owner-cvs-all@FreeBSD.ORG Thu Jun 14 14:56:59 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 9A35B16A46C for ; Thu, 14 Jun 2007 14:56:59 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from qb-out-0506.google.com (qb-out-0506.google.com [72.14.204.228]) by mx1.freebsd.org (Postfix) with ESMTP id 286DF13C457 for ; Thu, 14 Jun 2007 14:56:59 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: by qb-out-0506.google.com with SMTP id b14so428760qbc for ; Thu, 14 Jun 2007 07:56:58 -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=S9PZIubu20zr8hkJFYtP+pvWVRJijJb3b5D0X7jHLZN0nqc7jStt1T0W/8sfgsTFc7mIf5qoBuKsG7uiDy3ky4LCNS4BMjghU5qGfzYTJB/xidMlMDDcGRSNmsJeegk26kbd8OCfuvFxOlafBIfdyn78fkDtvZvYt+cLv1eIzPY= 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=UNxu6SX0nYpHMsbnddmUHqFSVhrEX/hOgiRnGpHwGO2kbVGuzwMMT4rFCn4/O95HOfM0TXq3UYDnPSn54uwGM3YdwM/fC3MIF0/7I0FXfiJrPD/b90zhuVo1PvP2YJmHetshAo+cnRNCX+E9O/0Pa7MMRh/2OFT/9GhV4qAmgak= Received: by 10.114.135.1 with SMTP id i1mr1914181wad.1181833015985; Thu, 14 Jun 2007 07:56:55 -0700 (PDT) Received: by 10.114.194.13 with HTTP; Thu, 14 Jun 2007 07:56:55 -0700 (PDT) Message-ID: Date: Thu, 14 Jun 2007 18:56:55 +0400 From: "Andrew Pantyukhin" Sender: infofarmer@gmail.com To: "Jean Milanez Melo" , cvs-all@freebsd.org, cvs-ports@freebsd.org, ports-committers@freebsd.org, "Janos Mohacsi" In-Reply-To: <20070614142908.27C0816A558@hub.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200706141429.l5EET3ng053847@repoman.freebsd.org> <20070614142908.27C0816A558@hub.freebsd.org> X-Google-Sender-Auth: 0d5759e46f476fe9 Cc: Subject: Re: cvs commit: ports/games/abridge Makefile distinfo 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: Thu, 14 Jun 2007 14:56:59 -0000 On 6/14/07, Jean Milanez Melo wrote: > jmelo 2007-06-14 14:29:03 UTC > > FreeBSD ports repository > > Modified files: > games/abridge Makefile distinfo > Log: > - Fix mastersite. > - portlint(1). > - Update to 0.4.0-1. > - Bump portrevision. > > PR: ports/113484 > Submitted by: Janos Mohacsi (maintainer) > > Revision Changes Path > 1.15 +5 -5 ports/games/abridge/Makefile > 1.4 +3 -3 ports/games/abridge/distinfo > _______________________________________________ > cvs-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-all > To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" > > > Index: ports/games/abridge/Makefile > diff -u ports/games/abridge/Makefile:1.14 ports/games/abridge/Makefile:1.15 > --- ports/games/abridge/Makefile:1.14 Sat May 19 20:05:16 2007 > +++ ports/games/abridge/Makefile Thu Jun 14 14:29:03 2007 > @@ -6,12 +6,12 @@ > > PORTNAME= abridge > PORTVERSION= 0.4.0 > -PORTREVISION= 6 > -PORTREVISON= 1 > +PORTREVISION= 7 > CATEGORIES= games > -MASTER_SITES= http://www.abridgegame.org/src/ > +MASTER_SITES= http://www.abridgegame.org/debian/unstable/ > +DISTFILES= ${PORTNAME}_${PORTVERSION}-1${EXTRACT_SUFX} The proper way to deal with this: DISTVERSION=0.4.0-1 DISTNAME=${PORTNAME}_${DISTVERSION} > -MAINTAINER= Janos.Mohacsi@bsd.hu > +MAINTAINER= janos.mohacsi@bsd.hu > COMMENT= Bridge game > > USE_WX= 2.4 > @@ -24,7 +24,7 @@ > .include > > .if ${ARCH} != "i386" > -BROKEN= "Does not compile on !i386" > +BROKEN= Does not compile on !i386 > .endif We now have this ONLY_FOR_ARCHS macro.