diff options
author | rh <rh@pkgsrc.org> | 2000-07-20 13:53:41 +0000 |
---|---|---|
committer | rh <rh@pkgsrc.org> | 2000-07-20 13:53:41 +0000 |
commit | 2fd2be14438167c274cf627e2cd079a853b99ea4 (patch) | |
tree | 9bf8c96d6adf7754f3cea7b93f8eee6823ac0258 /pkgtools | |
parent | 15ab860cc3371e99d5d81d168236637a818b0ee8 (diff) | |
download | pkgsrc-2fd2be14438167c274cf627e2cd079a853b99ea4.tar.gz |
Warn about NO_CDROM and NO_PACKAGE.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index c59ef4a5a96..ed6bf45b2c0 100644 --- a/pkgtools/pkglint/files/pkglint.pl +++ b/pkgtools/pkglint/files/pkglint.pl @@ -12,7 +12,7 @@ # Freely redistributable. Absolutely no warranty. # # From Id: portlint.pl,v 1.64 1998/02/28 02:34:05 itojun Exp -# $NetBSD: pkglint.pl,v 1.32 2000/07/14 16:09:26 hubertf Exp $ +# $NetBSD: pkglint.pl,v 1.33 2000/07/20 13:53:41 rh Exp $ # # This version contains some changes necessary for NetBSD packages # done by Hubert Feyrer <hubertf@netbsd.org> and @@ -699,6 +699,16 @@ sub checkmakefile { &perror("WARN: use of USE_PKGLIBTOOL discouraged, ". "use USE_LIBTOOL instead."); } + print "OK: checking NO_CDROM.\n" if ($verbose); + if ($whole =~ /\nNO_CDROM/) { + &perror("WARN: use of NO_CDROM discouraged, ". + "use NO_BIN_ON_CDROM and/or NO_SRC_ON_CDROM instead."); + } + print "OK: checking NO_PACKAGE.\n" if ($verbose); + if ($whole =~ /\nNO_PACKAGE/) { + &perror("WARN: use of NO_PACKAGE to enforce license restrictions ". + "is deprecated."); + } # # whole file: direct use of command names |