mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-11 07:22:22 +00:00
289883b11b
* Add PKGNAMESUFFIX and rename the directory. This was done to show that IM6 is not the "main" version. But still fully supported by upstream. * Convert a number of options to optionhelpers. * Add option for ISO/IEC 23008-12:2017 HEIF suport * Add comment to pkg-descr explaining IM6's "legacy" tag. * Add comment to the patch-config_policy.xml file why it still needed. Please note that IM7 is not a drop in replacement due to library API and command arguments changes. And as a result ports need to decide for themself which version to use. Chase these changes in all the ports that using IM6. PR: 225102 (based on, only the version update) [1] Submitted by: Pascal Christen <pascal.christen@hostpoint.ch>
34 lines
736 B
Makefile
34 lines
736 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= l2p
|
|
PORTVERSION= 1.1.1
|
|
PORTREVISION= 4
|
|
CATEGORIES= graphics print perl5
|
|
MASTER_SITES= http://static.redsymbol.net/software/l2p/dist/ \
|
|
http://nivit.altervista.org/FreeBSD/ports/distfiles/
|
|
|
|
MAINTAINER= nivit@FreeBSD.org
|
|
COMMENT= Create PNG images from LaTeX math expressions
|
|
|
|
RUN_DEPENDS= convert:graphics/ImageMagick6
|
|
|
|
NO_BUILD= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
PLIST_FILES= bin/l2p
|
|
PORTDOCS= l2p.txt l2p.html
|
|
|
|
SHEBANG_FILES= ${WRKSRC}/${PORTNAME}
|
|
|
|
USE_PERL5= run
|
|
USE_TEX= latex dvipsk
|
|
USES= perl5 shebangfix zip
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|