mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-29 05:38:00 +00:00
1ebe4c08e7
- Support staging - Add LICENSE - Store unversioned distfile in a versioned subdirectory - Convert PLIST_FILES/MAN1 to pkg-plist - Add WWW to pkg-descr - Take maintainership (previous maintainer no longer uses FreeBSD) PR: 191307 Submitted by: jhale Approved by: Zeliboba@mail.ru (previous maintainer)
30 lines
734 B
Makefile
30 lines
734 B
Makefile
# Created by: Maxim Loginov <Zeliboba@mail.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= latexdiff
|
|
PORTVERSION= 1.0.3
|
|
CATEGORIES= print perl5
|
|
MASTER_SITES= TEX_CTAN/support
|
|
DISTNAME= ${PORTNAME}
|
|
DIST_SUBDIR= ${PORTNAME}/${PORTVERSION}
|
|
|
|
MAINTAINER= jhale@FreeBSD.org
|
|
COMMENT= Determine and mark up significant differences between latex files
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USES= perl5 zip
|
|
USE_PERL5= run
|
|
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>
|