mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
31 lines
652 B
Makefile
31 lines
652 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: txt2man
|
|
# Date created: Jun 14, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= txt2man
|
|
PORTVERSION= 1.5.5
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://mvertes.free.fr/download/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Converts flat ASCII text to man page format
|
|
|
|
BUILD_DEPENDS= gawk:${PORTSDIR}/lang/gawk
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
USE_GMAKE= yes
|
|
INSTALL_TARGET= install prefix=${PREFIX}
|
|
|
|
MAN1= bookman.1 src2man.1 txt2man.1
|
|
PLIST_FILES= bin/bookman bin/src2man bin/txt2man
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s,awk,gawk," ${WRKSRC}/bookman ${WRKSRC}/src2man
|
|
|
|
.include <bsd.port.mk>
|