summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2006-07-07Add a workaround for GNOME bug #338015. This fixes PR pkg/33233.minskim3-1/+142
2006-07-07Add a workaround for GNOME bug #337993. This fixes "undefined symbols"minskim5-14/+157
errors on Darwin.
2006-07-06Don't try and do visibility stuff with gcc on Solaris as the Solarismarkd2-1/+24
gcc/ld doesn't support it. From Gilles Dauphin in PR pkg/33919.
2006-07-06Add a missing file from neon sources to fix an "undefined symbols" errorminskim4-1/+148
on Darwin. This addresses one of the errors reported in PR pkg/33233. Patches obtained from GNOME CVS.
2006-07-06The cookie files are indirectly made using *-cookie targets, so verifyjlam11-11/+24
that they are never being created more than once by inserting a check into the *-cookie targets.
2006-07-06Correctly define int64_t when using gcc -m64 on solaris.markd2-1/+15
Fixes PR pkg/33416.
2006-07-06Remove an unnecessary target... ${_BARRIER_COOKIE} has no source targetsjlam1-5/+5
so it might as well be the target name.
2006-07-06The "replace" target does conceptually the same thing as the "install"jlam2-5/+7
target in that it installs the currently-built software into the filesystem. In that case where "replace" is specified as a target on the command line, make "replace" and not "install" be the source target for "package". Also, place the "replace" target between the "install" and "package" targets in _BARRIER_POST_TARGETS as it should be legal to do those steps in that order (but not in another order). These changes make the following work: make replace package In this example, the currently installed package will be replaced and the newly-installed software will be packaged, all within the same make process.
2006-07-06- Fixed a null pointer exception in check_varassign.rillig1-5/+20
- Added a new check for -Wextra that requires a manual page for every command in bin/ and sbin/.
2006-07-06Do not define variables in headers; define them in .c files instead.minskim16-6/+447
Otherwise, they cause link errors on Darwin.
2006-07-06Although EXTRACT_USING is mentioned in mk/defaults/mk.conf, its primaryrillig1-2/+2
purpose is to be overridden by packages, not by the user.
2006-07-06Make it a little easier to read the lock/unlock output by inserting somejlam1-3/+3
quotes.
2006-07-06Note PKGREVISION bump of xchat-systray-integration.minskim1-1/+2
2006-07-06Libtoolize to build on more platforms. Bump PKGREVISION.minskim4-15/+64
2006-07-06In URLs, the "NetBSD" should be capitalized as such, i.e. "NetBSD.org",jlam21-50/+50
not "netbsd.org".
2006-07-06Refactor the README.html generation code from bsd.pkg.mk into a separatejlam2-314/+343
bsd.pkg.readme.mk and document the public targets and variables for this new file.
2006-07-06Updated graphics/gimp24 to 2.3.10adam2-3/+3
2006-07-06Changes 2.3.10:adam7-343/+19
- added support for a registration color in the Decompose plug-in - the Align tool now also aligns to guides - allow use CSS color notation in Script-Fu - more work on the new selection tools - let Fractal Explorer work on grayscale and give it a larger preview - speed up Value Invert plug-in - added strong undo/redo functions bound to Shift-Ctrl-[ZY] - use radio items for the image mode menu - applied Tango style on the default iconset - added plug-in for colormap manipulation - allow plug-ins to register in Layers, Channels, Vectors and Colormap dialog - added load plug-in to open desktop links - removed print plug-ins and started work on a replacement using the new GTK+ Print API - added replacements for gimp_foo_select widgets, akin to GimpFontSelectButton - introduced translation context to a number of colliding strings - bug fixes and code cleanup
2006-07-06Mention new comix package.wiz1-1/+2
2006-07-06Fix building on Darwinadam3-3/+57
2006-07-06Add and enable comix.wiz1-1/+2
2006-07-06Import comix-3.3 from pkgsrc-wip, initially package by Hugo Rivera.wiz4-0/+78
Comix is an image viewer specifically designed to handle comic books. It reads ZIP, RAR and tar archives (also gzip or bzip2 compressed), as well as plain image files. It has a simple and user-friendly GUI using PyGTK.
2006-07-06+ cal3d-0.11.0, fftw-3.1.2, gimp24-2.3.10, gossip-0.12, horde-3.1.2,wiz1-5/+10
hyperestraier-1.3.1 [pkg/33486], p5-Jemplate-0.18 [pkg/33928], pcre-6.7, py-curl-7.15.4.2.
2006-07-06Never skip the wrapper step, even if NO_BUILD is set. There are packagesjlam1-5/+1
that invoke the compiler in either the configure or install steps that we still need to guard against.
2006-07-06Export OPSYS explicitly. This worked before, but according to PR 33931joerg1-1/+3
it got broken.
2006-07-06- Added OVERRIDE_DIRDEPTH to the list of known variables.rillig2-6/+33
- Added the -Cglobal option for inter-package checks (disabled by default) that may consume a lot of memory. - Adjusted pkglint to another change in the TOOLS framework which had not been detected automatically. - MD5 checksums are no longer deprecated, they are now obsolete.
2006-07-06Make "test" barrier-aware.jlam1-5/+11
2006-07-06Fixed pkglint warnings.rillig1-5/+5
2006-07-06Fixed the Size checksum.rillig1-2/+2
2006-07-06Fixed those pkglint warnings that don't affect the binary package.rillig1-10/+10
2006-07-06Fixed pkglint warnings.rillig1-2/+1
2006-07-06Always run the "pkginstall" step even if NO_BUILD is specified.jlam1-2/+2
2006-07-06Fixed pkglint warnings.rillig1-13/+13
2006-07-06Fix previous... instead of moving bsd.pkg.barrier.mk down below .MAIN,jlam1-6/+6
move .MAIN all the way to the top of the file. bsd.pkg.barrier.mk (currently) needs to be included before bsd.wrapper.mk since it defines _BARRIER_COOKIE, which is expanded and used in place within bsd.wrapper.mk. This makes the "wrapper" phase run again.
2006-07-06Fixed pkglint warnings.rillig3-11/+12
2006-07-06Move inclusion of bsd.pkg.barrier.mk under the .MAIN target becausejlam2-5/+6
bsd.pkg.barrier.mk uses the "make()" test expression. Also, include "all" as a post-barrier target since it is implicitly the ".MAIN" target when a user just types "make" in a package directory.
2006-07-06Order the _BARRIER_POST_TARGETS so that if more than one is specified onjlam1-17/+29
the command-line, then we don't invoke make once for each target, and pass them to the sub-make in a sensible order.
2006-07-06Add LICENSE= and license. Add comments to RESTRICTED; this license isgdt2-1/+106
perhaps not quite as restrictive as our tags, but it's too hard to determine that so continue to err on side of caution.
2006-07-06Note PKGREVISION bump of gettext-lib.minskim1-1/+2
2006-07-06Define locale_charset only when GNU iconv is used. This fixes the packageminskim3-12/+12
on Solaris where native iconv doesn't have locale_charset. Noted by Gilles Dauphin in PR pkg/32945. Bump PKGREVISION.
2006-07-06USE_TOOLS+=perlabs1-2/+2
2006-07-06USE_TOOLS+=intltoolabs1-2/+2
2006-07-06Add RESTRICTED/NO_*_ON_* since the license does not grant permissiongdt1-1/+6
to redistribute.
2006-07-06COPYING file from szip tarballgdt1-0/+40
2006-07-06Default INSTLIBS to "". Fixes PR pkg/31046markd1-1/+3
2006-07-06Fix cut-and-paste goof.jlam1-4/+4
2006-07-06Needs msgfmt.joerg3-3/+6
2006-07-06If va_copy defined use it in int_vasprintf().markd2-1/+31
Fixes PR pkg/32854.
2006-07-06Add a missing instance of a fix for broken configure test for Solaris.markd2-4/+13
really fixes PR pkg/25083.
2006-07-06Require msgfmt, when NLS is desired.joerg1-1/+2