Commit f0418a36 authored by Łukasz Nowak's avatar Łukasz Nowak
Browse files

- remove helpers, they are not needed anymore

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@41098 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 8de92209
Helpers are being removed.
Please do not use in case of ERP5 Appliance 2.12
Please try to not use in case of ERP5 Appliance 2.8
Plesae see 00CANDIDATE_TO_REMOVE00.txt
#!/bin/sh
PACKAGE_LIST="""\
automake1.9
bison
build-essential
cpio
flex
gcc
gettext
libboost-dev
libboost-program-options-dev
libboost-regex-dev
libboost-serialization-dev
libbz2-dev
libgc-dev
libgdbm-dev
libgif-dev
libglib2.0-dev
libjpeg62-dev
libldap2-dev
libncurses5-dev
libneon27-gnutls-dev
libnss3-tools
libpng12-dev
libreadline-dev
librsync-dev
libsasl2-dev
libsdl-gfx1.2-dev
libsdl-image1.2-dev
libsdl1.2-dev
libssl-dev
libsvn-dev
libtool
libxml2-dev
libxslt1-dev
make
openssl
patch
python-setuptools
rpm
subversion
subversion-tools
tesseract-ocr-dev
xvfb
zip
zlib1g-dev\
"""
apt-get install $PACKAGE_LIST $@
#!/bin/sh
USAGE="""\
Helper for buildout-base installation of ERP5 on Fedora 12.
Usage:
fedora.sh [-h|-l]
With no options, attempts to install the dependencies required
to run the buildout.
Options:
-h shows this message
-l lists the required dependencies\
"""
PACKAGE_LIST="""\
automake
bison
cpio
flex
gcc
gcc-c++
gettext
groff
SDL-devel
SDL_gfx-devel
SDL_image-devel
boost-devel
libzip-devel
gdbm-devel
glib2-devel
libgomp
libjpeg-devel
libtiff-devel
libsqlite3x-devel
bzip2-devel
giflib-devel
openldap-devel
ncurses-devel
neon-devel
openssl-devel
libpng-devel
readline-devel
librsync-devel
libgsasl-devel
mingw32-termcap
libtool
giflib
libxml2-devel
libcom_err-devel
libxslt-devel
make
patch
python-devel
python-setuptools
rpm
subversion
subversion-devel
tesseract-devel
xorg-x11-server-devel
xorg-x11-server-Xvfb
zip
zlib-devel\
"""
if [ x"$1" == x ]; then
yum install $PACKAGE_LIST
elif [ "$1" = "-l" ]; then
echo "$PACKAGE_LIST"
elif [ "$1" = "-h" ]; then
echo "$USAGE"
else
echo "Unknown argument."
echo "$USAGE"
fi
#!/bin/sh
USAGE="""\
Helper for buildout-base installation of ERP5 on Mandriva 2010.
Usage:
sh mandriva2010.0.sh [-h|-l]
With no options, attempts to install the dependencies required
to run the buildout.
Options:
-h shows this message
-l lists the required dependencies\
"""
PACKAGE_LIST="""\
automake
bison
cpio
flex
gcc
gcc-c++
gettext
git-core
groff
java-devel-gcj
libSDL-devel
libSDL_gfx-devel
libSDL_image-devel
libboost-devel
libbzip2-devel
libgdbm-devel
libglib2-devel
libgomp-devel
libjpeg-devel
libldap-devel
libncurses-devel
libneon0.27-devel
libopenssl-devel
libpng-devel
libreadline-devel
librsync-devel
libsasl2-devel
libtermcap-devel
libtiff-devel
libtool
libungif-devel
libxml2-devel
libxslt-devel
make
patch
python-devel
python-setuptools
rpm
subversion
subversion-devel
subversion-tools
tesseract-devel
x11-server-xvfb
zip
zlib1-devel\
"""
if [ x"$1" == x ]; then
urpmi --no-suggests $PACKAGE_LIST
elif [ "$1" = "-l" ]; then
echo "$PACKAGE_LIST"
elif [ "$1" = "-h" ]; then
echo "$USAGE"
else
echo "Unknown argument."
echo "$USAGE"
fi
#!/bin/sh
USAGE="""\
Helper for buildout-base installation of ERP5 on OpenSUSE 11.2
Usage:
opensuse.sh [-h|-l]
With no options, attempts to install the dependencies required
to run the buildout.
Options:
-h shows this message
-l lists the required dependencies\
"""
PACKAGE_LIST="""\
automake
bison
boost-devel
cpio
flex
gc-devel
gcc
gcc-c++
gcc43
gcc43-c++
gcc43-java
gdbm-devel
gettext-runtime
giflib-devel
git
glib2-devel
groff
libSDL-devel
libSDL_gfx-devel
libSDL_image-devel
libSDLmm-devel
libbz2-devel
libcom_err-devel
libgsasl-devel
libjpeg-devel
libldapcpp-devel
libneon-devel
libopenssl-devel
libpng-devel
librsync
libstdc++43-devel
libtiff-devel
libtool
libxml2-devel
libxslt-devel
libzip-devel
make
ncurses-devel
patch
pcre-devel
python-devel
python-setuptools
python-xml
readline-devel
rpm
sqlite3-devel
subversion
subversion-devel
subversion-tools
termcap
xorg-x11-server
xorg-x11-server-extra
zip
zlib-devel\
"""
if [ x"$1" == x ]; then
zypper install $PACKAGE_LIST
elif [ "$1" = "-l" ]; then
echo "$PACKAGE_LIST"
elif [ "$1" = "-h" ]; then
echo "$USAGE"
else
echo "Unknown argument."
echo "$USAGE"
fi
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment