1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-04 06:15:24 +00:00
freebsd-ports/russian/p5-XML-Parser-encodings/Makefile
Mathieu Arnold f6d56007b9 Remove all := from BUILD_DEPENDS, here are never needed.
While there, cleanup, and sort depends.

When build and run dependencies are the same, there are three ways to
avoid duplicating the list while not adding the framework added
BUILD_DEPENDS to the RUN_DEPENDS.  In order of preference, they are:

1) use RUN_DEPENDS to set BUILD_DEPENDS:

BUILD_DEPENDS=	${RUN_DEPENDS}
RUN_DEPENDS=	foo:bar/baz

2) create another variable and use it:

MY_DEPENDS= foo:bar/baz
BUILD_DEPENDS=	${MY_DEPENDS}
RUN_DEPENDS=	${MY_DEPENDS}

3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation:

BUILD_DEPENDS=	foo:bar/baz
RUN_DEPENDS:=	${BUILD_DEPENDS}

Sponsored by:	Absolight
2018-07-09 08:40:17 +00:00

55 lines
1.5 KiB
Makefile

# Created by: Sergey Skvortsov <skv@protey.ru>
# $FreeBSD$
PORTNAME= XML-Parser-encodings
PORTVERSION= 1.03
PORTREVISION= 1
CATEGORIES= russian textproc perl5
DISTFILES=
MAINTAINER= perl@FreeBSD.org
COMMENT= Additional Russian encodings for XML::Parser
BUILD_DEPENDS= ${RUN_DEPENDS} \
p5-XML-Encoding>=0:textproc/p5-XML-Encoding \
${NONEXISTENT}:converters/iconv:extract \
${NONEXISTENT}:converters/iconv-extra:extract
RUN_DEPENDS= p5-XML-Parser>=2.40:textproc/p5-XML-Parser
USES= perl5
NO_WRKSUBDIR= YES
RUSSIANENC= cp1251 cp866 mac-cyrillic
.include <bsd.port.pre.mk>
PKGNAMEPREFIX:= ${PKGNAMEPREFIX}p5-
post-extract:
.for ICONVPORT in iconv iconv-extra
@${LN} -sfh \
`cd ${PORTSDIR}/converters/${ICONVPORT} && ${MAKE} -V WRKSRC`/ccs \
${WRKSRC}/${ICONVPORT}
.endfor
do-configure:
@${CP} ${WRKSRC}/iconv/cp866.txt ${WRKSRC}
@${CP} ${WRKSRC}/iconv-extra/windows-1251.txt ${WRKSRC}/cp1251.txt
@${CP} ${WRKSRC}/iconv-extra/mac-cyrillic.txt ${WRKSRC}
@${PERL} -pi -e 's/\r/\n/gm;' ${WRKSRC}/mac-cyrillic.txt
do-build:
.for ENC in ${RUSSIANENC}
@${LOCALBASE}/bin/make_encmap ${ENC} ${WRKSRC}/${ENC}.txt | \
${PERL} -pi -e "s/(?<=^<encmap name='${ENC}')()(?=>)/ expat='yes'/;" \
>${WRKSRC}/${ENC}.xml
@${LOCALBASE}/bin/compile_encoding \
-o ${WRKSRC}/${ENC}.enc ${WRKSRC}/${ENC}.xml
.endfor
do-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/XML/Parser/Encodings
${INSTALL_DATA} ${WRKSRC}/*.enc \
${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/XML/Parser/Encodings
.include <bsd.port.post.mk>