diff options
author | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2006-06-06 16:42:17 +0000 |
---|---|---|
committer | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2006-06-06 16:42:17 +0000 |
commit | df4dd029cc37c2bae4390bcb11e754ad272ef5f0 (patch) | |
tree | 91a608ef3e82e450eb74bedfe833d6fb1eaed151 /print/ansiprint/Makefile | |
parent | 55a9b9dd373db582fac84982701151595366e552 (diff) |
Notes
Diffstat (limited to 'print/ansiprint/Makefile')
-rw-r--r-- | print/ansiprint/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/print/ansiprint/Makefile b/print/ansiprint/Makefile new file mode 100644 index 000000000000..d38cad638943 --- /dev/null +++ b/print/ansiprint/Makefile @@ -0,0 +1,32 @@ +# 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> |