Files
ports/www/mhonarc/Makefile
T
Kurt Jaeger 6acd8424fb www/mhonarc: update 2.6.18 -> 2.6.24, switch to other upstream source
- the sympa community maintains this code
  this patch switches to this source and update to last version

PR:		252466
Submitted by:	geoffroy desvernay <dgeo@centrale-marseille.fr>
Approved by:	kerndtr@kerndt.com (maintainer timeout)
Relnotes:	https://github.com/sympa-community/MHonArc/blob/master/CHANGES
2021-01-21 20:21:16 +00:00

48 lines
1.0 KiB
Makefile

# Created by: koshy@india.hp.com
# $FreeBSD$
PORTNAME= mhonarc
PORTVERSION= 2.6.24
CATEGORIES= www mail
MAINTAINER= kerndtr@kerndt.com
COMMENT= WWW front end for mail archives
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
USES= tar:bzip2 perl5
USE_GITHUB= YES
GH_ACCOUNT= sympa-community
GH_PROJECT= MHonArc
NO_BUILD= yes
NO_ARCH= yes
INSTALL_ARGS= -prefix ${STAGEDIR} -binpath ${STAGEDIR}${PREFIX}/bin \
-libpath ${STAGEDIR}${PREFIX}/${SITE_PERL_REL} \
-manpath ${STAGEDIR}${PREFIX}/man \
-batch
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS}
THEDOCSDIR= ${STAGEDIR}${PREFIX}/share/doc/MHonArc
DOCSDIR=${PREFIX}/share/doc/MHonArc
INSTALL_ARGS+= -docpath ${THEDOCSDIR}
.else
INSTALL_ARGS+= -nodoc
.endif
do-install:
cd ${WRKSRC} && ${PERL5} install.me ${INSTALL_ARGS}
.for file in mha-dbedit mha-dbrecover mha-decode mhonarc
${REINPLACE_CMD} -E -e 's,${STAGEDIR},,g' ${STAGEDIR}/${PREFIX}/bin/${file}
${RM} ${STAGEDIR}/${PREFIX}/bin/${file}.bak
.endfor
.include <bsd.port.mk>