mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
97ee7ba5f3
- Fetch from Github because the releases on CTAN are not versioned - Fix LICENSE Relnotes: https://github.com/ftilmann/latexdiff/releases/tag/1.2.1
30 lines
771 B
Makefile
30 lines
771 B
Makefile
# Created by: Maxim Loginov <Zeliboba@mail.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= latexdiff
|
|
PORTVERSION= 1.2.1
|
|
CATEGORIES= print perl5
|
|
MASTER_SITES= https://github.com/ftilmann/${PORTNAME}/releases/download/${PORTVERSION}/
|
|
|
|
MAINTAINER= jhale@FreeBSD.org
|
|
COMMENT= Determine and mark up significant differences between latex files
|
|
|
|
LICENSE= GPLv3+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= perl5
|
|
USE_PERL5= run
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
.for i in latexdiff-fast latexdiff-so latexdiff-vc latexrevise
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${i} ${STAGEDIR}${PREFIX}/bin
|
|
.endfor
|
|
.for m in latexdiff.1 latexdiff-vc.1 latexrevise.1
|
|
${INSTALL_MAN} ${WRKSRC}/${m} ${STAGEDIR}${MAN1PREFIX}/man/man1
|
|
.endfor
|
|
${LN} -s latexdiff-so ${STAGEDIR}${PREFIX}/bin/latexdiff
|
|
|
|
.include <bsd.port.mk>
|