mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
f28a05d93d
While I'm here, fix compilation; subtracting 2 pointers on a 64-bit machine gives something the same size as a size_t. Refactor the patches by using 'make makepatch'. PR: 186604 Submitted by: Mikhail - mp39590 gmail com
29 lines
601 B
Makefile
29 lines
601 B
Makefile
# Created by: Mark R V Murray <mark@grondar.za>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= par
|
|
PORTVERSION= 1.52
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://www.nicemice.net/par/
|
|
DISTNAME= Par${PORTVERSION:S|.||}
|
|
|
|
MAINTAINER= markm@FreeBSD.org
|
|
COMMENT= Paragraph reformatter for email
|
|
|
|
CONFLICTS= quake-par-[0-9]*
|
|
|
|
ALL_TARGET= #
|
|
MAN1= par.1
|
|
PLIST_FILES= bin/par \
|
|
man/man1/par.1.gz
|
|
|
|
do-configure:
|
|
(cd ${WRKSRC}; ${CP} protoMakefile Makefile)
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/par ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/par.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|