summaryrefslogtreecommitdiff
path: root/x11
AgeCommit message (Collapse)AuthorFilesLines
2006-03-23Make this package build on a case-insensitive filesystem.minskim2-1/+15
2006-03-23Back out the previous gcc-4 fix. It should be fixed in py-qt3-sip.minskim3-29/+1
2006-03-22Explicitly link libkdecore against libz because it is using gz* functions.minskim2-1/+15
This prevents the undefined symbols error on Darwin. No functional changes on other platform.
2006-03-22Make this package build on a case-insensitive filesystem.minskim2-123/+128
2006-03-22We include gmp/buildlink3.mk outside of the BUILDLINK_DEPTH guards sojlam1-3/+1
that "gmp" is registered as a direct dependency for any package that includes ghc/buildlink3.mk to get ghc as a build dependency. This is needed since software built by ghc requires routines from the "gmp" shared library. This fixes PR pkg/33100. Remove the workaround in devel/darcs and x11/wxhaskell.
2006-03-21Bump PKGREVISION for all packages that had broken INSTALL/DEINSTALLjlam13-25/+26
scripts prior to revision 1.43 of bsd.pkginstall.mk.
2006-03-20Fix CVE-2006-0745: Comparing the address of geteuid and 0 to detectjoerg3-3/+24
whether the server was started by non-root is not likely to ever work. This could allow a local user to override system files or run arbitrary code. Patch from the original advisory. Bump revision of xorg-server.
2006-03-20Updated x11/xfce4-utils to 4.2.3nb3martti4-6/+29
Fix the 'id -u' issue on Solaris (pkg/33027). The remaining changes (like sshagent startup) should go via xfce.org.
2006-03-19Break too-long line.jmmv1-2/+3
2006-03-19Manually add dependency on gmp. Should be implied by ghc dependency,wiz1-2/+4
but that doesn't seem to work. Workaround for PR 33100. Bump PKGREVISION.
2006-03-18Make this package build with gcc-4 by type-casting explicitly.minskim3-1/+29
2006-03-16Define target.path for qmake to pass proper options to libtool. This makesminskim2-4/+4
the package build with the libtoolized pkgsrc qmake.
2006-03-15Update to 0.8, provided by OBATA Akio in PR 33068.wiz2-8/+7
New in the 0.8 x11vnc release: TightVNC file transfer support is enabled via the extension to LibVNCServer added by Rohit Kumar. The -passwdfile option has been enhanced to handle any number of full-access and view only passwords in an easy to maintain format, and additional features. The -8to24 option enables multi-depth viewing on systems that do not support -overlay. The 8bpp regions are transformed to depth 24 TrueColor before exporting via VNC. The x11vnc source code has gone through a major reorganization. The build has been enhanced and many bugs fixed. miscellaneous new features and changes: -afteraccept option is like -accept however it enables running a user supplied command after client authentication has taken place. The RFB_* environment variables have been extended. -loop option will run x11vnc in an outer loop restarting each time (useful for situations where the X server restarts often). -slow_fb allows for slow polling for special purpose applications (e.g. video). -blackout noptr,WxH+X+Y,... will prevent the pointer from going into a blacked out region.
2006-03-14Update to 2.8.15:wiz2-7/+6
Overview of Changes from GTK+ 2.8.14 to GTK+ 2.8.15 =================================================== * Bugs fixed: 334098 Keys P and N in "open file" dialog have special meaning [Torben Putkonen] 333372 MS-Windows theme (GTK-Wimp) shows all funky characters [Dom Lachowicz] 163724 Optimize gdk on win32 [John Ehresman] 332662 Hollow polygons have wrong linecaps [Tor Lillqvist] 326362 panel crash with a11y enabled [Kjartan Maraas] * Updated translations (bg,bn,cs,eu,ro)
2006-03-14USE_PKGINSTALL isn't needed here to make these packagse use thejlam2-4/+2
pkginstall framework. In the case of libtool-base, avoid using FILES_SUBST_SED where it isn't needed.
2006-03-14Comment out directories handled by dirs.mk and add missing entries.minskim2-39/+103
Bump PKGREVISION.
2006-03-14Make "gdk-pixbuf-query-loaders" work under Mac OS X again. This allowstron3-3/+17
to build the "xchat" package again. Bump package revision.
2006-03-14Drop maintainership for packages that I no longer have time to maintain.jlam1-2/+2
2006-03-14Fix a bug in the recent package install framework related changes.tron2-5/+5
The file "${PREFIX}/libdata/gtk-2.0/gdk-pixbuf.loaders" was not generated which broke the build of at least the "xchat" package. Bump package revision after this fix.
2006-03-14Remove PLIST entries that are also in x11/kdelibs3/PLIST.minskim2-44/+3
Bump PKGREVISION.
2006-03-14Modify the pkginstall framework so that it manages all aspects ofjlam4-12/+8
INSTALL/DEINSTALL script creation within pkgsrc. If an INSTALL or DEINSTALL script is found in the package directory, it is automatically used as a template for the pkginstall-generated scripts. If instead, they should be used simply as the full scripts, then the package Makefile should set INSTALL_SRC or DEINSTALL_SRC explicitly, e.g.: INSTALL_SRC= ${PKGDIR}/INSTALL DEINSTALL_SRC= # emtpy As part of the restructuring of the pkginstall framework internals, we now *always* generate temporary INSTALL or DEINSTALL scripts. By comparing these temporary scripts with minimal INSTALL/DEINSTALL scripts formed from only the base templates, we determine whether or not the INSTALL/DEINSTALL scripts are actually needed by the package (see the generate-install-scripts target in bsd.pkginstall.mk). In addition, more variables in the framework have been made private. The *_EXTRA_TMPL variables have been renamed to *_TEMPLATE, which are more sensible names given the very few exported variables in this framework. The only public variables relating to the templates are: INSTALL_SRC INSTALL_TEMPLATE DEINSTALL_SRC DEINSTALL_TEMPLATE HEADER_TEMPLATE The packages in pkgsrc have been modified to reflect the changes in the pkginstall framework.
2006-03-14Sort.minskim1-3/+3
2006-03-13clean up COMMENT a bithubertf1-2/+2
2006-03-13Fix path generation so that security/qca{,-tls} don't have to patch Makefileminskim3-10/+20
or override do-install. Bump qt3-tools PKGREVISION.
2006-03-13The x11/Xaw3d library has an integer overflow error in the computationmarkd3-3/+22
of the geometry for a Box Layout (file Box.c). There, the box tries to extend its width until its height fits within the constraint height (influenced by the window manager). Unfortunately, widths are 16bit unsigned and in the error case (occuring under KDE), the constraint width is 65535, i.e. maximal. The code loops until either the computed height is smaller than the constraint height or the width exceeds the constraint width. In each loop iteration, the width of the box layout is doubled. This loop does not terminate, if one chooses unfortunate initial width, as the width wraps around if it overflows 16 bits and if the maximal constraint width is SHORT_INT_MAX. Patch tries to capture the overflow before it wraps around the `width' variable, setting the width to the maximal one. From Stephan Thesing in PR pkg/32445. Bump PKGREVISION.
2006-03-12Update to 0.17.1:wiz2-9/+7
Devil's Pie "Out Of Gas, Still Burning" 0.17.1 ============================================== * Depend on GLib 2.9.1 onwards Devil's Pie "Stay With Me While We Grow Old" 0.17 ================================================= * Fix compile with GLib 2.10.
2006-03-12Fixed pkglint warnings by replacing SITES_* with SITES.*, adding :Qrillig1-6/+5
operators and removing a variable whose name started with an underscore.
2006-03-12Update gst-plugins-0.10-base and packages based on this one to 0.10.4:jmmv1-2/+1
Changes since 0.10.3: * (Experimental) QoS support * oggmuxer now creates 100% valid streams for Theora, Vorbis and Speex * documentation updates * better support for subtitles (seeking) Bugs fixed since 0.10.3: * 310202 : [subtitles] < i > < /i > tags and others should be supported i... * 312439 : XVideo output doesn't work on remote displays (probably r... * 321271 : audio output is truncated at EOS * 321650 : Can't decode this ogm file * 325732 : [oggdemux] problem when seeking to time less than 4s with... * 325972 : [typefinding] doesn't recognise this mp3 * 326720 : [alsasink] doesn't support more than 2 channels anymore * 330711 : [ffmpegcolorspace] problems with palettized RGB (fencount... * 330789 : gstbaseaudiosink causes noise on seeking * 330888 : Fix build with gcc 2.95 (again) * 331295 : gnomevfssink doesn't respect umask when creating files * 331526 : 3GP type detection is too simple * 331678 : Decodebin is not reusable within a single pipeline (as in... * 331690 : playbin won't play my last.fm stream * 331763 : [alsamixer] unmute sets the volume to 100% * 331765 : [alsamixer] mixer applet slider doesn't want to move from... * 331903 : [videorate] doesnt handle input caps of framerate=0/1 sanely * 332778 : [ogmparse] " Already an existing pad " WARNING * 332964 : random crashes in mp3_type_find * 333254 : theora encoder does not set IN_CAPS flag properly * 333352 : [gnomevfssink] reports disk full as generic error * 333488 : Allow for palette < 256 colours in AVI files * 333510 : [PATCH] Fix gst_pad_new_from_template (gst_static_pad_tem... * 333545 : [riff] set depth on wma caps to make asfdemux and pitfdll... * 333663 : [patch] unref the result of gst_pad_get_parent * 333900 : [typefind] cannot play a particular mp3 file * 334112 : variable not initialized * 334129 : Disable frame dropping for now * 317038 : use default channel layout if none is specified in multic... * 319340 : [cdparanoia] uncorrected-error signal never fired API added since 0.10.3: * GstTextOverlay::halignment * GstTextOverlay::valignment
2006-03-12Update to 2.2:jmmv4-34/+13
2.2 Bugfixes. XML processing improved. Better compatibility with modular X.org filesystem layout 2.1 Bugfixes. GCC 4.x compatibility patches.
2006-03-12Force to use the libtool mode of qmake, instead of patching theminskim6-26/+116
non-libtool mode to use libool. In this way, qmake will generates valid install commands. This closes PR pkg/29572. Bump qt3-tools PKGREVISION.
2006-03-11Converted to the SUBST framework.rillig1-13/+5
2006-03-11Remove BROKEN_IN. The installation problem has been fixed.hira1-3/+1
2006-03-11Convert all packages using REPLACE_INTERPRETER to the new variable namesghen1-4/+4
without underscores (REPLACE.*.old, REPLACE.*.new, and REPLACE_FILES.*). Also convert REPLACE.*.new= ${SH:Q} back to ${SH}, as it should not be quoted here, if at all. Ok with rillig.
2006-03-11Improve COMMENT.reed1-2/+2
2006-03-11In the comment at top also mention "pkgsrc". As this could be confusingreed1-3/+3
for someone not using "netbsd-g++". (This has been in my pkgsrc since at least July.)
2006-03-10Take over maintainership, jmmv@ ok.wiz1-2/+2
2006-03-09Replace references to ossaudio.buildlink3.mk with oss.buildlink3.mk.jlam5-10/+10
Remove deprecated ossaudio.buildlink3.mk.
2006-03-09audio/oss/buildlink3.mk is no more after audio/oss was removed fromjlam1-6/+1
pkgsrc.
2006-03-09Update to 2.8.14:wiz3-21/+7
Overview of Changes from GTK+ 2.8.13 to GTK+ 2.8.14 =================================================== * Fixed invalid memory access in g_object_sink() from GLib-2.10.0 (in combination with GLib-2.10, at least GLib-2.10.1 is required now). * Bugs fixed: 320132 Drag cursor position not identical with the drag hotspot [Christian Neumair] 333133 wrong appearance for colour button [Christian Persch] 321301 ms-windows-engine differences from native GUI - combo boxes [Jernej Simončič, Dom Lachowicz] 333291 Focus line of GtkExpander at the wrong place in RTL mode [Benjamin Berg] 324562 XInput events are at incorrect xy-coordinates [Denis Auroux] 142536 Wacom pointer offset when using TopY other than 0 [Robert Ögren] 332985 GtkButton doesn't allow image-only buttons via "image" property [Kalle Vahlmann] 333555 When changing icon of button, icon does not change 332466 Strange row spacing in GtkIconView when item width is set [Donald Straney] 333363 build_insensitive_pixmap does not check return value from gdk_pixbuf_get_from_drawable [Ed Catmur] 333268 Crash in gnome-program when running a program with an wrong display [Paolo Maggi, Christian Persch] 333377 Cursor does not appear everytime when clicking on the widget [Steve Frécinaux] 323401 blink_cb optimization is not working 316689 GtkTreeView does not resize correctly [Chris Lord] 148518 Fix incremental loading of 8-bit pcx files [Magnus Bergmann] * Updated translations (cy,de,es,nn,pl)
2006-03-09Use REPLACE_INTERPRETER instead of a patch.ghen3-8/+12
2006-03-08Fix typo resulting in incorrect thread detection. Bump revision.joerg3-9/+9
2006-03-06Belatedly bump PKGREVISION for all libtasn1 dependencies, sincewiz17-30/+34
libtasn1 had a shlib major bump. Also update dependencies in bl3.mk files. Addresses PR 32998 by Robert Elz.
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam130-260/+260
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-03-03Regen so that the Mac OS X patch program can apply it.kristerw2-4/+4
2006-03-03Add the "makesum" info for "mac" version also.reed3-3/+12
I had to do this manually, since "bmake makesum" removed the "x11" version. (I only tested for py-qt3-base.)
2006-03-03Update download site (previous was missing).reed1-2/+2
2006-03-03Update tkman to 2.2. This version is an update for Tcl/Tk 8.4.minskim5-63/+64
2006-03-03Make qmake and libtool use the same library versioning. Should haveminskim3-7/+7
been done when the pkgsrc libtool versioning was changed. This addresses PR pkg/29572. No recursive bump because the major version number is not affected by this. Bump PKGREVISION for qt3-libs and qt3-tools.
2006-03-02Fix AGP GART support on DragonFly. Fix PLIST on DragonFly.joerg4-6/+36
Bump xorg-server revision.
2006-03-02Prevent qmake from generating .la files. In pkgsrc, they are taken careminskim2-1/+15
of by libtool. This fixes PRs pkg/30656 and pkg/32244.