summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2008-05-24Switch master site to MASTER_SITE_XORG.tnn3-8/+8
2008-05-24Adjust the package, this is version 4.1.4 not 4.1.3.tnn2-10/+8
Also use the .tar.gz distfile instead of the .zip one.
2008-05-24Conflicts lines for the same package name but different version aretnn2-6/+2
redundant, so drop them. XXX: should one of the pkgs be renamed?
2008-05-24Update to 7.7:wiz2-6/+6
Release 7.7 07-May-08 --------------------- This is once again mainly a bug-fix release, but there are a couple of new features.
2008-05-24GNU configure require C compiler in configure phase.obache2-4/+4
Suggested by Hasso Tepper in PR 38626.
2008-05-23Set need_ksh=yes for SunOS as well. Asked by joerg@tnn1-6/+2
2008-05-23On OSF1, depend on shells/pdksh and use it for the default shell.tnn1-1/+7
Bump the pkgrevision because if this change.
2008-05-23Add DESTDIR support.joerg1-2/+6
2008-05-22Allow overriding the default cache size cap at compile time.tnn1-1/+7
2008-05-22Remove patch-ad, which breaks self tests on NetBSD-4.99.63/amd64.wiz5-76/+5
Replace first hunk of patch-af with CONFIGURE_ARGS. Remove next two hunks of patch-af installing some private headers. This shouldn't be necessary in the 7.x versions. If it is, the author is willing to help fix the underlying problems. patch-aa and -ab will be included in the next upstream release. Bump PKGREVISION.
2008-05-22Give up MAINTAINERship, I don't have time to take care of this...martti1-2/+2
2008-05-22Add sunifdef to devel/Makefile.bjs1-1/+2
2008-05-22Import sunifdef-3.1.3.bjs4-0/+50
-- Sunifdef is a commandline tool for eliminating superfluous preprocessor clutter from C and C++ source files. It is a more powerful successor to the FreeBSD 'unifdef' tool. Sunifdef is most useful to developers of constantly evolving products with large code bases, where preprocessor conditionals are used to configure the feature sets, APIs or implementations of different releases. In these environments the code base steadily accumulates #ifdef pollution as transient configuration options become obselete. Sunifdef can largely automate the recurrent task of purging redundant #if logic from the code.
2008-05-21Update to tkdiff-4.1.3. Closes PR pkg/34440tnn2-7/+6
4.1.3 * Fixed incompatibility with older versions of Tcl/Tk ("-state disabled"). * Applied Warren Jones' subversion patch, which prevents the svn error that occurs when you omit a revision number. 4.1.2 * Can now do "tkdiff OLD-URL[@OLDREV] NEW-URL[@NEWREV]" in Subversion 4.1.1 * Security patch for temp files (CVE-2005-4434) 4.1 * Clearcase support * Better Subversion support * -L command line option allows you to control the labels above the diff file panes. * tkdiff --help or -h print a usage message for command line without invoking the GUI. * The New Diff Dialog is expanded so you can specify all the options. * The two panes can be resized relative to each other using a sash widget.
2008-05-21Use the English version of the homepage rather than the German one.tnn1-2/+2
(Entschuldigung!)
2008-05-21Bump ABI dependency to 2.14.3, the first version in pkgsrc that addedtnn1-2/+2
a dependency on the external PCRE library.
2008-05-21Update to 7.1. Extract from ChangeLog:wiz5-79/+13
* doc/gcinterface.html: Improve C++ interface documentation. * allchblk.c (GC_allochblk): Check for overflow during size rounding. * malloc.c: (free replacement) Fix caller address space check. * finalize.c (GC_grow_table): Dereference table in null-check. * allchblk.c (add_to_fl): disable assertions with USE_MUNMAP, and refine assertions to handle huge unmergable blocks. * allchblk.c (GC_enough_large_bytes_left): No longer take parameters; return free list index bound. (GC_merge_unmapped): Don't access nexthdr until after null test. (Fixes bug in 1/29/08 check-in.) (GC_allochblk): Calculate when splitting is allowable only once here, not when considering each block. (GC_allchblk_nth): Accept new may_split parameter. Avoid some redundant tests for exact size matches. * alloc.c (GC_should_collect): Cache min_bytes_allocd. (GC_maybe_gc): Make locking assertion testable. * mark_rts.c: Fix indentation. * pthread_stop_world.c: Replace old GC_err_printf1 reference. * misc.c (GC_init_inner): Assert !GC_need_to_lock only when defined. (GC_call_with_stack_base): Add GC_API. * os_dep.c (GC_get_stack_base): Add GC_API. * win32_threads.c: (GC_register_my_thread, GC_unregister_my_thread): Add GC_API. * include/gc.h: Add GC_API annotations. * include/private/gc_locks.h: Define UNCOND_LOCK etc. also for PCR. * include/private/gc_priv.h, mark_rts.c, typd_mlc.c: Add GC_push_typed_structures() to push GC_ext_descriptors. * allchblk.c (GC_merge_unmapped, GC_freehblk): Refuse to create blocks large enough that their size, when interpreted as a signed value, would be negative. * include/private/gc_priv.h: Update MAX_ROOT_SETS and LOG_PHT_ENTRIES to handle larger heaps. * allchblk.c, alloc.c, include/private/gc_priv.h: Track GC_bytes_dropped and use in GC triggering decisions. * alloc.c (min_bytes_allocd): Weight atomic blocks less. * alloc.c (GC_add_to_heap): Call GC_install_header(p) AFTER adjusting p. * alloc.c: Define GC_version instead of in version.h. * version.h: Remove. * include/gc_version.h: Move most of version.h here. * include/gc.h, doc/README.macros: Add GC_NO_THREAD_REDIRECTS, GC_NO_THREAD_DECLS, don't test explicitly for GC_SOLARIS_THREADS. * alloc.c: Deal correctly with address wrapping for GC_greatest_plausible_heap_addr and GC_least_plausible_heap_addr. * finalize.c, include/gc.h (GC_register_disappearing_link, GC_register_finalizer_inner): Improve out-of-memory handling. * dyn_load.c (GC_dyld_image_add): Remove ifdef clause and use the macro GC_GETSECTBYNAME instead. * include/private/gc_priv.h: Define GC_GETSECTBYNAME according to the architecture (Darwin). * thread_local_alloc.c (GC_malloc_atomic, GC_gcj_malloc): Pass granules, not bytes, to GC_FAST_MALLOC_GRANS. * include/gc.h: Never include gc_local_alloc.h. * malloc.c: Update GC_large_allocd_bytes on explicit deallocation. * allchblk.c: Sanity check GC_max_large_allocd_bytes. * include/extra/gc.h, include/extra/gc_cpp.h: New. * include/include.am: Install gc.h and gc_cpp.h in $(prefix)/include again. * dbg_mlc.c: Use random() on all glibc systems. * mach_dep.c (GC_with_callee_saves_pushed): Don't use getcontext() on HURD. Add comment. * pthread_stop_world.c (GC_suspend_handler, GC_stop_init): Accomodate systems without SA_SIGINFO. * alloc.c, backgraph.c, headers.c, include/private/gc_priv.h: Maintain GC_our_memory and GC_n_memory. * dbg_mlc.c (GC_print_smashed_obj): Improve message. (GC_print_all_smashed_proc): Pass client object address instead of base. * dyn_load.c (sort_heap_sects): New. (GC_register_map_entries): Register sections that are contiguous and merged with our heap. * malloc.c, os_dep.c (GC_text_mapping): Check for just base name of libraries. * malloc.c (calloc): Check for special callers even with USE_PROC_FOR_LIBRARIES. Move assertion. Add rudimentary malloc/free tracing. * misc.c: No longer call GC_init_lib_bounds explicitly. * thread_local_alloc.c (GC_malloc, GC_malloc_atomic): Always initialize on demand. * alloc.c (GC_stopped_mark): Call GC_add_current_malloc_heap() while world is still running. * os_dep.c (GC_is_heap_base): Don't call GC_add_current_malloc_heap() with world stopped. * include/gc.h (GC_INIT for cygwin): Always call GC_add_roots. * misc.c (GC_init/GC_init_inner): Perform all work in GC_init_inner.
2008-05-21Also add malloc.c as required by configure.tnn2-1/+33
Reported in SF.net bug # 1899047
2008-05-21Don't use a macro named __(), because __ has internal use in OSF1 systemtnn1-1/+8
headers. Supposedly fixed already in upstream CVS. This closes PR pkg/38400 from Hans Rosenfeld.
2008-05-21Update to 0.0.0.42:wiz2-7/+7
Don't segfault on invalid RCS files.
2008-05-21Update to 0.0.0.122:wiz2-7/+7
Remove now unneeded comment. Make tohg work with current mercurial. Only handle repocopy if we have data. Implement complete repo file list, approximated by branch file lists. Fix filelist for nonexisting branches.
2008-05-20Also disable fam on OSF1tnn1-2/+2
2008-05-20Drop -Werror, it doesn't appear to be warns safe:tnn1-1/+3
scsi.c:1047: warning: pointer type mismatch in conditional expression
2008-05-20Update to 2.5.darcy2-7/+6
Uses internal version of strdup (my_strdup) rather than depending on availability in all systems. Fixes Linux bulk build.
2008-05-19Fix most of the IRIX fam fallout mentioned in PR pkg/38639.tnn3-7/+39
The gio/tests issue remains, but I couldn't reproduce it with GCC.
2008-05-18Need msgfmt to build.obache1-2/+2
Noticed by Hasso Tepper in PR 38686.
2008-05-18Update homepage.tnn1-2/+2
2008-05-15update to 3.4.5drochner3-8/+9
changes: -Port to gtk 2.12 tooltips API -Now first toplevel in project automatically shows up in the workspace -Project no longer allows duplicate widget names -bugfixes -translation updates
2008-05-14Mantis 1.1.1 Releasedadrianp3-55/+234
This is a maintenance release for the 1.1.x branch. It includes a fix for PHP 4 support (#8681 stripos), several fixes for SOAP API, a security fix, and other minor bug fixes. Mantis 1.1.0 Released After 4 alpha releases, 3 release candidates and over 400 features and bug fixes, Mantis 1.1.0 gold is finally released. The highlights of the Mantis 1.1.0 release include: 1. Inclusion of MantisConnect (SOAP API) out of the box 2. Wiki integration (dokuwiki, mediawiki, xwiki), 3. Email queuing, 4. Gravatar integration, 5. DB2 support, 6. Tagging, 7. Filtering perma links, 8. Time tracking, 9. Twitter integration, 10. UTF8 support, 11. Generic configuration page, 12. Show last visited issues, 13. XHTML compliance, 14. Authenticated RSS
2008-05-14-make this a build dependency by default, if is used to generate sourcedrochner2-8/+15
code during the build (if at all - currently it is unused unless someone patches xml metadata in compiz plugin sources) -it needs bash and GNU getopt to work correctly
2008-05-14Fix to instal cairo-quartz-font.pc.obache2-3/+10
(and while here, enable quartz-image) Then atsui support for pango again. Bump pkgrevision.
2008-05-14Bl3 -lX11, -lICE, and -lSM. If pango does not include X11, configuregdt1-1/+6
adds these libraries explicitly. With X11_TYPE=modular, they are not found. This fix does not seem entirely right, but does seem necessary. It's not clear how this ever built with modular.
2008-05-12Enable compiz-bcopjmcneill1-1/+2
2008-05-12Import compiz-bcop:jmcneill5-0/+56
Compiz is a compositing window manager that uses 3D graphics acceleration via OpenGL. It provides various new graphical effects and features on any desktop environment, including Gnome and KDE. This package contains the compiz option code generator.
2008-05-12Enable compizconfig-backend-gconfjmcneill1-1/+2
2008-05-12Import compizconfig-backend-gconf:jmcneill4-0/+31
Compiz is a compositing window manager that uses 3D graphics acceleration via OpenGL. It provides various new graphical effects and features on any desktop environment, including Gnome and KDE. This package contains a gconf plugin for the compiz configuration backend.
2008-05-12Enable py-compizconfigjmcneill1-1/+2
2008-05-12Import py-compizconfig:jmcneill5-0/+63
Compiz is a compositing window manager that uses 3D graphics acceleration via OpenGL. It provides various new graphical effects and features on any desktop environment, including Gnome and KDE. This package contains python bindings for libcompizconfig.
2008-05-12Enable libcompizconfigjmcneill1-1/+2
2008-05-12Import libcompizconfig-0.6.0:jmcneill7-0/+103
Compiz is a compositing window manager that uses 3D graphics acceleration via OpenGL. It provides various new graphical effects and features on any desktop environment, including Gnome and KDE. This package contains a library for the compiz configuration backend.
2008-05-10Use PREFIX to determine xdg share directory location, fixes mime typejmcneill3-3/+17
detection with gvfs.
2008-05-09Make this build on Mac OS X.agc3-8/+8
2008-05-09fix PKGREVISIONdrochner1-2/+2
2008-05-09PR pkg/38615: Hasso Tepper: Fix build on DragonFlyBSD > 1.11.tnn2-1/+14
2008-05-07Update to monotone-viz-1.0.1. Significant improvements: no longerbjs3-15/+15
accesses the database directly: instead, it uses mtn annotate. Also, some compile fixes for "various systems" (says the ChangeLog). While here, change the distfile to the one without the included lablgtk, as we don't use it. Also, install the style example into ${EGDIR}.
2008-05-063.0.4adrianp3-8/+12
* Bugzilla administrators were not being correctly notified about new releases. (Bug 414726) * There could be extra whitespace in email subject lines. (Bug 411544) * The priority, severity, OS, and platform fields were always required by the Bug.create WebService function, even if they had defaults specified. (Bug 384009) * Better threading of bugmail in some email clients. (Bug 376453) * There were many fixes to the Inbound Email Interface (email_in.pl). (Bug 92274, Bug 377025, Bug 412943, Bug 413672, and Bug 431721) * checksetup.pl now handles UTF-8 conversion more reliably during upgrades. (Bug 374951) * Comments written in CJK languages are now correctly word-wrapped. (Bug 388723) * All emails will now be sent in the correct language, when the user has chosen a language for emails. (Bug 405946) * On Windows, temporary files created when uploading attachments are now correctly deleted when the upload is complete. (Bug 414002) * checksetup.pl now prints correct installation instructions for Windows users using Perl 5.10. (Bug 414430) 3.0.3 * mod_perl no longer compiles Bugzilla's code for each Apache process individually. It now compiles code only once and shares it among each Apache process. This greatly improves performance and highly decreases the memory footprint. (Bug 398241) * You can now search for '---' (without quotes) in versions and milestones. (Bug 362436) * Bugzilla should no longer break lines unnecessarily in email subjects. This was causing trouble with some email clients. (Bug 374424) * If you had selected "I'm added to or removed from this capacity" option for the "CC" role in your email preferences, you wouldn't get mail when more than one person was added to the CC list at once. (Bug 394796) * Deleting a user account no longer deletes whines from another user who has the deleted account as addressee. The schedule is simply removed, but the whine itself is left intact. (Bug 395924) * contrib/merge-users.pl now correctly merges all required fields when merging two user accounts. (Bug 400160) * Bugzilla no longer requires Apache::DBI to run under mod_perl. It caused troubles such as lost connections with the DB and didn't give any important performance gain. (Bug 408766) Security Fixes: Unauthorized Bug Change Cross-Site Scripting Account Impersonation (Minor)
2008-05-062.22.4adrianp3-8/+12
Class: Cross-Site Scripting Versions: 2.17.2 and higher Description: When using the "Format for Printing" view of a bug (or the "Long Format" of a bug list, which is the same thing), there was a cross-site scripting hole--arbitrary text from a particular URL parameter could be injected into the page without filtering.
2008-05-06Add support for XRandR via x11/libXrandr. Bump PKGREVISION.bjs2-2/+5
2008-05-05Update to 1.4:xtraeme3-10/+19
This release of Bazaar includes handy improvements to the speed of log and status, new options for several commands, improved documentation, and better hooks, including initial code for server-side hooks. A number of bugs have been fixed, particularly in interoperability between different formats or different releases of Bazaar over there network. There's been substantial internal work in both the repository and network code to enable new features and faster performance. BUG FIXES: * Pushing a branch in "dirstate" format (Branch5) over bzr+ssh would break if the remote server was < version 1.2. This was due to a bug in the RemoteRepository.get_parent_map() fallback code. (John Arbash Meinel, Andrew Bennetts, #214894)
2008-05-02Update to 0.13.5, OK'd by dogcow@. Changes since 0.13.4:bouyer2-6/+6
Added support for many new processors in all families. Added support for CONFIG directive on 18F devices. Support for new COFF format (MPASM default) in gpvo. Fixed bugs.