[BACK]Return to tre2netbsd CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / external / bsd / tre

Annotation of src/external/bsd/tre/tre2netbsd, Revision 1.1

1.1     ! rin         1: #! /bin/sh
        !             2: #
        !             3: #      $NetBSD: nvi2netbsd,v 1.1 2013/11/22 16:00:45 christos 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:
        !            50: prog="$(basename "$0")"
        !            51: r="$1"
        !            52: d="$2"/src/external/bsd/tre/dist
        !            53:
        !            54: if [ $# -ne 2 ]; then echo "${prog} src dest"; exit 1; fi
        !            55:
        !            56: case "$d" in
        !            57:        /*)
        !            58:                ;;
        !            59:        *)
        !            60:                d="`/bin/pwd`/$d"
        !            61:                ;;
        !            62: esac
        !            63:
        !            64: case "$r" in
        !            65:        /*)
        !            66:                ;;
        !            67:        *)
        !            68:                r="`/bin/pwd`/$r"
        !            69:                ;;
        !            70: esac
        !            71:
        !            72: echo preparing directory "$d"
        !            73: rm -rf "$d"
        !            74: mkdir -p "$d"
        !            75:
        !            76: ### Copy the files and directories
        !            77: echo copying "$r" to "$d"
        !            78: cd "$r"
        !            79: pax -rw * "$d"
        !            80:
        !            81: echo removing unneeded directories and files
        !            82:
        !            83: ### Remove unneeded files
        !            84: cd "$d"
        !            85: rm -fr `find . -name '.git*'`
        !            86:
        !            87: exit 0

CVSweb <webmaster@jp.NetBSD.org>