A OK encontrou uma dica para a solução no link .
Aparentemente, o pacote gitweb está usando o diretório -for Apache 2.4- obsoleto /etc/apache2/conf.d/
. Renomeando / movendo para o diretório correto:
# mv /etc/apache2/conf.d/gitweb /etc/apache2/conf-available/gitweb.conf
# a2enconf
Your choices are: charset gitweb javascript-common localized-error-pages mediawiki other-vhosts-access-log security serve-cgi-bin
Which conf(s) do you want to enable (wildcards ok)?
gitweb
Enabling conf gitweb.
To activate the new configuration, you need to run:
service apache2 reload
# apache2ctl restart
AH00526: Syntax error on line 4 of /etc/apache2/conf-enabled/gitweb.conf:
Either all Options must start with + or -, or no Option may.
Action 'restart' failed.
The Apache error log may have more information.
# vi /etc/apache2/conf-enabled/gitweb.conf
# apache2ctl restart
Aparentemente, o FollowSymlinks deve ser precedido por um "+". Depois de alterar essa parte, a instalação funciona.