freebsd-ports/print/ansiprint/Makefile
Ion-Mihai Tetcu df4dd029cc A utility for printing text files (or stdin) through a terminal/terminal
emulator using ANSI escape sequences.

WWW: http://ansiprint.sourceforge.net

PR:		ports/98072
Submitted by:	stephentfisher@yahoo.com
Approved by:	lawrance (mentor, implicit)
2006-06-06 16:42:17 +00:00

32 lines
708 B
Makefile

# New ports collection makefile for: ansiprint
# Date created: 28 May 2006
# Whom: stephentfisher@yahoo.com
#
# $FreeBSD$
#
PORTNAME= ansiprint
PORTVERSION= 1.0
CATEGORIES= print
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTNAME= ${PORTNAME}-${PORTVERSION}
EXTRACT_SUFX= .tgz
MAINTAINER= stephentfisher@yahoo.com
COMMENT= Prints through a terminal with ANSI escape sequences
PLIST_FILES= bin/${PORTNAME}
CXXFLAGS+= -Wno-deprecated
post-extract:
@${RM} ${WRKSRC}/Makefile
do-build:
cd ${WRKSRC} && ${CXX} ${CXXFLAGS} -o ${PORTNAME} ansiprint.cc
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/${PORTNAME}
.include <bsd.port.mk>