This is not needed with Tomcat 4, it was needed with the attempted Tomcat 7 installation

While installing the javapages:

make[3]: *** No rule to make target `/usr/local/lib/struts/commons-beanutils.jar', needed by `/home/www/java_test/gigascale/WEB-INF/lib/commons-beanutils.jar'.  Stop.
Maybe we don't need to install Beanutils? Look in usr/local/lib/struts for commons-beanutils*.

Install Beanutils from https://commons.apache.org/beanutils/

wget http://www.fightrice.com/mirrors/apache//commons/beanutils/binaries/commons-beanutils-1.8.3-bin.tar.gz
tar -zxf commons-beanutils-1.8.3-bin.tar.gz 
cp commons-beanutils-1.8.3.jar /usr/local/lib/struts/
cd /usr/local/lib/struts/

Install Commons Collections from https://commons.apache.org/collections/download_collections.cgi

wget http://apache.claz.org//commons/collections/binaries/commons-collections-3.2.1-bin.tar.gz
tar -zxf commons-collections-3.2.1-bin.tar.gz
cd commons-collections-3.2.1
cp commons-collections-3.2.1.jar /usr/local/lib/struts/
cd /usr/local/lib/struts/
ln -s commons-collections-3.2.1.jar commons-collections.jar

Install Commons Digester from https://commons.apache.org/digester/download_digester.cgi

wget http://www.linuxtourist.com/apache//commons/digester/binaries/commons-digester3-3.2-bin.tar.gz
tar -zxf commons-digester3-3.2-bin.tar.gz
cd commons-digester3-3.2
cp commons-digester3-3.2.jar /usr/local/lib/struts/
cd /usr/local/lib/struts/
ln -s commons-digester3-3.2.jar commons-digester.jar