diff options
author | wiz <wiz@pkgsrc.org> | 2014-05-31 15:56:59 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2014-05-31 15:56:59 +0000 |
commit | ac9956572941f0ce83383a84e229487c204c97a3 (patch) | |
tree | 920c87d9407c762c846bbd3f957bb394a639c434 /pkgtools/pkglint | |
parent | e11cf98f82416f5313b0d2a218c13433e23fca38 (diff) | |
download | pkgsrc-ac9956572941f0ce83383a84e229487c204c97a3.tar.gz |
Remove giflib/libungif special cases. Bump version.
Diffstat (limited to 'pkgtools/pkglint')
-rw-r--r-- | pkgtools/pkglint/Makefile | 4 | ||||
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 8 |
2 files changed, 3 insertions, 9 deletions
diff --git a/pkgtools/pkglint/Makefile b/pkgtools/pkglint/Makefile index 979dfc06a20..bf4bb00eef3 100644 --- a/pkgtools/pkglint/Makefile +++ b/pkgtools/pkglint/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.444 2014/05/30 08:32:26 wiz Exp $ +# $NetBSD: Makefile,v 1.445 2014/05/31 15:56:59 wiz Exp $ # Note: if you update the version number, please have a look at the # changes between the CVS tag "pkglint_current" and HEAD. # After updating, please re-set the CVS tag to HEAD. -PKGNAME= pkglint-4.139 +PKGNAME= pkglint-4.140 CATEGORIES= pkgtools OWNER= wiz@NetBSD.org diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index 3c97cd7c4d7..64ab88fec9e 100644 --- a/pkgtools/pkglint/files/pkglint.pl +++ b/pkgtools/pkglint/files/pkglint.pl @@ -1,5 +1,5 @@ #! @PERL@ -# $NetBSD: pkglint.pl,v 1.866 2014/03/03 05:18:23 obache Exp $ +# $NetBSD: pkglint.pl,v 1.867 2014/05/31 15:56:59 wiz Exp $ # # pkglint - static analyzer and checker for pkgsrc packages @@ -5225,15 +5225,9 @@ sub checklines_mk($) { if ($includefile =~ m"/x11-links/buildlink3\.mk$") { $line->log_error("${includefile} must not be included directly. Include \"../../mk/x11.buildlink3.mk\" instead."); } - if ($includefile =~ m"/giflib/buildlink3\.mk$") { - $line->log_error("${includefile} must not be included directly. Include \"../../mk/giflib.buildlink3.mk\" instead."); - } if ($includefile =~ m"/jpeg/buildlink3\.mk$") { $line->log_error("${includefile} must not be included directly. Include \"../../mk/jpeg.buildlink3.mk\" instead."); } - if ($includefile =~ m"/libungif/buildlink3\.mk$") { - $line->log_error("${includefile} must not be included directly. Include \"../../mk/giflib.buildlink3.mk\" instead."); - } if ($includefile =~ m"/intltool/buildlink3\.mk$") { $line->log_warning("Please say \"USE_TOOLS+= intltool\" instead of this line."); } |