How to install cruisecontrol/phpUnderControl in Debian Etch
This is how I install cruisecontrol/phpUnderControl, including all dependencies, in a fresh Debian Etch machine.
# add the backport mirror for java and subversion echo "deb http://www.backports.org/debian etch-backports main contrib non-free" >> /etc/apt/sources.list # add the backport mirror key gpg --keyserver hkp://pgp.mit.edu --recv-keys 16BA136C gpg --armor --export 16BA136C | apt-key add - apt-get update # install backports (java and subversion) apt-get -t etch-backports install sun-java6-bin sun-java6-jre apt-get -t etch-backports install subversion # install apache (mainly for phpmyadmin) and php5 + cli apt-get install apache2-mpm-prefork apt-get install php5 php5-cli php5-dev apt-get install php-pear make # install xdebug (needed for phpunit) pecl install xdebug echo "zend_extension=/usr/lib/php5/20060613+lfs/xdebug.so" >> /etc/php5/cli/php.ini # install phpunit and phpundercontrol via pear pear upgrade --force pear pear channel-discover pear.phpunit.de pear channel-discover components.ez.no pear install phpunit/phpunit pear install --force --alldeps channel://components.ez.no/Graph pear install --force --alldeps channel://pear.phpunit.de/phpundercontrol-0.4.7 # get and extract cruisecontrol apt-get install unzip wget cd ~ wget http://freefr.dl.sourceforge.net/sourceforge/cruisecontrol/cruisecontrol-bin-2.8.2.zip unzip cruisecontrol-bin-2.8.2.zip -d /opt cd /opt ln -s cruisecontrol-bin-2.8.2 cruisecontrol # run phpundercontrol modifications against cruisecontrol phpuc install /opt/cruisecontrol # first testrun cd /opt/cruisecontrol ./cruisecontrol.sh
Since the first time I have seen 



email me
follow me
