diff options
author | skreuzer <skreuzer@FreeBSD.org> | 2011-08-09 21:48:34 +0800 |
---|---|---|
committer | skreuzer <skreuzer@FreeBSD.org> | 2011-08-09 21:48:34 +0800 |
commit | 629894d89d5d926010edab98b4ff6f8ef32103bc (patch) | |
tree | 4cc3b55076d9a2ad1ba83b10599c8769703b5468 /textproc | |
parent | 043823a2afe3f055475ccbb645c38983461b344c (diff) | |
download | freebsd-ports-gnome-629894d89d5d926010edab98b4ff6f8ef32103bc.tar.gz freebsd-ports-gnome-629894d89d5d926010edab98b4ff6f8ef32103bc.tar.zst freebsd-ports-gnome-629894d89d5d926010edab98b4ff6f8ef32103bc.zip |
ack is a tool like grep, designed for programmers with large trees of
heterogeneous source code.
ack is written purely in Perl, and takes advantage of the power of
Perl's regular expressions
WWW: http://betterthangrep.com/
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/ack/Makefile | 26 | ||||
-rw-r--r-- | textproc/ack/distinfo | 2 | ||||
-rw-r--r-- | textproc/ack/pkg-descr | 4 | ||||
-rw-r--r-- | textproc/ack/pkg-plist | 12 |
5 files changed, 45 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 43f8e467795b..aa909980d444 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -4,6 +4,7 @@ COMMENT = Text processing utilities (does not include desktop publishing) SUBDIR += 2bsd-diff + SUBDIR += ack SUBDIR += add-css-links SUBDIR += af-aspell SUBDIR += aft diff --git a/textproc/ack/Makefile b/textproc/ack/Makefile new file mode 100644 index 000000000000..1ea8f83c84b3 --- /dev/null +++ b/textproc/ack/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: ack +# Date created: 2011-08-08 +# Whom: Steven Kreuzer <skreuzer@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= ack +PORTVERSION= 1.94 +CATEGORIES= textproc perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= ../by-authors/id/P/PE/PETDANCE + +MAINTAINER= skreuzer@FreeBSD.org +COMMENT= Grep-like tool optimized for working with source code + +BUILD_DEPENDS= p5-File-Next>=1.06:${PORTSDIR}/sysutils/p5-File-Next +RUN_DEPENDS= p5-File-BaseDir>=0.03:${PORTSDIR}/devel/p5-File-BaseDir \ + p5-Term-ANSIColor>=3.00:${PORTSDIR}/devel/p5-Term-ANSIColor \ + p5-Getopt-Long>=2.38:${PORTSDIR}/devel/p5-Getopt-Long + +PERL_CONFIGURE= yes + +MAN1= ack.1 + +.include <bsd.port.mk> diff --git a/textproc/ack/distinfo b/textproc/ack/distinfo new file mode 100644 index 000000000000..4721484badcb --- /dev/null +++ b/textproc/ack/distinfo @@ -0,0 +1,2 @@ +SHA256 (ack-1.94.tar.gz) = 5def0df74e17eb87f7848997879c958e42ed93554113c655c7ca5c0066c3156d +SIZE (ack-1.94.tar.gz) = 109343 diff --git a/textproc/ack/pkg-descr b/textproc/ack/pkg-descr new file mode 100644 index 000000000000..541e344b620d --- /dev/null +++ b/textproc/ack/pkg-descr @@ -0,0 +1,4 @@ +ack is a tool like grep, designed for programmers with large trees of +heterogeneous source code. + +WWW: http://betterthangrep.com/ diff --git a/textproc/ack/pkg-plist b/textproc/ack/pkg-plist new file mode 100644 index 000000000000..a0882b5840b9 --- /dev/null +++ b/textproc/ack/pkg-plist @@ -0,0 +1,12 @@ +@comment $FreeBSD$ +bin/ack +%%SITE_PERL%%/%%PERL_ARCH%%/auto/ack/.packlist +%%SITE_PERL%%/App/Ack.pm +%%SITE_PERL%%/App/Ack/Repository.pm +%%SITE_PERL%%/App/Ack/Plugin.pm +%%SITE_PERL%%/App/Ack/Resource.pm +%%SITE_PERL%%/App/Ack/Plugin/Basic.pm +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/ack +@dirrm %%SITE_PERL%%/App/Ack/Plugin +@dirrm %%SITE_PERL%%/App/Ack +@dirrmtry %%SITE_PERL%%/App |