#!/bin/bash

# Custom parameters
CVSROOT=:pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot
# CVS tag for 1.5
TAG=MOZILLA_1_8_0_BRANCH

# Set to "" or comment for NOT downloading Firefox needed files
FF="1"

# Set to "" or comment for NOT downloading Thunderbird needed files
TB=""

# Set to "" or comment for NOT downloading Sunbird needed files
SB=""

# Set to "" or comment for NOT downloading common shared files
COMMON="1"



# End of custom parameters

ffox="mozilla/browser/locales/en-US mozilla/extensions/reporter/locales/en-US mozilla/other-licenses/branding/firefox/locales/en-US"
common="mozilla/dom/locales/en-US mozilla/netwerk/locales/en-US mozilla/security/manager/locales/en-US mozilla/toolkit/locales/en-US"
tbird="mozilla/editor/ui/locales/en-US mozilla/mail/locales/en-US mozilla/other-licenses/branding/thunderbird/locales/en-US/"
sbird="mozilla/calendar/locales/en-US mozilla/other-licenses/branding/sunderbird/locales/en-US/"

cvs -d $CVSROOT co ${TAG:+-r $TAG} -P ${COMMON:+ $common} ${FF:+ $ffox} ${TB:+ $tbird} ${SB:+ $sbird}
