Convert the RT{40,42,44} options to new rt42 and rt44 flavours. Drop all references to www/rt40 -- no longer in ports Default flavour is rt44, but several of these modules only support rt42. Ensure @rt42 flavour conflicts with www/rt44 port and vice-versa Re-order various sections and re-roll one patch to placate portlint Reviewed by: portmgr (mat) Differential Revision: https://reviews.freebsd.org/D17285
59 lines
1.9 KiB
Makefile
59 lines
1.9 KiB
Makefile
# Created by: Michael Schout <mschout@gkg.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= RT-Extension-CommandByMail
|
|
PORTVERSION= 3.00
|
|
PORTREVISION= 1
|
|
CATEGORIES= www perl5
|
|
MASTER_SITES= CPAN
|
|
|
|
MAINTAINER= sysadmin@gkg.net
|
|
COMMENT= RT Extension to change ticket metadata via email
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/rt:www/rt${RT_VER}
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/rt:www/rt${RT_VER}
|
|
|
|
FLAVOR?= ${FLAVORS:[1]}
|
|
FLAVORS= rt44 rt42
|
|
rt42_PKGNAMEPREFIX= p5-RT42-
|
|
rt42_CONFLICTS_INSTALL= rt44
|
|
rt44_PKGNAMEPREFIX= p5-RT44-
|
|
rt44_CONFLICTS_INSTALL= rt42
|
|
|
|
.if ${FLAVOR} == rt44
|
|
RT_VER= 44
|
|
.elif ${FLAVOR} == rt42
|
|
RT_VER= 42
|
|
.endif
|
|
|
|
USES= perl5
|
|
USE_PERL5= configure
|
|
|
|
NO_ARCH= yes
|
|
|
|
PLIST_SUB+= RTHOME=share/rt${RT_VER}
|
|
|
|
# Note: You can install using an arbitrary $PREFIX but only if it
|
|
# matches the $PREFIX used to install www/rt{42,44}. Hence ignore
|
|
# $PREFIX in the environment and inherit settings from RT.pm
|
|
do-configure:
|
|
@cd ${CONFIGURE_WRKSRC} && \
|
|
unset PREFIX && \
|
|
${SETENV} ${CONFIGURE_ENV} ${PERL5} -I${SITE_PERL} ${CONFIGURE_CMD} && \
|
|
${PERL5} -pi -e 's/ doc_(perl|site|\$$\(INSTALLDIRS\))_install$$//' Makefile
|
|
|
|
post-configure:
|
|
${REINPLACE_CMD} "/RTxPlugin/d" ${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
${RM} ${STAGEDIR}${PREFIX}/man/auto/RT/Extension/CommandByMail/.packlist
|
|
${RM} ${STAGEDIR}${PREFIX}/share/rt${RT_VER}/plugins/RT-Extension-CommandByMail/lib/RT/Extension/CommandByMail/Test.pm.in
|
|
${RM} ${STAGEDIR}${PREFIX}/share/rt${RT_VER}/plugins/RT-Extension-CommandByMail/lib/RT/Extension/CommandByMail/Test.pm
|
|
${RM} ${STAGEDIR}${PREFIX}/share/rt${RT_VER}/plugins/RT-Extension-CommandByMail/etc/handle_action_pass_currentuser.patch
|
|
${RMDIR} -p ${STAGEDIR}${PREFIX}/share/rt${RT_VER}/plugins/RT-Extension-CommandByMail/etc 2>/dev/null || :
|
|
${RMDIR} -p ${STAGEDIR}${PREFIX}/share/rt${RT_VER}/plugins/RT-Extension-CommandByMail/lib/RT/Extension/CommandByMail >/dev/null || :
|
|
${RMDIR} -p ${STAGEDIR}${PREFIX}/man/auto/RT/Extension/CommandByMail 2>/dev/null || :
|
|
|
|
.include <bsd.port.mk>
|