2010-06-15 13:07:29 +00:00
|
|
|
#!/bin/sh
|
2010-07-10 12:37:18 +00:00
|
|
|
# copyright (c) 2010 Gregory Hainaut
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This package is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
2010-06-15 13:07:29 +00:00
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# Global Parameter
|
|
|
|
######################################################################
|
|
|
|
# Svn parameter
|
|
|
|
if [ -n "$1" ] ; then
|
|
|
|
SVN_CO_VERSION=$1;
|
|
|
|
else
|
2010-08-30 20:32:59 +00:00
|
|
|
echo "Please provide the subversion version for first parameter"
|
2010-06-15 13:07:29 +00:00
|
|
|
exit 1;
|
|
|
|
fi
|
2010-08-30 20:32:59 +00:00
|
|
|
if [ -n "$2" ] ; then
|
|
|
|
# Use branch argument
|
|
|
|
SVN_TRUNK="http://pcsx2.googlecode.com/svn/branches/$2"
|
|
|
|
else
|
|
|
|
# by default take the trunk
|
|
|
|
SVN_TRUNK="http://pcsx2.googlecode.com/svn/trunk"
|
|
|
|
fi
|
2010-06-15 13:07:29 +00:00
|
|
|
|
|
|
|
# Debian name of package and tarball
|
|
|
|
PKG_NAME="pcsx2.snapshot-${SVN_CO_VERSION}"
|
|
|
|
TAR_NAME="pcsx2.snapshot_${SVN_CO_VERSION}.orig.tar"
|
|
|
|
|
|
|
|
# Directory
|
|
|
|
TMP_DIR=/tmp
|
|
|
|
ROOT_DIR=${TMP_DIR}/subversion_pcsx2_${SVN_CO_VERSION}
|
|
|
|
NEW_DIR=${TMP_DIR}/$PKG_NAME
|
|
|
|
|
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# Basic function
|
|
|
|
######################################################################
|
|
|
|
get_svn_dir()
|
|
|
|
{
|
|
|
|
for directory in $* ; do
|
|
|
|
# Print the directory without /
|
|
|
|
echo " $directory" | sed -e 's/\//\ /g'
|
|
|
|
if [ -e `basename ${directory}` ] ; then
|
|
|
|
# Directory already exist so only update
|
|
|
|
svn up --quiet ${SVN_TRUNK}/${directory} -r $SVN_CO_VERSION;
|
|
|
|
else
|
|
|
|
svn co --quiet ${SVN_TRUNK}/${directory} -r $SVN_CO_VERSION;
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
get_svn_file()
|
|
|
|
{
|
|
|
|
for file in $* ; do
|
|
|
|
if [ ! -e `basename ${file}` ] ; then
|
|
|
|
# Versionning information are not support for a single file
|
|
|
|
# so you can not use svn co
|
|
|
|
svn export --quiet ${SVN_TRUNK}/${file} -r $SVN_CO_VERSION;
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# Main script
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
## Download the svn repository (only the usefull things)
|
|
|
|
echo "Download pcsx2 source rev ${SVN_CO_VERSION}"
|
|
|
|
mkdir -p $ROOT_DIR;
|
|
|
|
(cd $ROOT_DIR;
|
|
|
|
get_svn_file CMakeLists.txt;
|
|
|
|
get_svn_dir bin common cmake pcsx2 tools;
|
2010-07-02 14:55:41 +00:00
|
|
|
get_svn_dir debian-unstable-upstream;
|
2010-06-15 13:07:29 +00:00
|
|
|
echo "Done")
|
|
|
|
|
2010-08-30 20:32:59 +00:00
|
|
|
echo "Download Linux compatible plugins ${SVN_CO_VERSION}"
|
|
|
|
# Note others plugins exists but they are not 100% copyrigh free
|
2010-06-15 13:07:29 +00:00
|
|
|
mkdir -p $ROOT_DIR/plugins
|
|
|
|
(cd $ROOT_DIR/plugins;
|
|
|
|
get_svn_file plugins/CMakeLists.txt;
|
|
|
|
# DVD
|
2010-07-08 19:03:55 +00:00
|
|
|
get_svn_dir plugins/CDVDnull;
|
|
|
|
# Copyright issue
|
|
|
|
# get_svn_dir plugins/CDVDnull plugins/CDVDiso;
|
2010-06-15 13:07:29 +00:00
|
|
|
# PAD
|
|
|
|
get_svn_dir plugins/PadNull plugins/onepad;
|
|
|
|
# AUDIO
|
|
|
|
get_svn_dir plugins/SPU2null plugins/spu2-x plugins/zerospu2;
|
|
|
|
# Graphics
|
|
|
|
get_svn_dir plugins/GSnull plugins/zzogl-pg;
|
|
|
|
# Misc
|
|
|
|
get_svn_dir plugins/dev9null plugins/FWnull plugins/USBnull;
|
|
|
|
echo "Note: some plugins are more or less deprecated CDVDisoEFP, CDVDlinuz, Zerogs, Zeropad ...";
|
|
|
|
echo "Done")
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
echo "Copy the subversion repository in a tmp directory"
|
|
|
|
# Copy the dir
|
|
|
|
rm -fr $NEW_DIR
|
|
|
|
cp -r $ROOT_DIR $NEW_DIR
|
|
|
|
|
|
|
|
echo "Remove .svn file"
|
|
|
|
find $NEW_DIR -name ".svn" -type d -exec rm -fr {} \; 2> /dev/null
|
|
|
|
echo "Remove old build system (script and autotools)"
|
|
|
|
find $NEW_DIR -name "build.sh" -exec rm -f {} \;
|
|
|
|
find $NEW_DIR -name "install-sh" -exec rm -f {} \;
|
|
|
|
find $NEW_DIR -name "depcomp" -exec rm -f {} \;
|
|
|
|
find $NEW_DIR -name "missing" -exec rm -f {} \;
|
|
|
|
find $NEW_DIR -name "aclocal.m4" -exec rm -f {} \;
|
|
|
|
find $NEW_DIR -name "configure.ac" -exec rm -f {} \;
|
|
|
|
find $NEW_DIR -name "Makefile.am" -exec rm -f {} \;
|
|
|
|
echo "Remove 3rd party directory"
|
|
|
|
find $NEW_DIR -name "3rdparty" -exec rm -fr {} \; 2> /dev/null
|
2010-07-05 12:10:15 +00:00
|
|
|
echo "Remove windows file (useless & copyright issue)"
|
2010-08-30 20:32:59 +00:00
|
|
|
find $NEW_DIR -iname "windows" -type d -exec rm -fr {} \; 2> /dev/null
|
|
|
|
find $NEW_DIR -name "Win32" -type d -exec rm -fr {} \; 2> /dev/null
|
2010-07-05 12:10:15 +00:00
|
|
|
rm -fr "${NEW_DIR}/plugins/zzogl-pg/opengl/Win32"
|
2010-07-08 19:03:55 +00:00
|
|
|
rm -fr "${NEW_DIR}/tools/GSDumpGUI"
|
|
|
|
rm -fr "${NEW_DIR}/common/vsprops"
|
|
|
|
echo "Remove useless file (copyright issue)"
|
|
|
|
rm -fr "${NEW_DIR}/plugins/zzogl-pg/opengl/ZeroGSShaders/zlib"
|
|
|
|
rm -fr "${NEW_DIR}/common/src/Utilities/x86/MemcpyFast.cpp"
|
2010-06-15 13:07:29 +00:00
|
|
|
|
|
|
|
## BUILD
|
|
|
|
echo "Build the tar gz file"
|
2010-08-30 20:32:59 +00:00
|
|
|
tar -C $TMP_DIR -czf ${TAR_NAME}.gz $PKG_NAME
|
2010-06-15 13:07:29 +00:00
|
|
|
|
|
|
|
## Clean
|
|
|
|
rm -fr $NEW_DIR
|
2010-08-30 20:32:59 +00:00
|
|
|
rm -fr $ROOT_DIR
|