From owner-freebsd-ports@FreeBSD.ORG Sat May 17 05:03:44 2003 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 1C55437B401 for ; Sat, 17 May 2003 05:03:44 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id D960F43F93 for ; Sat, 17 May 2003 05:03:42 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 218 invoked from network); 17 May 2003 12:03:41 -0000 Received: from stingray.liwing.de (HELO liwing.de) ([213.70.188.164]) (envelope-sender ) by mail.liwing.de (qmail-ldap-1.03) with SMTP for ; 17 May 2003 12:03:40 -0000 Message-ID: <3EC6251C.7080403@liwing.de> Date: Sat, 17 May 2003 14:03:40 +0200 From: Jens Rehsack Organization: LiWing IT-Services User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.2) Gecko/20030208 Netscape/7.02 (Compact - Build 2) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Tim Bishop References: <20030517103111.GA2595@raq15.uk2net.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: Re: Commit ports/50158 please? 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: Sat, 17 May 2003 12:03:44 -0000 On 5/17/2003 12:31 PM, Tim Bishop wrote: > Could someone commit ports/50158 please? > > It's purely selfish reasons - I'd like to use it :-) > > Cheers guys, > Tim. Maybe following small script helps you over the days til it's committed: #!/bin/sh cvsup -L2 -g /usr/local/etc/cvsup/cvsupfile cd /usr/src for a in ~/patches/src/patch-* do echo "Applying patch \"${a}\"" patch <$a done cd /usr/ports for portsdir in ~/patches/ports/* do for port in ${portsdir}/* do for a in ${port}/patch-* do echo "Applying patch \"${a}\"" patch <$a done done done Cheers, Jens