From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 12 06:20:20 2005 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F86B16A4D0 for ; Sat, 12 Feb 2005 06:20:20 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 427E543D45 for ; Sat, 12 Feb 2005 06:20:19 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id j1C6KJNF083700 for ; Sat, 12 Feb 2005 06:20:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id j1C6KJbx083699; Sat, 12 Feb 2005 06:20:19 GMT (envelope-from gnats) Resent-Date: Sat, 12 Feb 2005 06:20:19 GMT Resent-Message-Id: <200502120620.j1C6KJbx083699@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Yen-Ming Lee Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A39DB16A4CE; Sat, 12 Feb 2005 06:16:11 +0000 (GMT) Received: from utopia.leeym.com (utopia.leeym.com [211.21.137.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 505D043D49; Sat, 12 Feb 2005 06:16:11 +0000 (GMT) (envelope-from leeym@utopia.leeym.com) Received: from localhost (localhost [127.0.0.1]) by utopia.leeym.com (Postfix) with ESMTP id 295FC3EA13D; Sat, 12 Feb 2005 14:16:10 +0800 (CST) Received: from utopia.leeym.com ([127.0.0.1]) by localhost (utopia.leeym.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 64571-02; Sat, 12 Feb 2005 14:16:07 +0800 (CST) Received: by utopia.leeym.com (Postfix, from userid 1000) id C316F3EA124; Sat, 12 Feb 2005 14:16:06 +0800 (CST) Message-Id: <20050212061606.C316F3EA124@utopia.leeym.com> Date: Sat, 12 Feb 2005 14:16:06 +0800 (CST) From: Yen-Ming Lee To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: marcus@FreeBSD.org Subject: ports/77410: [PATCH] devel/portlint: update to 2.6.11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Feb 2005 06:20:20 -0000 >Number: 77410 >Category: ports >Synopsis: [PATCH] devel/portlint: update to 2.6.11 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Feb 12 06:20:17 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 5.3-STABLE i386 >Organization: FreeBSD Taiwan >Environment: System: FreeBSD utopia.leeym.com 5.3-STABLE FreeBSD 5.3-STABLE #1: Wed Feb 9 10:20:03 CST >Description: - Update to 2.6.11 - Add error message for installing charset.alias or locale.alias If we have better URL from details, please just replace it. Port maintainer (marcus@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- portlint-2.6.11.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/devel/portlint/Makefile,v retrieving revision 1.87 diff -u -u -r1.87 Makefile --- Makefile 17 Dec 2004 17:25:31 -0000 1.87 +++ Makefile 12 Feb 2005 06:14:25 -0000 @@ -8,8 +8,8 @@ # PORTNAME= portlint -PORTVERSION= 2.6.10 -PORTREVISION= 1 +PORTVERSION= 2.6.11 +PORTREVISION= 0 CATEGORIES= devel MASTER_SITES= # none DISTFILES= # none Index: src/portlint.pl =================================================================== RCS file: /home/pcvs/ports/devel/portlint/src/portlint.pl,v retrieving revision 1.68 diff -u -u -r1.68 portlint.pl --- src/portlint.pl 17 Dec 2004 17:25:32 -0000 1.68 +++ src/portlint.pl 12 Feb 2005 06:14:27 -0000 @@ -651,6 +651,14 @@ "disallowed."); } + if ($_ =~ /charset\.alias$/ || $_ =~ /locale\.alias$/) { + &perror("WARN: $file [$.]: installing charset.alias or locale.alias, ". + "please add USE_GETTEXT=yes and use libintl from devel/gettext ". + "instead of from outdated bundled one if possible. ". + "See http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/71531 ". + "for more details."); + } + if ($_ =~ /\.la$/ && $makevar{USE_LIBTOOL_VER} eq '') { &perror("WARN: $file [$.]: installing libtool archives, ". "please use USE_LIBTOOL_VER in Makefile if possible. ". --- portlint-2.6.11.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: