CC-1695 Remove Campcaster Studio and make install easier
Got rid of more unneeded files.
This commit is contained in:
parent
70bf3d6f1c
commit
8721b6e688
|
@ -1,90 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
# Copyright (c) 2010 Sourcefabric O.P.S.
|
|
||||||
#
|
|
||||||
# This file is part of the Campcaster project.
|
|
||||||
# http://campcaster.sourcefabric.org/
|
|
||||||
# To report bugs, send an e-mail to bugs@campware.org
|
|
||||||
#
|
|
||||||
# Campcaster is free software; you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# Campcaster 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 General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with Campcaster; if not, write to the Free Software
|
|
||||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
||||||
#
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
# Run this to set up the build system: configure, makefiles, etc.
|
|
||||||
# (based on the version in enlightenment's cvs)
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
package="StorageServer"
|
|
||||||
|
|
||||||
# assume we're in $basedir/bin
|
|
||||||
reldir=`dirname $0`/..
|
|
||||||
basedir=`cd $reldir; pwd;`
|
|
||||||
test -z "$basedir" && basedir=.
|
|
||||||
|
|
||||||
bindir=$basedir/bin
|
|
||||||
etcdir=$basedir/etc
|
|
||||||
tmpdir=$basedir/tmp
|
|
||||||
|
|
||||||
cd "$tmpdir"
|
|
||||||
DIE=0
|
|
||||||
|
|
||||||
(autoheader --version) < /dev/null > /dev/null 2>&1 || {
|
|
||||||
echo
|
|
||||||
echo "You must have autoconf installed to compile $package."
|
|
||||||
echo "Download the appropriate package for your distribution,"
|
|
||||||
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
|
|
||||||
DIE=1
|
|
||||||
}
|
|
||||||
|
|
||||||
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
|
|
||||||
echo
|
|
||||||
echo "You must have autoconf installed to compile $package."
|
|
||||||
echo "Download the appropriate package for your distribution,"
|
|
||||||
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
|
|
||||||
DIE=1
|
|
||||||
}
|
|
||||||
|
|
||||||
if test "$DIE" -eq 1; then
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if test -z "$*"; then
|
|
||||||
echo "I am going to run ./configure with no arguments - if you wish "
|
|
||||||
echo "to pass any to it, please specify them on the $0 command line."
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Generating configuration files for $package, please wait...."
|
|
||||||
|
|
||||||
configure_ac=${etcdir}/configure.ac
|
|
||||||
configure=${tmpdir}/configure
|
|
||||||
aclocal_m4=${tmpdir}/aclocal.m4
|
|
||||||
|
|
||||||
# copy over configure.ac and acinlclude.m4 from etc to tmp,
|
|
||||||
# as aclocal >= 1.8 is sooo unbelivably stupid that it will simply try to
|
|
||||||
# look for configure.ac in the current directory, and include acinclude.m4
|
|
||||||
# in aclocal.m4 it without a directory path in front
|
|
||||||
#ACLOCAL_FLAGS="-I ${tmpdir} --acdir=${tmpdir} --output=${aclocal_m4}"
|
|
||||||
#echo " aclocal $ACLOCAL_FLAGS"
|
|
||||||
#cp -f ${configure_ac} ${tmpdir}
|
|
||||||
#cp -f ${etcdir}/acinclude.m4 ${tmpdir}
|
|
||||||
#aclocal $ACLOCAL_FLAGS
|
|
||||||
|
|
||||||
#echo " autoheader ${configure_ac}"
|
|
||||||
#autoheader ${configure_ac}
|
|
||||||
|
|
||||||
echo " autoconf -I ${tmpdir} -o ${configure} ${configure_ac}"
|
|
||||||
autoconf -I ${tmpdir} -o ${configure} ${configure_ac}
|
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
# Copyright (c) 2010 Sourcefabric O.P.S.
|
|
||||||
#
|
|
||||||
# This file is part of the Campcaster project.
|
|
||||||
# http://campcaster.sourcefabric.org/
|
|
||||||
# To report bugs, send an e-mail to bugs@campware.org
|
|
||||||
#
|
|
||||||
# Campcaster is free software; you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# Campcaster 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 General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with Campcaster; if not, write to the Free Software
|
|
||||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
||||||
#
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
#
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
reldir=`dirname $0`/..
|
|
||||||
cd $reldir/var/tests
|
|
||||||
php -q $1 || exit $?
|
|
||||||
exit 0
|
|
|
@ -1,31 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
# Copyright (c) 2010 Sourcefabric O.P.S.
|
|
||||||
#
|
|
||||||
# This file is part of the Campcaster project.
|
|
||||||
# http://campcaster.sourcefabric.org/
|
|
||||||
# To report bugs, send an e-mail to bugs@campware.org
|
|
||||||
#
|
|
||||||
# Campcaster is free software; you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# Campcaster 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 General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with Campcaster; if not, write to the Free Software
|
|
||||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
||||||
#
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
# XMLRPC test client call
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
reldir=`dirname $0`/..
|
|
||||||
cd $reldir/var/xmlrpc
|
|
||||||
php -q ./xr_cli_test.php $*
|
|
|
@ -1,30 +0,0 @@
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
|
|
||||||
<title>storageServer documentation</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1>Preface</h1>
|
|
||||||
This document is part of the
|
|
||||||
<a href="http://campcaster.sourcefabric.org/">Campcaster</a>
|
|
||||||
project, Copyright © 2010 Sourcefabric O.P.S., under the GNU <a
|
|
||||||
href="http://www.gnu.org/licenses/gpl.html">GPL</a>.<br>
|
|
||||||
<h1>Scope</h1>
|
|
||||||
This document collects storageServer documentation, both
|
|
||||||
generated and handwritten.<br>
|
|
||||||
<h1>Introduction</h1>
|
|
||||||
The links below provide useful documentation for the storageServer
|
|
||||||
developer or user.<br>
|
|
||||||
<h1>Static documentation.</h1>
|
|
||||||
<ul>
|
|
||||||
<!-- <li> <a href=".html"></a></li>-->
|
|
||||||
</ul>
|
|
||||||
<h1>Generated documentation</h1>
|
|
||||||
<ul>
|
|
||||||
<li><a href="doxygen/html/index.html">documentation generated from the source
|
|
||||||
code</a></li>
|
|
||||||
</ul>
|
|
||||||
<br>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1 +0,0 @@
|
||||||
keep me
|
|
|
@ -91,7 +91,7 @@ tmpdir=`mktemp -d $tmpmaindir/tmp.XXXXXX`
|
||||||
echo "Backuping to $destdir/$destfile :"
|
echo "Backuping to $destdir/$destfile :"
|
||||||
echo "Dumping database ..."
|
echo "Dumping database ..."
|
||||||
cd $phpdir
|
cd $phpdir
|
||||||
php -q backup.php > $tmpdir/$dbxml
|
php -q campcaster_backup.php > $tmpdir/$dbxml
|
||||||
echo "Packaging stored files ..."
|
echo "Packaging stored files ..."
|
||||||
cd $phpdir
|
cd $phpdir
|
||||||
storpath=`php -q getStorPath.php`
|
storpath=`php -q getStorPath.php`
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
<?php
|
|
||||||
$STORAGE_SERVER_PATH = 'ls_storageServer';
|
|
||||||
?>
|
|
Loading…
Reference in New Issue