]> git.sesse.net Git - vlc/blob - extras/contrib/bootstrap
* fix to the svn-recognition
[vlc] / extras / contrib / bootstrap
1 #!/bin/sh
2 # ***************************************************************************
3 # bootstrap : Set up config.mak
4 # ***************************************************************************
5 # Copyright (C) 2003 VideoLAN
6 # $Id$
7 #
8 # Authors: Christophe Massiot <massiot@via.ecp.fr>
9 #
10 # This program is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 2 of the License, or
13 # (at your option) any later version.
14 #
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write to the Free Software
22 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23 # ***************************************************************************
24
25 if test "$#" -gt "1"; then
26   echo "Usage: $0 <host>" >&2
27   echo "  Prepare config.mak file." >&2
28   exit 1
29 fi
30
31 LANG=C
32 export LANG
33 set -e
34 set -x
35
36 BUILD=`gcc -dumpmachine`
37 if test "$#" = "1"; then
38   HOST="$1"
39 else
40   HOST="$BUILD"
41 fi
42
43 echo -e "# Automatically generated by bootstrap.\n# Make changes if you know what you're doing.\n" >| config.mak
44
45 echo "BUILD = $BUILD" >> config.mak
46 echo "HOST = $HOST" >> config.mak
47
48 case $HOST in
49     powerpc-apple-darwin8 | ppc-darwin)
50             echo "EXTRA_CPPFLAGS = -no-cpp-precomp" >> config.mak
51             echo "CONTRIB_URL = http://download.videolan.org/pub/videolan/devtools/contrib-macosx.tar.bz2" >> config.mak
52         ;;
53     i586-pc-beos)
54             echo "EXTRA_LDFLAGS = -lnet" >> config.mak
55         ;;
56     *)
57         ;;
58 esac
59
60 if which curl >/dev/null; then
61         echo "WGET = curl -O" >> config.mak
62 elif wget --version >/dev/null 2>&1; then
63         echo "WGET = wget" >> config.mak
64 else
65         echo "You need at least wget or curl to fetch the packages." >&2
66         exit 1
67 fi
68
69 if test -f /sw/bin/svn; then
70         echo "SVN = /sw/bin/svn" >> config.mak
71 elif test -f /usr/local/bin/svn; then
72         echo "SVN = /usr/local/bin/svn" >> config.mak
73 elif svn help >/dev/null 2>&1; then
74         echo "SVN = svn" >> config.mak
75 else
76         echo "You do not have a subversion client installed." >&2
77 fi
78
79 echo "PREFIX = `pwd`" >> config.mak