Commit ports/50158 please?

Jens Rehsack rehsack at liwing.de
Sat May 17 05:03:44 PDT 2003


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



More information about the freebsd-ports mailing list