git: de45de2513b9 - main - ports-mgmt/portlint: Update to 2.22.3
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 09 Oct 2024 12:48:30 UTC
The branch main has been updated by marcus: URL: https://cgit.FreeBSD.org/ports/commit/?id=de45de2513b9c2e67a3470e69b0a9f771405b565 commit de45de2513b9c2e67a3470e69b0a9f771405b565 Author: Joe Marcus Clarke <marcus@FreeBSD.org> AuthorDate: 2024-10-09 12:47:34 +0000 Commit: Joe Marcus Clarke <marcus@FreeBSD.org> CommitDate: 2024-10-09 12:47:34 +0000 ports-mgmt/portlint: Update to 2.22.3 Only do LDCONFIG checks if USE_LDCONFIG is defined. Submitted by: Tatsuki Makino <tatsuki_makino@hotmail.com> --- ports-mgmt/portlint/Makefile | 2 +- ports-mgmt/portlint/src/portlint.pl | 16 +++++++++------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/ports-mgmt/portlint/Makefile b/ports-mgmt/portlint/Makefile index df48ea0825d6..86b20ce83b9f 100644 --- a/ports-mgmt/portlint/Makefile +++ b/ports-mgmt/portlint/Makefile @@ -1,5 +1,5 @@ PORTNAME= portlint -PORTVERSION= 2.22.2 +PORTVERSION= 2.22.3 CATEGORIES= ports-mgmt MASTER_SITES= # none DISTFILES= # none diff --git a/ports-mgmt/portlint/src/portlint.pl b/ports-mgmt/portlint/src/portlint.pl index ac205b93ba29..0fd3a76ee362 100644 --- a/ports-mgmt/portlint/src/portlint.pl +++ b/ports-mgmt/portlint/src/portlint.pl @@ -52,7 +52,7 @@ $portdir = '.'; # version variables my $major = 2; my $minor = 22; -my $micro = 2; +my $micro = 3; # default setting - for FreeBSD my $portsdir = '/usr/ports'; @@ -914,12 +914,14 @@ sub checkplist { &perror("WARN", $file, -1, "There are only $item_count items in the plist. Consider using PLIST_FILES instead of pkg-plist when installing less than $numpitems items."); } - if ($makevar{USE_LDCONFIG} ne "$makevar{PREFIX}/lib" && !$found_so) { - &perror("WARN", $file, -1, "You have defined USE_LDCONFIG, but this ". - "port does not install any shared objects."); - } elsif ($makevar{USE_LDCONFIG} eq "$makevar{PREFIX}/lib" && !$found_prefix_so) { - &perror("WARN", $file, -1, "You have defined USE_LDCONFIG, but this ". - "port does not install any shared objects into \${PREFIX}/lib."); + if ($makevar{USE_LDCONFIG}) { + if ($makevar{USE_LDCONFIG} && $makevar{USE_LDCONFIG} ne "$makevar{PREFIX}/lib" && !$found_so) { + &perror("WARN", $file, -1, "You have defined USE_LDCONFIG, but this ". + "port does not install any shared objects."); + } elsif ($makevar{USE_LDCONFIG} eq "$makevar{PREFIX}/lib" && !$found_prefix_so) { + &perror("WARN", $file, -1, "You have defined USE_LDCONFIG, but this ". + "port does not install any shared objects into \${PREFIX}/lib."); + } } close(IN);