1#! /bin/sh
2#
3#	$NetBSD: tre2netbsd,v 1.1 2017/11/17 16:08:20 rin Exp $
4#
5# Copyright (c) 2000 The NetBSD Foundation, Inc.
6# All rights reserved.
7#
8# Redistribution and use in source and binary forms, with or without
9# modification, are permitted provided that the following conditions
10# are met:
11# 1. Redistributions of source code must retain the above copyright
12#    notice, this list of conditions and the following disclaimer.
13# 2. Redistributions in binary form must reproduce the above copyright
14#    notice, this list of conditions and the following disclaimer in the
15#    documentation and/or other materials provided with the distribution.
16#
17# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
18# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
21# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27# POSSIBILITY OF SUCH DAMAGE.
28#
29# based on nvi2netbsd,
30# itself based on bind2netbsd by Bernd Ernesti and changes by Simon Burge
31#
32# Rough instructions for importing new tre release from their git repository:
33#
34#	$ cd /some/where/temporary
35#	$ git clone https://github.com/laurikari/tre.git
36#	$ sh /usr/src/external/bsd/tre/tre2netbsd tre `pwd`
37#	$ cd src/external/bsd/tre/dist
38#	$ cvs import src/external/bsd/tre/dist LAURIKARI tre-yyyymmdd
39#	>>> if any conflicts, merge, fix and commit them.
40#	>>> check out src/external/bsd/tre/dist.
41#	$ cd checked-out-directory
42#	>>> next step requires autoconf, automake, gettext, and libtool.
43#	$ utils/autogen.sh
44#	$ ./configure --prefix=/usr --without-alloca
45#	>>> merge newly generated files:
46#	>>> 	config.h	 into /usr/src/external/bsd/tre/include
47#	>>> 	lib/tre-config.h into /usr/src/external/bsd/tre/include
48#	>>> 	tre.pc		 into /usr/src/external/bsd/tre/lib
49
50prog="$(basename "$0")"
51r="$1"
52d="$2"/src/external/bsd/tre/dist
53
54if [ $# -ne 2 ]; then echo "${prog} src dest"; exit 1; fi
55
56case "$d" in
57	/*)
58		;;
59	*)
60		d="`/bin/pwd`/$d"
61		;;
62esac
63
64case "$r" in
65	/*)
66		;;
67	*)
68		r="`/bin/pwd`/$r"
69		;;
70esac
71
72echo preparing directory "$d"
73rm -rf "$d"
74mkdir -p "$d"
75
76### Copy the files and directories
77echo copying "$r" to "$d"
78cd "$r"
79pax -rw * "$d"
80
81echo removing unneeded directories and files
82
83### Remove unneeded files
84cd "$d"
85rm -fr `find . -name '.git*'`
86
87exit 0
88