aboutsummaryrefslogtreecommitdiff
path: root/scripts/checkout-developer-layout.sh
blob: ba05d90cee11d70ddda2c5fb0fb249ed17f8bd4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/sh

# this script automatically generates a directory with all of the Pd code out
# of CVS in the standard developer's layout.  <hans@at.or.at>

# Usage: 
#	 - with no arguments, it will check out the code using anonymous CVS.
#	 - to check out using your SourceForge ID, add that as the argument

URL="https://pure-data.svn.sourceforge.net/svnroot/pure-data/trunk/"
GEMURL="https://pd-gem.svn.sourceforge.net/svnroot/pd-gem/trunk/"
PDAUTH=""
SVNOPTIONS="--ignore-externals"

print_usage ()
{
    echo " "
    echo "Usage: $0 [sourceforge ID]"
    echo "   if no ID is given, it will check out anonymously"
    echo " "
    exit
}

if [ $# -eq 0 ]; then
    echo "Checking out anonymously. Give your SourceForge ID if you don't want that."
elif [ "$1" == "--help" ]; then
    print_usage
elif [ "$1" == "-h" ]; then
    print_usage
elif [ $# -eq 1 ]; then
    PDAUTH="--username $1"
else
    print_usage
fi

echo "checking out pure-data"
svn checkout $SVNOPTIONS $PDAUTH $URL pure-data

cd pure-data

cd externals
for section in Gem; do
         echo "checking out Gem::${section}"
         svn checkout $SVNOPTIONS ${PDAUTH} ${GEMURL}/${section} ${section}
done
cd ..


# make the symlinks which simulate the files being installed into the packages
cd packages && make devsymlinks