Commit 28026271 authored by Łukasz Nowak's avatar Łukasz Nowak

- garbage collector is provided by buildout, there is no need to have it in system deps


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@37117 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 5cb8463f
......@@ -26,7 +26,6 @@ libSDL_gfx-devel
libSDL_image-devel
libboost-devel
libbzip2-devel
libgc-devel
libgdbm-devel
libglib2-devel
libgomp-devel
......
#!/bin/sh
USAGE="""\
Helper for buildout-base installation of ERP5 on Mandriva 2010.
Usage:
mandriva2010.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
libSDL-devel
libSDL_gfx-devel
libSDL_image-devel
libboost-devel
libbzip2-devel
libgc-devel
libgc1
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
libtool
libungif-devel
libxml2-devel
libxslt-devel
make
patch
python-devel
python-setuptools
rpm
scons
subversion
subversion-devel
subversion-tools
tesseract-devel
x11-server-xvfb
zip
zlib1-devel\
"""
if [ x"$1" == x ]; then
urpmi $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