1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/print/texvc/Makefile
Max Brazhnikov 21646392b0 - Support staging
- Use new LIB_DEPENDS syntax
- Use options helpers
- Convert to USES
- Minor changes/fixes
2013-10-23 13:08:41 +00:00

36 lines
781 B
Makefile

# $FreeBSD$
PORTNAME= texvc
PORTVERSION= 20050202
PORTREVISION= 3
CATEGORIES= print
MASTER_SITES= SF/wikipedia/Support%20files/${PORTNAME}%20Linux-x86%20source%20%2B%20binary
DISTNAME= ${PORTNAME}-linux-x86-${PORTVERSION}
MAINTAINER= makc@FreeBSD.org
COMMENT= Convert latex equations to HTML, MathML, PNG
USES= gmake
USE_OCAML= yes
NO_OCAML_RUNDEPENDS= yes
BUILD_WRKSRC= ${WRKSRC}/src
PLIST_FILES= bin/texvc
OPTIONS_DEFINE= RASTER
OPTIONS_DEFAULT= ${OPTIONS_DEFINE}
RASTER_DESC= rasterization support
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MRASTER}
USE_GHOSTSCRIPT_RUN= yes
USE_TEX= latex dvipsk
RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick
.endif
do-install:
${INSTALL_PROGRAM} ${BUILD_WRKSRC}/texvc ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>