Add colordiff 1.0.5, a tool to colorize diff output.

Colordiff is a wrapper for diff and produces the same output as diff but with
coloured syntax highlighting at the command line to improve readability.

The output is similar to how a diff-generated patch might appear in Vim or Emacs
with the appropriate syntax highlighting options enabled.

PR:		ports/83062
Submitted by:	Emanuel Haupt <ehaupt@critical.ch>
This commit is contained in:
Erwin Lansing 2005-07-06 18:06:20 +00:00
parent 1e2792154b
commit 7ae67a1ab6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=138616
4 changed files with 54 additions and 0 deletions

View File

@ -51,6 +51,7 @@
SUBDIR += coco
SUBDIR += code2html
SUBDIR += cole
SUBDIR += colordiff
SUBDIR += cost
SUBDIR += crimson
SUBDIR += cs-aspell

View File

@ -0,0 +1,41 @@
# New ports collection makefile for: colordiff
# Date created: 6 Jul 2005
# Whom: Emanuel Haupt <ehaupt@critical.ch>
#
# $FreeBSD$
#
PORTNAME= colordiff
PORTVERSION= 1.0.5
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ehaupt@critical.ch
COMMENT= A tool to colorize diff output
USE_PERL5= yes
USE_REINPLACE= yes
NO_BUILD= yes
PLIST_DIRS= %%EXAMPLESDIR%%
PLIST_FILES= bin/colordiff %%EXAMPLESDIR%%/colordiffrc
MAN1= colordiff.1
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500806
IGNORE= needs Perl 5.8.6 or above (lang/perl5.8)
.endif
post-patch:
@${REINPLACE_CMD} -e 's|/usr/local/bin/perl|${PERL}|' \
${WRKSRC}/${PORTNAME}.pl
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl ${PREFIX}/bin/${PORTNAME}
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${PREFIX}/man/man1
${MKDIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/colordiffrc ${EXAMPLESDIR}
.include <bsd.port.post.mk>

View File

@ -0,0 +1,2 @@
MD5 (colordiff-1.0.5.tar.gz) = b8ef81a80dfa8a4c001915d03a73f7d1
SIZE (colordiff-1.0.5.tar.gz) = 14243

View File

@ -0,0 +1,10 @@
Colordiff is a wrapper for diff and produces the same output as diff but with
coloured syntax highlighting at the command line to improve readability.
The output is similar to how a diff-generated patch might appear in Vim or Emacs
with the appropriate syntax highlighting options enabled.
WWW: http://colordiff.sourceforge.net/
- ehaupt
ehaupt@critical.ch