diff options
Diffstat (limited to 'textproc/p5-FreeBSD-Ports/pkg-descr')
-rw-r--r-- | textproc/p5-FreeBSD-Ports/pkg-descr | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/textproc/p5-FreeBSD-Ports/pkg-descr b/textproc/p5-FreeBSD-Ports/pkg-descr new file mode 100644 index 000000000000..679267092e99 --- /dev/null +++ b/textproc/p5-FreeBSD-Ports/pkg-descr @@ -0,0 +1,17 @@ +FreeBSD::Ports and FreeBSD::Ports::Port are modules for parsing +FreeBSD's Ports INDEX file and selecting ports that match certain +criteria. + +For example, you might want to list ports maintained by tom@FreeBSD.org +sorted alphabetically: + my $ports = tie my %port, 'FreeBSD::Ports', '/usr/ports/INDEX'; + $ports->maintainer('tom@FreeBSD.org'); + $ports->sort('alpha'); + foreach my $p (keys %port) { + print $p->as_ascii,"\n"; + } + +WWW: http://people.FreeBSD.org/~tom/portpm/ + +- Tom +tom@FreeBSD.org |