Skip to content
Snippets Groups Projects
Commit acdadc16 authored by Stephen Montgomery-Smith's avatar Stephen Montgomery-Smith
Browse files

math/octave-forge-base: Update to 1.6.

Make sure that when searching description for lines that begin with
Depends: that it starts at the beginning of the line.
parent ba393804
No related branches found
No related tags found
No related merge requests found
PORTNAME= octave-forge-base
PORTVERSION= 1.5
PORTVERSION= 1.6
CATEGORIES= math
MASTER_SITES= #none
DISTFILES= #none
......
......@@ -98,7 +98,7 @@ while (my $p = <$install_prefix/*>) {
$p =~ s+.*/++;
open(D,"$install_prefix/$p/packinfo/DESCRIPTION") || die $!;
foreach my $l (<D>) {
if ($l=~s/Depends:\s*//) {
if ($l=~s/^Depends:\s*//) {
foreach my $ll (split ",",$l) {
chomp($ll);
$ll = lc($ll);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment