mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
fb16dfecae
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
13 lines
434 B
Plaintext
13 lines
434 B
Plaintext
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";
|
|
}
|