Date: Sat, 17 May 2003 14:03:40 +0200 From: Jens Rehsack <rehsack@liwing.de> To: Tim Bishop <tim-lists@bishnet.net> Cc: freebsd-ports@freebsd.org Subject: Re: Commit ports/50158 please? Message-ID: <3EC6251C.7080403@liwing.de> References: <20030517103111.GA2595@raq15.uk2net.com>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3EC6251C.7080403>