forked from Lainports/freebsd-ports
0.6 - Fixed incompatibility with HTML::Parser 1.35 - Upped the required versions of Pod::LaTeX and HTML::Entities to ones I know work 0.5 - Fixed an incorrect quoting bug in MathMode - Added a couple of tests for quote bug and escaping - Now unescapes any singular character (\\ => \, \x => x, etc), this may be too broad and need casing? Approved by: tobez (implicit)
32 lines
813 B
Makefile
32 lines
813 B
Makefile
# New ports collection makefile for: TeX-Encode
|
|
# Date created: 15 May2006
|
|
# Whom: Aaron Dalton <aaron@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= TeX-Encode
|
|
PORTVERSION= 0.6
|
|
CATEGORIES= textproc perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= ../../authors/id/T/TI/TIMBRODY
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= aaron@FreeBSD.org
|
|
COMMENT= Encode/decode Perl utf-8 strings into TeX
|
|
|
|
BUILD_DEPENDS= ${SITE_PERL}/Pod/LaTeX.pm:${PORTSDIR}/textproc/p5-Pod-LaTeX \
|
|
${SITE_PERL}/${PERL_ARCH}/HTML/Entities.pm:${PORTSDIR}/www/p5-HTML-Parser
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
MAN3= TeX::Encode.3
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PERL_LEVEL} < 500800
|
|
IGNORE= requires at least Perl 5.8 due to dependencies. Please install lang/perl5.8 and try again
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|