RT (Request tracker) HELP!

Started by pcott, August 05, 2004, 09:53:20 AM

Previous topic - Next topic

pcott

Has anyone here managed to get RT3 (Request tracker) running from the port with the toaster? It just blows up when we try to install it..

mchallis

I know this is an old posting. No one followed up. The only problem I had when attempting to install RT and toaster on the same install was RT's default to mod-perl broke some web admin stuff in toaster. I think you could get around that by installing Apache twice (different ports) once for toaster and once for RT or by using fastcgi. I plan to try this again in the near future.

matt

I haven't every tried it, but in looking at the RT3 port's Makefile, it looks like it's just a matter of setting -DWITH_APACHE2 when you build it, assuming you're using the default of install_apache = 1.

Matt

<snipped from ports/www/rt3/Makefile>
.if defined(WITH_APACHE2)
BUILD_DEPENDS+=  ${LOCALBASE}/libexec/apache2/mod_perl.so:${PORTSDIR}/www/mod _perl2
DEPENDS_ARGS+=  WITHOUT_MODPERL=yes
DEPENDS_ARGS+=  WITH_MODPERL2=yes
.else
BUILD_DEPENDS+=  ${LOCALBASE}/libexec/apache/libperl.so:${PORTSDIR}/www/mod_p erl
.endif
</snip>