summaryrefslogtreecommitdiff
path: root/pkgtools/pkg_filecheck/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2019-08-11Bump PKGREVISIONs for perl 5.30.0wiz1-2/+2
2019-05-23all: replace SUBST_SED with the simpler SUBST_VARSrillig1-5/+5
pkglint -Wall -r --only "substitution command" -F With manual review and indentation fixes since pkglint doesn't get that part correct in every case.
2018-08-22Recursive bump for perl5-5.28.0wiz1-2/+2
2018-07-04*: Move SUBST_STAGE from post-patch to pre-configurejperkin1-2/+2
Performing substitutions during post-patch breaks tools such as mkpatches, making it very difficult to regenerate correct patches after making changes, and often leading to substituted string replacements being committed.
2018-01-27pkgtools/*: Realign variables in Makefilesrillig1-13/+13
Mainly done by pkglint, manually reviewed and improved in some few cases.
2016-07-09Bump PKGREVISION for perl-5.24.0 for everything mentioning perl.wiz1-2/+2
2016-06-11Add patch from Tim Zingelman in PR 46421 to make it work on machinesdholland1-4/+7
whose libdb is not the db-1.85 that's in the libc of 4.4 derivates. Since this program reads the package database it must use the same libdb as pkg_install, and that's the one in libnbcompat rather than the one you get from bdb.buildlink3.mk. Bump PKGREVISION to 5.
2015-07-04Remove USE_X11BASE and X11PREFIX.joerg1-3/+1
2015-06-12Recursive PKGREVISION bump for all packages mentioning 'perl',wiz1-2/+2
having a PKGNAME of p5-*, or depending such a package, for perl-5.22.0.
2014-05-29Bump for perl-5.20.0.wiz1-2/+2
Do it for all packages that * mention perl, or * have a directory name starting with p5-*, or * depend on a package starting with p5- like last time, for 5.18, where this didn't lead to complaints. Let me know if you have any this time.
2014-03-03LICENSE= modified-bsd (sources) AND 2-clause-bsd (man)obache1-1/+2
2014-03-03Just define PKGNAME and use it.obache1-4/+2
2013-05-31Bump all packages for perl-5.18, thatwiz1-2/+2
a) refer 'perl' in their Makefile, or b) have a directory name of p5-*, or c) have any dependency on any p5-* package Like last time, where this caused no complaints.
2012-10-03Bump all packages that use perl, or depend on a p5-* package, orwiz1-1/+2
are called p5-*. I hope that's all of them.
2012-09-11"user-destdir" is default these daysasau1-3/+1
2012-03-01Remove NO_CONFIGURE=yes so that libnbcompat is built. Use LIBS whenhans1-4/+2
linking. Fixes build on SunOS, also tested on NetBSD.
2009-04-09Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions.joerg1-3/+1
2009-02-10DESTDIR supportjoerg1-9/+11
2008-05-25Assert OWNERship of some packages, relinquish others entierly.dillo1-2/+2
2007-10-07fix obsolete URLs for www.NetBSD.orgkano1-2/+2
close PR pkg/37071 reviewd by xtraeme@
2007-09-08Convert to use the features framework.jlam1-9/+3
2007-09-06Convert all libnbcompat/buildlink3.mk references to inplace.mk.jlam1-2/+2
2007-02-16Make sure pkg_filecheck uses db185 apitonio1-2/+2
2006-10-24Updated pkg_filecheck to 0.3.rillig1-2/+2
Bugfix: When allocating more memory, it does not help to double the amount if the current amount is zero.
2006-10-24Fixed PKGMANDIR.rillig1-6/+6
2006-07-02Updated pkg_filecheck to 0.2.rillig1-4/+9
The PKGDBDIR and PKGDBDIR.refcount directories are excluded from the list of files to check, because for unprivileged pkgsrc, they are subdirectories of PKGSRCDIR. Removed the dependency on libnbcompat for NetBSD.
2006-01-06Use SUBST framework. Use PERL5 instead of ${PREFIX}/bin/perl to getjoerg1-3/+15
the location of the interpreter.
2005-12-29Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mkjlam1-2/+1
automatically detects whether we want the pkginstall machinery to be used by the package Makefile.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-3/+3
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-11-17Added a dependency on libnbcompat to allow building on Solaris easier.rillig1-1/+3
(See PR 23746.) It still needs work in the area of Berkeley DB selection. Bumped PKGREVISION.
2005-07-16Get rid of USE_PERL5. The new way to express needing the Perl executablejlam1-2/+2
around at either build-time or at run-time is: USE_TOOLS+= perl # build-time USE_TOOLS+= perl:run # run-time Also remove some places where perl5/buildlink3.mk was being included by a package Makefile, but all that the package wanted was the Perl executable.
2005-06-17Create directories before installing files into them.jlam1-1/+3
2005-05-07Refer doc/pkgsrc.html instead of Packages.txt (HOMEPAGE variable).wiz1-2/+2
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2004-11-17Fix so this package builds with existing bdb.buildlink3.mk.jlam1-4/+4
2004-11-15Rework the Berkeley DB detection in buildlink3:jlam1-2/+1
* Add a db1.builtin.mk file that detects whether DB-1.85 functionality exists in the base system, and remove the distinction between "native" and the other Berkeley DB packages -- we now refer to db[1234]. This paves the way for any future databases/db1 package. * USE_DB185 shouldn't need to be set by any packages -- its correct value is now automatically determined by bdb.buildlink3.mk depending on whether we explicitly request db1 or not. By default, if you include bdb.buildlink3.mk, you want DB-1.85 functionality and USE_DB185 defaults to "yes", but if you explicitly remove db1 from the list of acceptable DBs, then USE_DB185 defaults to "no". * Set BDB_LIBS to the library options needed to link against the DB library when bdb.buildlink3.mk is included. * We only add the DB library to the linker command automatically if we want DB-1.85 functionality; otherwise assume that the package configure process can figure out how to probe for the correct headers and libraries. Edit package Makefiles to nuke redundant settings of USE_DB185.
2004-07-06Convert to bl3.wiz1-2/+3
2004-01-20Move WRKSRC definition away from the first paragraph in a Makefile.agc1-2/+2
2003-12-18don't hardcode /var/db/pkg, use PKG_DBDIR.grant1-1/+2
2003-12-18also pass BUILDLINK_LDFLAGS.db for safety.grant1-2/+2
2003-12-18make use of FILES_SUBST_SED.grant1-6/+3
2003-12-14pass CPPFLAGS to compilerdillo1-2/+3
2003-12-14This package uses db 1.85, so include its buildlink.dillo1-2/+6
Don't use implicit make rules, invoke compiler explicitly. Addresses PR 23746.
2003-07-30Set USE_PKGINSTALL instead of directly including bsd.pkg.install.mk.jmmv1-2/+2
2003-07-21COMMENT should start with a capital letter.martti1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-3/+3
2003-07-13Initial import of pkg_filecheck, a tool to compare the file systemwiz1-0/+45
contents with the package database, reporting files that are in the file system but not in the package database. Written by Dieter Baron (dillo@) with man pages from Thomas Klausner (wiz@).