Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

#! /bin/sh
#
#	$NetBSD: postfix2netbsd,v 1.3 2011/10/08 19:28:40 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
cleantags .

### 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

VERSION=$(sed -n -e 's/^#define MAIL_VERSION_NUMBER.*"\(.*\)".*/\1/p' src/global/mail_version.h | tr . -)

echo You can import now.

echo Path: src/external/ibm-public/postfix/dist
echo Vendor: VENEMA
echo Versiontag: PFIX-${VERSION}

exit 0