1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
freebsd-ports/vietnamese/vnroff/Makefile
Baptiste Daroussin 4db0ccf998 Support stage
Fix WWW

PR:		ports/184278
Submitted by:	Takefu <takefu@airport.fm>
Approved by:	maintainer timeout
2014-01-20 07:54:54 +00:00

36 lines
882 B
Makefile
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Created by: David O'Brien (obrien@cs.ucdavis.edu)
# $FreeBSD$
PORTNAME= vnroff
PORTVERSION= 2.1
CATEGORIES= vietnamese print
MASTER_SITES= ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= obrien
DISTNAME= ${PORTNAME}-2.0
DISTFILES= vnroff.c.Z vnroff.1.Z
MAINTAINER= obrien@FreeBSD.org
COMMENT= Converts Vietnamese VIQR text into troff format
NO_WRKSUBDIR= yes
do-extract:
@${RM} -rf ${WRKDIR}
@${MKDIR} ${WRKDIR}
@(cd ${WRKDIR} && ${GZCAT} ${DISTDIR}/vnroff.c.Z \
| ${SED} -e '1,/-cut here-/d' \
> vnroff.c)
@(cd ${WRKDIR} && ${GZCAT} ${DISTDIR}/vnroff.1.Z \
| ${SED} -e '1,/Status:/d' -e '//,//d' \
| ${SED} -e '1,1d' \
> vnroff.1)
do-build:
(cd ${WRKSRC} && ${CC} ${CFLAGS} -o vnroff vnroff.c)
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/vnroff ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/vnroff.1 ${STAGEDIR}${PREFIX}/man/man1
.include <bsd.port.mk>