mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
c91c616416
- Reset maintainer, address bounces [1]: 550 5.1.1 <uwe.pierau@tu-clausthal.de>: Recipient address rejected: undeliverable address: host sphinx.rz.tu-clausthal.de[139.174.2.44] said: 550-5.1.1 <uwe.pierau@tu-clausthal.de>: Recipient address rejected: undeliverable address: host mail.tu-clausthal.de[139.174.2.1] said: 550 uwe.pierau@tu-clausthal.de unknown user account (in reply to RCPT TO command) PR: ports/182316 [1] Submitted by: Uwe Pierau <noaddress@freebsd.de> [1]
22 lines
580 B
Makefile
22 lines
580 B
Makefile
# Created by: Uwe Pierau <uwe.pierau@tu-clausthal.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lacheck
|
|
PORTVERSION= 1.26
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ftp://cam.ctan.org/tex-archive/support/lacheck/ \
|
|
http://www.heim2.tu-clausthal.de/~upp/lacheck/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Tool for finding common mistakes in LaTeX documents
|
|
|
|
PLIST_FILES= bin/lacheck \
|
|
man/man1/lacheck.1.gz
|
|
ALL_TARGET= lacheck lacheck.1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/lacheck ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/lacheck.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|