Module Name: src Committed By: christos Date: Mon Jun 22 22:32:44 UTC 2009
Added Files: src/gnu/dist/postfix: postfix2netbsd Log Message: put back the conversion script. I forgot to add it in the last import To generate a diff of this commit: cvs rdiff -u -r0 -r1.14 src/gnu/dist/postfix/postfix2netbsd Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Added files: Index: src/gnu/dist/postfix/postfix2netbsd diff -u /dev/null src/gnu/dist/postfix/postfix2netbsd:1.14 --- /dev/null Mon Jun 22 18:32:44 2009 +++ src/gnu/dist/postfix/postfix2netbsd Mon Jun 22 18:32:44 2009 @@ -0,0 +1,114 @@ +#! /bin/sh +# +# $NetBSD: postfix2netbsd,v 1.14 2009/06/22 22:32:44 christos Exp $ +# +# Copyright (c) 1998, 1999 The NetBSD Foundation, Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS +# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS +# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# +# postfix2netbsd: adds NetBSD tag, removes unnecessary files and +# resolve symlinks for importing postfix tree into netbsd. +# works on current directory. + +# postfix2netbsd: convert a postfix source tree into a +# format suitable for commit. Works on current dir. +# +# Seed from Wiz's grep2netbsd. + +PROG="$(basename "$0")" +if [ -z "$1" -o -n "$2" ] +then + echo "Usage: $PROG <dir>" 1>&2 + exit 1 +fi +cd "$1" +# delete some superfluous files +echo deleting some superfluous files +find . \( -type f -o -type l \) -a \ + \( -name .indent.pro -o -name .printfck -o -name .keep \) \ + -exec rm {} \; +rm -rf bin include lib libexec man/cat? auxiliary +echo done + +### ditch symlinks +find . -type l | while read t; do + cp $t /tmp/postfix7$$ + rm -f $t + mv /tmp/postfix7$$ $t + echo "resolved symlink $t" +done + +### Remove the $'s around RCS tags +find . -type f -print | xargs egrep -l '\$(Id|Created|Header|Revision|Source)' | while read f; do + sed -e 's/\$\(Id.*\) ?\$/\1/' \ + -e 's/\$\(Created.*\) \$/\1/' \ + -e 's/\$\(Header.*\) \$/\1/' \ + -e 's/\$\(Revision.*\) ?\$/\1/' \ + -e 's/\$\(Source.*\) ?\$/\1/' \ + $f > /tmp/postfix2$$ && mv /tmp/postfix2$$ $f && \ + echo "removed RCS tag from $f" +done + +### Add our NetBSD RCS Id +find . -type f -name '*.[chly]' -print | while read c; do + sed 1q < $c | grep -q '\$NetBSD' || ( +echo "/* \$NetBSD\$ */" >/tmp/postfix3$$ +echo "" >>/tmp/postfix3$$ +cat $c >> /tmp/postfix3$$ +mv /tmp/postfix3$$ $c && echo "added NetBSD RCS tag to $c" + ) +done + +find man -type f -name '*.[0-9]' -print | while read m; do + sed 1q < $m | grep -q '\$NetBSD' || ( +echo ".\\\" \$NetBSD\$" >/tmp/postfix4$$ +echo ".\\\"" >>/tmp/postfix4$$ +cat $m >> /tmp/postfix4$$ +mv /tmp/postfix4$$ $m && echo "added NetBSD RCS tag to $m" + ) +done + +find conf -type f \( -name '*.cf' -o -name 'post*' -o -name 'Makefile*' \) -print | while read t; do + grep -q '\$NetBSD' $t && continue + sed 1q < $t | grep -q '^\#!' + if [ $? -eq 0 ] ; then + sed 1q < $t >/tmp/postfix5$$ + echo "# \$NetBSD\$" >>/tmp/postfix5$$ + echo "#" >>/tmp/postfix5$$ + sed "1d" < $t >>/tmp/postfix5$$ + else + echo "# \$NetBSD\$" >/tmp/postfix5$$ + echo "#" >>/tmp/postfix5$$ + cat $t >> /tmp/postfix5$$ + fi + mv /tmp/postfix5$$ $t && echo "added NetBSD RCS tag to $t" +done +echo done + +echo You can import now. + +echo Path: src/gnu/dist/postfix +echo Vendor: VENEMA +echo Versiontag: PFIX-X-Y-Z + +exit 0