summaryrefslogtreecommitdiff
path: root/pkgtools
AgeCommit message (Collapse)AuthorFilesLines
2008-12-05Make complaints about hicolor icon themes directories errors.wiz1-2/+2
Ok rillig
2008-12-04Added explicit checks for share/icons/hicolor directories in PLISTs, asrillig1-1/+7
suggested by wiz.
2008-12-04Bump version after libXtst builtinification. Sorry guys.cube2-4/+4
2008-12-04Builtinify libXtst.cube3-10/+13
2008-12-02Removed unused code. Changed one constructor call to match the patternrillig1-56/+5
of all the others. Explained how to get an overview of the code.
2008-12-01Variable for GConf is now called GCONF_SCHEMAS (not GCONF2_SCHEMAS).wiz2-4/+4
Bump version to 2.8.
2008-11-30Banned the warnings about SUBST_* groups into the -Wextra option, sincerillig1-18/+18
they are used less strict than pkglint wants them.
2008-11-25more to do.rillig1-1/+5
2008-11-24Allowed pkglint to check doc/CHANGES-* files individually.rillig1-26/+34
2008-11-19Fixed the (hopefully) last issue with the downgrading warning.rillig1-4/+8
2008-11-19SU was replaced to use SU_CMD over 4 years ago.obache1-3/+3
2008-11-18It's pretty tricky to get the bmake substitution right. At least ifrillig1-2/+7
you're a lazy programmer. Now the ${DISTNAME:S...} is interpreted correctly.
2008-11-18Updated pkglint to 4.90.rillig1-2/+2
Changes since 4.89: - Packages are checked whether they are being downgraded. - Several small fixes and improvements.
2008-11-18Get rid of the false positive warnings for downgrading, by doing morerillig1-1/+8
magic to the PKGNAME and DISTNAME in the package Makefile. Thanks, wiz, for insisting on this.
2008-11-18Emit a note instead of a warning when the :Q operator is used in placesrillig1-6/+12
where it isn't necessary. The :Q operator is necessary for URLs, since they may contain ampersands.
2008-11-18It is not necessary to save the whole text of the package Makefilerillig1-44/+32
including all included files. By now, all checks are done by checking individual lines, not the whole text.
2008-11-18The PKGREVISION is included in the version comparison, to fix the bogusrillig1-4/+17
warning that a package "is being downgraded from 1.0.0nb5 to 1.0.0". Disabled the note saying that in shell variable assignments, there don't need to be double quotes around backticks. In some cases they need to be there.
2008-11-18DIST_SUBDIR may contain slashes. Found in www/firefox3-bin.rillig1-2/+2
2008-11-16Add support for user destination directory installation.tron1-3/+5
Patch provided by Aleksey Cheusov.
2008-11-15remove NetBSD-specific code from OpenBSD's bsd.own.mkschwarz1-14/+1
2008-11-15OpenBSD changed to ELF on i386 with the 3.4 releaseschwarz1-2/+3
2008-11-11Buildlink glut, bump package version and required dependency.cube4-5/+15
2008-11-11Properly register libGLU files with native X.Org as found in NetBSD.cube1-0/+12
2008-11-08OpenBSD headers are still not standalone, even though SUS is prettyjoerg2-5/+56
explicit about it at least for netinet/in.h. Include sys/types.h before checking for content of sys/socket.h and netinet/in.h to fix this. Reported and tested by Georg Schwarz.
2008-11-06Only check doc/CHANGES-* starting with 2008, as suggested by OBATA Akiorillig1-2/+2
on pkgsrc-changes. TODO: Discuss whether the old files should be converted to the common format or just be left as they are.
2008-11-06Add DESTDIR support.obache1-4/+5
2008-11-06update mtree to 20081105, most notably providing support for sha256,jschauma17-148/+357
sha384 and sha512; while here, fix a minor build error discovered on RHEL
2008-11-06Add some forgotten ifndefs to fix issues on DragonFly.joerg1-1/+7
2008-11-05Ignore more uninteresting output.wiz2-5/+20
Tries to address PR 39291. Welcome to 0.121.
2008-11-04Fixed three warnings, which have been reported by Mark Davies.rillig2-4/+5
2008-11-04The macro __NetBSD_Prereq__ should not be used.rillig1-8/+13
Extended the spell checker for variants of __NetBSD_Version__.
2008-11-04Added a check that detects a downgrade of a package. To do this, itrillig1-1/+110
loads the changes in doc/CHANGES-*.
2008-10-30Define __UNCONST. From PR 39797.joerg1-3/+5
2008-10-30Avoid STAT as macro, it exists in sys/dir.h on AIX already.joerg2-27/+15
2008-10-29Builtinify libXv, and make sure x11-links knows about xv.pc. Bump versioncube5-15/+19
of x11-links.
2008-10-29Don't use __RENAME.joerg1-6/+6
2008-10-29Provide more compat glue for ndbm interface as shown in PR 39738.joerg4-10/+87
Bump to libnbcompat-20081029.
2008-10-28Define away O_EXLOCK and O_SHLOCK if they are missing.joerg1-2/+9
2008-10-28Use nbcompat/paths.h, Solaris is missing paths.h. From Uwe Klaus.joerg2-6/+6
2008-10-28Add circleq support. Bump to 20081028. Should fix IRIX build fromjoerg2-3/+134
PR 39797.
2008-10-28Replace EFTYPE with EINVAL if the former doesn't exist.joerg3-4/+18
2008-10-26Provide and use local mpool.h.joerg3-5/+108
2008-10-26Explicitly check for libnsl and libsocket as required by Solaris.joerg2-1/+155
Based on patches from Aleksey Cheusov.
2008-10-20Moved all explaining texts to the beginning of a line, so they stand outrillig1-200/+199
from the rest of the code.
2008-10-20Removed the experimental --klickibunti option and everything that wasrillig1-383/+8
only there to support this option. Maybe I will reinvent the advanced autofix code someday, hopefully in a programming language that provides more error checking than Perl.
2008-10-20Updated pkglint to 4.89.rillig1-2/+2
Changes since 4.88: - Fixed the remaining PLIST_VARS warnings. - Adjusted pkglint to work together with Perl 5.10.0.
2008-10-20Replaced all instances of "=~ qr" with "=~ m", and all instances ofrillig1-317/+317
"!~ qr" with "!~ m", to work around a memory leak in Perl 5.10.0. (See Perl bug #59994 or just run perl -e 'while(1){qr""}'.) This change also speeds up pkglint by around 15 percent, although I noticed that updating from Perl 5.8.8. to 5.10.0 slowed down pkglint by about 2 percent.
2008-10-19Include nbcompat/types.h early to make sure that uintX_t are defined.joerg1-2/+2
Reported by Aleksey Cheusov and Joern Clausen in PR 39738.
2008-10-19Bump the PKGREVISION for all packages which depend directly on perl,he1-2/+2
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=...").
2008-10-18Fixed another "closedir() on undefined".rillig1-12/+6
Made the code around PLIST.* variables prettier.