ports/textproc/uni2ascii/Makefile
Jean-Yves Lefort 188adc5323 Add uni2ascii.
uni2ascii and ascii2uni convert between UTF-8 Unicode and any of a variety of
7-bit ASCII equivalents including: hexadecimal and decimal HTML numeric
character references, \u-escapes, standard hexadecimal, and raw hexadecimal.

WWW: http://freshmeat.net/projects/uni2ascii/

PR:		ports/86017
Submitted by:	Emanuel Haupt <ehaupt@critical.ch>
2005-09-12 20:58:20 +00:00

27 lines
640 B
Makefile

# New ports collection makefile for: uni2ascii
# Date created: 12 Sep 2005
# Whom: Emanuel Haupt <ehaupt@critical.ch>
#
# $FreeBSD$
#
PORTNAME= uni2ascii
PORTVERSION= 2.1
CATEGORIES= textproc
MASTER_SITES= http://critical.ch/distfiles/
MAINTAINER= ehaupt@critical.ch
COMMENT= Convert between UTF-8 Unicode and 7-bit ASCII equivalents
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}"
PLIST_FILES= bin/uni2ascii bin/ascii2uni
MAN1= uni2ascii.1 ascii2uni.1
do-install:
.for f in ${PORTNAME} ascii2uni
${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/${f}.1 ${MAN1PREFIX}/man/man1
.endfor
.include <bsd.port.mk>