From owner-cvs-all@FreeBSD.ORG Fri Jun 15 18:30:36 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 4450416A41F for ; Fri, 15 Jun 2007 18:30:36 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.234]) by mx1.freebsd.org (Postfix) with ESMTP id E591613C45A for ; Fri, 15 Jun 2007 18:30:35 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: by nz-out-0506.google.com with SMTP id 14so890074nzn for ; Fri, 15 Jun 2007 11:30:35 -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=pimKZr1986i+KaTh8nsfhFozlAHV8GGMJs3NsYfI4zHCUguaPNpvgS6bGZhkLzZpx0xLcWjxrMJNXaOG1saEW/L5i8WT27l+OEypneNgfGOCxlHwvH2qfWSiksYVYpLxDdRiGD7/7dBv5/nAVNMIJgb4PcB+phg19aYrk9NYSI8= 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=LElgEe03IN39MifETE9x/ZiHs6q2gblhUbOHYrh69kNSKBRo68RL6dOXffLgovlCcEun7VmB0zuAW6Clt8pwedxnUXkWDO1CrwqRPusXYRwvc5qZuYgaUGK2gfbn4cqZPDFfwI8VLGtSw1u0yLZuMe9hSetMO9YlF3Pb3imvPTc= Received: by 10.114.166.1 with SMTP id o1mr3302971wae.1181932234849; Fri, 15 Jun 2007 11:30:34 -0700 (PDT) Received: by 10.114.194.13 with HTTP; Fri, 15 Jun 2007 11:30:34 -0700 (PDT) Message-ID: Date: Fri, 15 Jun 2007 22:30:34 +0400 From: "Andrew Pantyukhin" Sender: infofarmer@gmail.com To: "Alexey Dokuchaev" , cvs-all@freebsd.org, cvs-ports@freebsd.org, ports-committers@freebsd.org In-Reply-To: <20070615180818.EEBAE16A484@hub.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200706151800.l5FI0BZD087745@repoman.freebsd.org> <20070615180818.EEBAE16A484@hub.freebsd.org> X-Google-Sender-Auth: 7637c444703b4694 Cc: Subject: Re: cvs commit: ports/graphics/sng Makefile pkg-descr 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: Fri, 15 Jun 2007 18:30:36 -0000 On 6/15/07, Alexey Dokuchaev wrote: > danfe 2007-06-15 18:00:11 UTC > > FreeBSD ports repository > > Modified files: > graphics/sng Makefile pkg-descr > Log: > - Fix the build with recent GCC [1] > - Correctly assign RUN_DEPENDS > - Minor indentation nit in Makefile > - Kill EOL space in pkg-descr > > Reported by: pointyhat (logs) [1] > > Revision Changes Path > 1.13 +3 -2 ports/graphics/sng/Makefile > 1.2 +1 -1 ports/graphics/sng/pkg-descr > _______________________________________________ > pre-patch: > @${REINPLACE_CMD} -e 's|-static||g' ${WRKSRC}/Makefile.in > + @${REINPLACE_CMD} -e '33,34s|^static ||' ${WRKSRC}/sngd.c I'd warn you against these numbered sed substitutions. For one, they're hard to maintain. They also can cause silent damage to sources which is very hard to track. In this very case, it use this: '/^static png_/s|^static ||' Thanks!