Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 30 Jun 2000 11:49:47 +0300
From:      Maxim Sobolev <sobomax@FreeBSD.org>
To:        ports@FreeBSD.org, mharo@FreeBSD.org
Subject:   Portlint update to catch recent bsd.port.mk changes
Message-ID:  <395C5F2A.226B7E9E@FreeBSD.org>

next in thread | raw e-mail | index | archive | help
This is a multi-part message in MIME format.
--------------5C441783AF8BAF4A982559B7
Content-Type: text/plain; charset=koi8-r
Content-Transfer-Encoding: 7bit

Hi,

Following small patch updates portlint to catch recent bsd.port.mk changes
(MASTER_SITE_SOURCEFORGE & INSTALLS_SHLIB).

Sincerely,

Maxim

--------------5C441783AF8BAF4A982559B7
Content-Type: text/plain; charset=koi8-r;
 name="portlint.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="portlint.diff"

--- portlint	2000/06/29 08:18:53	1.1
+++ portlint	2000/06/29 08:15:52
@@ -250,6 +250,9 @@
 TCLTK	ftp://ftp.cs.tu-berlin.de/pub/tcl/distrib/
 TCLTK	ftp://ftp.srcc.msu.su/mirror/ftp.scriptics.com/pub/tcl/
 TCLTK	ftp://ftp.lip6.fr/pub/tcl/distrib/
+SOURCEFORGE	ftp://download.sourceforge.net/pub/sourceforge/
+SOURCEFORGE	http://download.sourceforge.net/
+SOURCEFORGE	ftp://ftp.kddlabs.co.jp/sourceforge/
 EOF
 	my ($j, $k) = split(/\t+/, $i);
 	$predefined{$k} = $j;
@@ -416,12 +419,17 @@
 				$inforemoveseen = $.;
 				push(@unexec_info, $1);
 			} elsif ($_ =~ /^\@(exec|unexec)/) {
-				if ($ldconfigwithtrue
-				 && /ldconfig/
-				 && !/\/usr\/bin\/true/) {
-					&perror("FATAL: $file $.: ldconfig ".
-						"must be used with ".
-						"\"||/usr/bin/true\".");
+				if (/ldconfig/) {
+					if ($ldconfigwithtrue
+					 && !/\/usr\/bin\/true/) {
+						&perror("FATAL: $file $.: ldconfig ".
+							"must be used with ".
+							"\"||/usr/bin/true\".");
+					}
+				&perror("WARN: $file $.: possible ".
+					"direct use of ldconfig ".
+					"in PLIST found. use ".
+					"INSTALLS_SHLIB instead.");
 				}
 			} elsif ($_ =~ /^\@(comment)/) {
 				$rcsidseen++ if (/\$$rcsidstr[:\$]/);

--------------5C441783AF8BAF4A982559B7--



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?395C5F2A.226B7E9E>