summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2006-06-14Fix build with GNU make 3.81. Improve some Solaris/x86 flags.joerg3-4/+17
From Gilles Dauphin in PR 33730.
2006-06-14Teach the tools framework about "openssl".jlam9-9/+32
2006-06-14Renamed qt[34]-psql to qt[34]-pgsqladam8-69/+6
2006-06-14Renamed x11/qt4-psql to x11/qt4-pgsqladam3-0/+33
2006-06-14Renamed x11/qt3-psql to x11/qt3-pgsql.adam3-0/+31
2006-06-14Create DELAYED_{ERROR,WARNING}_MSG macros that can be used to outputjlam2-9/+12
error and warning messages that are picked up by the error-check target. Use them instead of using a bare ${ECHO} for more code clarity. Implemented as suggested by Roland Illig.
2006-06-14Ensure that len does not shadow a parameter of the same name.joerg4-21/+73
Don't use __sighandler_t at all, it is not standard and at least on DrgaonFly means something completely different. Also change the typedef to match what signal actually expects. Fix some more minor glitches for DragonFly.
2006-06-14mail/mailman -> 2.1.8tv1-1/+2
2006-06-14Update to 2.1.8 release. Changes from 2.1.8rc1:tv2-7/+6
- Brad Knowles' mailman daily status report script updated to 0.0.16.
2006-06-14Manage compression of the help files using the doc-compress scriptjlam2-519/+520
and be more precise about which files are handled instead of touching all the files in share/irc/help. Also, use PLIST_SUBST instead of manually replacing @GZ@ in the PLIST.
2006-06-14Fix typo. Noticed by pkglintd.joerg1-2/+2
2006-06-14wv2 update.markd1-1/+2
2006-06-14Update to wv2-0.2.3markd2-7/+6
* Fixed an integer overflow bug (CVE-2006-2197) * Applied a patch by Friedemann Kleint (Fa. metis) with fixes for Solaris / Sun C++ 5.5 Patch 113817-02 2003/08/29. Additionally fixes some tab-related bugs (unique and erase stuff)
2006-06-14Fix build with the kde option.markd5-27/+29
2006-06-14Avoid libusb on Solaris / x86_64. It exists, but only for 32bit mode.joerg1-1/+6
From Gilles Dauphin in PR 33727.
2006-06-14Needs msgfmt.joerg1-2/+2
2006-06-14update to 1.4.1drochner5-13/+11
changes: -bugfixes -ui improvements -Add basic support for the Quicktime Metalink playlists
2006-06-14base revision has changed, reset PKGREVISIONdrochner1-2/+1
2006-06-14update to 0.10.3drochner4-10/+11
changes: bugfixes
2006-06-14base revision has changed, reset PKGREVISIONdrochner1-2/+1
2006-06-14update to 0.10.8drochner3-25/+6
changes: bugfixes
2006-06-14update to 0.10.8drochner4-15/+13
changes: -many bugfixes -API functions added -gcc-4.1 fixes -New version of data protocol now serializes events -Registry cache updating is now done in a fork, so no plugins are left opened
2006-06-14add gst-plugins0.10-faad-0.10.3, an interface to faad2drochner3-0/+22
2006-06-14add gst-plugins0.10-mpeg2dec-0.10.3, an interface to libmpeg2drochner3-0/+22
2006-06-14import gst-plugins0.10-bad-0.10.3, a collection of gstreamer pluginsdrochner6-0/+111
which have quality problems, but are needed to make eg totem usable
2006-06-14add gst-ffmpeg-0.10.1, an ffmpeg plugin for gstreamer0.10drochner5-0/+45
2006-06-14Fixed pkglint warnings.rillig5-79/+67
2006-06-14normalize a "struct timeval" before use as timeout in select(2),drochner6-5/+28
suggested by Mihai Chelaru per PM (affects RTP) bump PKGREVISIONs
2006-06-14Fixed pkglint warnings.rillig2-166/+165
2006-06-14Updated devel/doxygen to 1.4.7adam2-3/+3
2006-06-14Fixed pkglint warnings and the PLIST. Bumped PKGREVISION.rillig5-32/+36
2006-06-14Changes 1.4.7:adam3-15/+14
* The stylesheet has changed, so if you use your own, you will need to update it or the output will look ugly. * Added support for universal binaries on MacOSX (only the non-GUI part). * Added CALLER_GRAPH config option and \callergraph command to add a caller (or called-by) graph to a function or all functions. * Added REFERENCES_LINK_SOURCE config option which allows to selected if reference relations should point to the source or to the documentation.
2006-06-14mention recent updatesdrochner1-1/+8
2006-06-14Add dependency on p5-DateTime-Format-Builderabs1-1/+2
2006-06-14Made xfractint work on NetBSD.rillig16-30/+506
2006-06-14Updated devel/glibmm to 2.10.4adam1-1/+2
2006-06-14Changes 2.10.4:adam2-6/+6
* Convert functions: Do not try to throw null exceptions when using --enable-api-exceptions=no.
2006-06-14Insert cookie checks into the "real-install" and "real-package" targets,jlam2-2/+6
which are invoked in recursive make calls for the "install" and "package" targets respectvely. These recursive make calls prevent the top-level make from seeing all of the targets and computing a full dependency graph, so it becomes possible for some targets to be invoked more than once. This change passes enough information along to the recursive make calls and ensures that the source targets for the real-* targets are only invoked once.
2006-06-14In pax(1) command lines, -pe is deprecated in favor of -pp.rillig1-1/+9
2006-06-14Updated sysutils/gnome-vfsmm to 2.14.0adam2-3/+3
2006-06-14Changes 2.14.0:adam3-10/+9
* Increased version number for GNOME 2.14
2006-06-14Fix error with just-in-time su when installing dependencies. The codejlam1-3/+4
to install dependencies looked roughly like this: ${CAT} ${_DEPENDS_FILE} | while read type pattern dir; do cd $$dir && ${MAKE} install done In the code above, tghe recursive make invoked to install each dependency does a just-in-time su to acquire root privileges for the installation, but the su tries to get terminal settings for standard input (from the pipe) using tcgetattr(), which fails and subsequently causes su to exit with a puzzling "conversation failure" error. Rewrite the loop to look (roughly) like this: set -- `${CAT} ${_DEPENDS_FILE}` while test $# -gt 0; do type=$1; pattern=$2; dir=$3; shift 3 cd $$dir && ${MAKE} install done Note that this is potentially bad for shells with very low limits on the maximum command line length, but at least this preserves file descriptor 1 to reference the controlling tty unless the user does something weird with input redirection when invoking make.
2006-06-14PKGMANDIR instead of "man".reed1-21/+21
2006-06-14Make sudo use VARBASE.reed1-2/+6
Always use "man" instead of catpages. Make sure "run" directory is precreated, so you don't get: /usr/bin/sudo sudo: can't mkdir /var/run/sudo: No such file or directory Bump PKGREVISION. Okayed by maintainer back in December. The only concern was that /var/run may not be for all platforms, but this is same as other packages to (not specific to sudo).
2006-06-13Mention glx-utils distinfo if changing this version.reed1-1/+2
2006-06-13New package: glx-utils.reed1-1/+2
2006-06-13Add glx-utils.reed1-1/+2
2006-06-13Import glx-utils. I chose the graphics category since that'sreed4-0/+49
where the rest of its family is. The glxinfo program can be used to learn about your OpenGL library. It can identify the OpenGL implementation in use and the detected hardware. The glxgears program is a GLX implementation of the "gears" demo. These tools are from the MesaDemos source code.
2006-06-13Note PKGREVISION bump of db2latex.minskim1-1/+2
2006-06-13Use "rewriteURI", instead of "system" in the XML catalog entry, to makeminskim1-4/+4
it useful not only for docbook.xsl but also for other xsl files with the same prefix. Bump PKGREVISION.