pkgsrc/x11
wiz 2c86ff57fd Update to 2.12.4:
2008-09-23  Mike Gorse <mgorse@novell.com>

	* atk/Makefile.am: add atk/atk.h to glue_includes.
	* atk/glue/Makefile.am: Compile atk/glue/generated.c.

2008-09-23  Andrés G. Aragoneses  <aaragoneses@novell.com>

	Fixes BNC#384475.
	* atk/Object.custom: Provide a new overload that receives an
	enum instead of an ulong, for a friendlier managed API.

2008-09-18  Mike Kestner  <mkestner@novell.com>

	* bootstrap-2.12: bump svn version.
	* generator/Signal.cs: add a workaround for G_TYPE_POINTER usage
	in the GtkEditable::text_inserted signal.  The signal parameter
	received by the closure will be an IntPtr, which we then have to
	use to read/write the value directly from unmanaged memory.
	[Fixes #427588]

2008-09-18  Mike Kestner  <mkestner@novell.com>

	* generator/LPGen.cs: remove WIN64LONGS hackery.
	* generator/LPUGen.cs: remove WIN64LONGS hackery.
	* generator/SymbolTable.cs: for WIN64LONGS, map them directly to
	  (u)int SimpleGens instead of using the LP generatables.

2008-09-16  Jeffrey Stedfast  <fejj@novell.com>

	* generator/Property.cs (IsDeprecated): Allow "1" or "true".

	* generator/Method.cs (.ctor): Allow "1" or "true".

	* generator/ClassBase.cs: Allow a value of "true" to work the same
	as "1" for the deprecated and abstract attributes.

	* generator/ObjectGen.cs (Generate): Remove the extra generated
	space if the class isn't abstract.

2008-09-12  Zoltan Varga  <vargaz@gmail.com>

	* glib/GType.cs (FindTypeInReferences): Put a try-catch around the assembly
	loading as failure to load a referenced assembly is not really an error.

2008-09-12  Mike Gorse <mgorse@novell.com>

	* atk/Object.custom, atk/glue/object.c: Support GetIndexInParent.

2008-09-09  Mike Kestner  <mkestner@novell.com>

	* generator/ReturnValue.cs: warning cleanup.
	* gtk/Gtk.metadata: warning cleanup.

2008-09-09  Zoltan Varga  <vargaz@gmail.com>

	* glib/GType.cs (FindTypeInReferences): Skip dynamic assemblies.

2008-09-08  Mike Kestner  <mkestner@novell.com>

	* glib/GType.cs: beef up the referenced assembly loading code to
	handle assemblies located in the same directory as the referring
	assembly.  Fixes #423450.

2008-09-05  Andrés G. Aragoneses  <aaragoneses@novell.com>

	Fixes BNC#387220.
	* glib/glue/signal.c: New glue file to call g_signal_query().
	* glib/glue/Makefile.am: Add signal.c.
	* glib/Signal.cs: check return type prior to emitting.

2008-08-28  Andrés G. Aragoneses  <aaragoneses@novell.com>

	* atk/Util.custom: unregister get_root function when the setter
	receives null. Partial fix for BNC#411444.

2008-08-27  Mike Kestner  <mkestner@novell.com>

	* generator/ManagedCallString.cs: use existing Parameters.IsHidden
	method to check for hidden user data.

2008-08-27  Mike Kestner  <mkestner@novell.com>

	* generator/ManagedCallString.cs: revert last change.  There are a
	lot of "broken" callback sigs out there which expose user data because
	it's not in the last parameter in the list.  I don't think we can
	reasonably make a change to hide all those at this point.  This change
	at least hides all the user_data which comes right before a GError
	param at the end of the list.  I need to follow up with a change which
	handles data parameters in any parameter position, but allows the user
	to mark "exposed" data params for compatibility reasons.
	* generator/Parameters.cs: hide data params which are at the end of a
	list behind an error param.
	* gtk/Gtk.metadata: mark an array parameter on
	TextBufferDeserializeFunc.

2008-08-27  Mike Kestner  <mkestner@novell.com>

	* glib/Signal.cs: multiple dispose guarding for closures.

2008-08-27  Mike Kestner  <mkestner@novell.com>

	* generator/ManagedCallString.cs: fixes for data parameter hiding
	in native to managed callback generation.

2008-08-20  Mike Kestner  <mkestner@novell.com>

	* glib/Object.cs:
	* glib/Signal.cs: fix a couple 2.0-isms.  Patch from Christian Hoff.

2008-08-20  Mike Kestner  <mkestner@novell.com>

	* bootstrap-2.12: bump svn version after tag.

2008-08-20  Mike Kestner  <mkestner@novell.com>

	* generator/ReturnValue.cs: use new ListPtrToArray marshaler for
	lists with known element types.
	* glib/Marshaller.cs: new ListPtrToArray marshaller with more
	aggressive list disposal.
	* gtk/Container.custom: remove manual Children impl.  Use Children
	in GetEnumerator instead of pinvoking directly.
	* gtk/Gtk.metadata: remove hidden attr and add element type and owned
	for Container.GetChildren to generate it properly.

2008-08-20  Mike Kestner  <mkestner@novell.com>

	Patch from Christian Hoff fixing bug #396195.
	* generator/Property.cs: handle interface adapter values.
	* generator/InterfaceGen.cs: register the gtype so mapping occurs
	automatically for interface adapters.  New GetObject overload to
	handle already wrapped objects more efficiently.
	* glib/Value.cs: handle set_Val for interface adapter objects.

2008-08-19  Brad Taylor  <brad@getcoded.net>

	* atk/Object.custom: Add method to allow emission of
	  visible-data-changed signal.

	* atk/TextChangedDetail.cs:
	* atk/TextAdapter.custom: Add method to allow emission of text-changed
	  signal.

2008-08-13  Mike Kestner  <mkestner@novell.com>

	* atk/Atk.metadata: switch Value methods to ref params since atk
	actually checks for initialized values instead of just treating it
	like uninitialized memory.  Makes for uglier API, but avoids crashes
	in unfortunate memory content scenarios.

2008-08-04  Mike Kestner  <mkestner@novell.com>

	* gtk/IconTheme.custom: elements and the list returned by
	ListIcons are owned.

2008-08-04  Mike Kestner  <mkestner@novell.com>

	* gtk/Gtk.metadata: mark IconTheme.LoadIcon return as owned.

2008-07-23  Mike Kestner  <mkestner@novell.com>

	* atk/Atk.metadata: map some out params on Atk.Value.  They
	were unusable in their existing form.

2008-07-08  Mike Kestner  <mkestner@novell.com>

	Patch from Christian Hoff with a few minor tweaks.
	* generator/CallbackGen.cs: refactor to use ManagedCallString
	and drop a ton of redundant, half-baked code.
	* generator/ManagedCallString.cs: add Unconditional setup
	method for stuff that has to happen before the try block.
	Add "drop_first" concept so it can be reused by CallbackGen
	which doesn't drop first params.
	* generator/Signal.cs: use Unconditional method for prep.
	* generator/VirtualMethod.cs: use Unconditional method for prep.
	* gtk/Gtk.metadata: mark a ref param. [Fixes #394352]

2008-06-28  Mike Kestner  <mkestner@novell.com>

	* gtk/Gtk.metadata: mark ListStore.Reorder array param.
	* gtk/ListStore.cs: compat obsolete method, though the old one
	was useless.

2008-06-28  Mike Kestner  <mkestner@novell.com>

	* glib/Marshaller.cs: some 64 bit fixes for time_t marshaling
	issue found by Federico.

2008-06-28  Mike Kestner  <mkestner@novell.com>

	* gtk/TreeSelection.custom: use list marshaler to avoid O(n^2)
	copy from old custom code.  [Fixes #404669]

2008-06-28  Mike Kestner  <mkestner@novell.com>

	* gtk/Gtk.metadata: mark a const string. [Fixes #404630]

2008-06-27  Mike Kestner  <mkestner@novell.com>

	* gtk/Gtk.metadata: fix a couple out params.

2008-06-20  Mike Kestner  <mkestner@novell.com>

	* glib/Value.cs: Patch from Christian Hoff.  Support for byte and
	sbyte values.

2008-06-17  Mike Kestner  <mkestner@novell.com>

	* glib/SignalClosure.cs: post back the gvalues after the closure is
	invoked using a new Update method on GLib.Value.  This only impacts
	boxed types, since they are the only "value types" passed by ref in
	the signal marshaling environment.  We can't call set_boxed on the
	value to update it, since that allocs new memory, we need to marshal
	the updated struct out to the existing native memory address using
	g_value_get_boxed.
	* glib/Value.cs (Update): new update method for writing values to
	an existing boxed type instance instead of allocating a new native
	struct.  Fixes #398929.

2008-06-17  Mike Kestner  <mkestner@novell.com>

	* glib/GType.cs (LookupType): traversed referenced assemblies to
	find types in currently unloaded assemblies.  Fixes #400595.

2008-06-16  Andrés G. Aragoneses <aaragoneses@novell.com>

	* atk/Object.custom:
	* atk/glue/object.c:
	Simplified code for previous issue (recommendation from mkestner).

2008-06-16  Mike Kestner  <mkestner@novell.com>

	* glib/glue/object.c: fixes for object, boxed, and gtype
	property paramspec creation. Patch provided by Christian Hoff.

2008-06-09  Andrés G. Aragoneses <aaragoneses@novell.com>

	* atk/Object.custom:
	* atk/glue/object.c:
	Temporary workaround for infinite recursion issue.

2008-06-06  Andrés G. Aragoneses <aaragoneses@novell.com>

	* glib/glue/thread.c: Fix a warning.

2008-06-06  Mike Kestner  <mkestner@novell.com>

	Initial Patch submitted by Christian Hoff with some small
	style alterations and a round trip sample by me.  Supports the
	registration of managed properties with the GType system, so
	that things like custom cell renderers can be accessed via the
	native property system from treeview.

	* glib/glue/object.c : property registration related glue.
	* glib/Object.cs: implement managed property registration.
	* glib/PropertyAttribute.cs: add new props and ctor for managed
	property registration.
	* sample/PropertyRegistration.cs: little test app to test round-
	tripping of registered properties.
	* sample/Makefile.am: add new sample.

2008-06-06  Mike Kestner  <mkestner@novell.com>

	* atk/Object.custom: use 'as StateSet' instead of cast to avoid
	cast exceptions in the null case. Apparently it's not an exception
	any more, according to folks on #monodev.  I still prefer as for
	GetObject 'casting'.

2008-06-06  Andres G. Aragoneses <aaragoneses@novell.com>

	* atk/Object.custom:
	* atk/glue/object.c: Implement virtual method OnRefStateSet().

2008-05-30  Mike Kestner  <mkestner@novell.com>

	* gdk/Pixbuf.custom: don't use the autogenerated PixbufDestroyNative
	delegate type since is has a byte[] parameter that blows up.

2008-05-30  Mike Kestner  <mkestner@novell.com>

	* gtk/Object.custom:
	* gtk/glue/object.c: remove the destroy override.  it doesn't work.

2008-05-28  Mike Kestner  <mkestner@novell.com>

	* gtk/Object.custom: move Dispose call to a vm override so that
	it runs after all signals and native overrides have run.
	* gtk/glue/object.c: destroy override implementation.

2008-05-28  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk/Object.custom: If all destroy handlers have been
	unregistered, remove the hashtable entry since it is
	not needed anymore.

2008-05-27  Mike Kestner  <mkestner@novell.com>

	* generator/Method.cs (GenerateBody): when generating value type
	methods, we should demarshal the 'this' memory before any ref or
	out parameters in the event that someone passes 'this' as a param.
	That will ensure that an updated value coming back from the native
	side ends up in the memory location.

2008-05-22  Mike Kestner  <mkestner@novell.com>

	* gtk/Widget.custom: guard against MissingIntPtrCtorException in
	the Activate and SetScrollAdjustments funky signal VM impl. Can't
	use SignalClosure easily.  Could be reworked more cleanly at some
	point.  Or not.

2008-05-21  Mike Kestner  <mkestner@novell.com>

	* gtk/Object.custom (OnDestroyed): ensure Dispose runs even if
	no Destroyed handlers are connected.

2008-05-21  Mike Kestner  <mkestner@novell.com>

	* gtk/Application.cs (CurrentEvent): use Event.GetEvent to retrieve
	an explicit event subclass.

2008-05-15  Mike Kestner  <mkestner@novell.com>

	* kill the makefile.win32 build system.  it has been unmaintained
	for quite some time, replaced by the auto* build in cygwin.

2008-05-14  Andres G. Aragoneses <aaragoneses@novell.com>

	* atk/Object.custom: Track API changes in GLib.Signal.
	* glib/Signal.cs: AddEmissionHook binding (for closing #386950), and
	  change API of Emit to mimic the detailed_signal pattern.
	* glib/GType.cs: GType.FromName: new wrapper for native call.
	* glib/ObjectManager.cs: Use the new FromName managed method.

2008-05-08  Mike Kestner  <mkestner@novell.com>

	* atk/atk-api-2.12.raw: reparsed.
	* gdk/gdk-api-2.12.raw: reparsed.
	* gtk/gtk-api-2.12.raw: reparsed.
	* parser/gapi2xml.pl: fixes for signal and vm order needed for
	proper interface struct layout. [Fixes #386802]

2008-05-07  Stephane Delcroix  <sdelcroix@novell.com>

	* gtk/Object.custom: swap the event removing and destroy calls.

2008-05-07  Andres G. Aragoneses  <aaragoneses@novell.com>

	* atk/Object.custom, atk/glue/object.c: Remove unneeded
	return types (I don't  know why gcc ever let this compile...).

2008-05-06  Mike Kestner  <mkestner@novell.com>

	* glib/Object.cs: revert the connection optimization from r102349.
	It breaks under the current CellRenderer implementation which probably
	can't be reworked compatibly to take advantage of this code.
	* glib/SignalClosure.cs: use IntPtr.ToInt64 instead of (long) since
	the cast apparently has issues on bleeding edge mono.

2008-05-06  Mike Kestner  <mkestner@novell.com>

	* gtk/Gtk.metadata: mark Rc.DefaultFiles accessors as null_term_array.

2008-05-02  Mike Kestner  <mkestner@novell.com>

	* generator/GenerationInfo.cs:  refactor glue writer implementation
	so that GlueEnabled means there is a valid glue writer available.
	Avoids crashes in scenarios where an unwriteable glue path is provided
	to the generator.  Generate a glue function which scans the type
	hierarchy of an object for the most-derived unmanaged ancestor so
	that we can invoke class methods on it, avoiding infinite recursions.
	* generator/Signal.cs: revamp the default handler vm overriding
	mechanism.  When class fields exist which can be directly hooked into,
	we now generate glue to override and chain up to unmanaged base funcs.
	This avoids some strangeness in the g_signal_override_class_closure
	and g_signal_chain_from_overridden reported in #332300 and also lays
	the groundwork for automated generation of non-signal VMs.
	* gtk/Gtk.metadata: block signal glue generation for a few types which
	don't seem to install headers.

2008-05-02  Mike Kestner  <mkestner@novell.com>

	* glib/Object.cs: Don't bother hooking VM into the class field
	if another managed ancestor has already done so.  Add a LogFunc
	printing a stack trace for the GObject log domain if GTK_SHARP_DEBUG
	is set in the environment.  It's a bit noisy to do unconditionally.

2008-05-02  Mike Kestner  <mkestner@novell.com>

	* gtk/Object.custom: some NULL guarding in Dispose and
	Destroy handling.

2008-05-02  Mike Kestner  <mkestner@novell.com>

	* atk/Atk.metadata: hide Global.AddGlobalEventListener.
	* atk/Global.custom: AddGlobalEventListener impl.
	* atk/Util.custom: AddGlobalEventListenerHandler prop.
	[Fixes the rest of #365437]

2008-05-01  Mike Kestner  <mkestner@novell.com>

	* gtk/gtk-api-2.12.raw: regen, removes some private printing API.
	* source/gtk-sharp-2.12-sources.xml: hide some private printing API.

2008-05-01  Mike Kestner  <mkestner@novell.com>

	* generator/InterfaceGen.cs: use CName and mangle it.  ClassFieldName
	is not guaranteed to be set now.
	* generator/Signal.cs: read ClassFieldName from the api xml.  Move
	glue writer lookup inside the block to avoid exceptions for now.

2008-04-30  Mike Kestner  <mkestner@novell.com>

	* generator/InterfaceGen.cs:
	* generator/Signal.cs: use generic signal marshaling instead of
	generating signature specific marshaling callbacks.
	* glib/glue/closure.c: glue for new closure impl.
	* glib/Object.cs: open up a couple hashes internally.
	* glib/Signal.cs: hook in closure based connection and expose
	EmissionHook functionality for atk usage.
	* glib/SignalClosure.cs: new generic signal marshaling mechanism.
	* glib/ToggleRef.cs: null guarding in Target and let Signal remove
	itself from hash when it disposes itself.

2008-04-30  Mike Kestner  <mkestner@novell.com>

	* parser/gapi2xml.pl: put class struct field in the signal elems.
	* atk/atk-api-2.12.raw:
	* gdk/gdk-api-2.12.raw:
	* gtk/gtk-api-2.12.raw:

2008-04-28  Mike Kestner  <mkestner@novell.com>

	* glib/Value.cs : Add GParam support and beef up the Boxed
	type marshaling to support types with New methods via reflection.

2008-04-28  Mike Kestner  <mkestner@novell.com>

	* glib/GType.cs : Add a few missing static fields.

2008-04-24  Mike Kestner  <mkestner@novell.com>

	* gdk/Window.custom (Destroy): take a normal ref for the native
	method to release, and Dispose our toggle ref.  Fixes #382186.

2008-04-24  Andres G. Aragoneses  <aaragoneses@novell.com>

	* glib/Signal.cs: Remove unneeded cast.

2008-04-24  Andres G. Aragoneses  <aaragoneses@novell.com>

	* atk/Object.custom: custom protected method for firing
	the ChildrenChanged signal.
	* glib/Signal.cs: first implementation of a managed
	method for emitting signals.

2008-04-19  Mike Kestner  <mkestner@novell.com>

	* gtk/glue/statusicon.c: fix time parameter usage.  Not even sure
	how that compiled.  I <3 C.

2008-04-17  Mike Kestner  <mkestner@novell.com>

	* atk/glue/misc.c: glue for vms and singleton setup.
	* atk/Misc.custom: add OnThreadsEnter, OnThreadsLeave, and
	SetSingletonInstance members for Bridge implementors.
	[More of #365437]

2008-04-17  Mike Kestner  <mkestner@novell.com>

	* glib/Object.cs: add Harden method to reduce the reflection
	overhead in Gnome.Program.

2008-04-17  Mike Kestner  <mkestner@novell.com>

	* glib/ToggleRef.cs: Add a Harden method to switch to a standard
	ref and just leak it.
	* gtk/Application.cs: revert the QuitPrepare stuff since it didn't
	always work.

2008-04-17  Mike Kestner  <mkestner@novell.com>

	* gtk/TreeModelAdapter.custom:
	* gtk/TreeModelFilter.custom:
	* gtk/TreeModelSort.custom: reworked patch from Christian Hoff to
	throw NotImplementedException for SetValue methods.  Those should
	never have been added to the interface, and it's better to throw
	an exception than have infinite recursion kill the program.
	[Fixes #379542]

2008-04-16  Mike Kestner  <mkestner@novell.com>

	* gtk/Gtk.metadata: hide PrintContext.get_CairoContext.
	* gtk/PrintContext.custom: manual get_cairo_context implementation.
	Mono.Cairo assumes it is wrapping owned references, so we need to
	take a ref out on the returned cairo_t pointer.
	* sample/GtkDemo/DemoPrinting.cs: dispose the CairoContext in
	to be a good citizen and avoid warnings.

2008-04-15  Mike Kestner  <mkestner@novell.com>

	* generator/ReturnValue.cs: use new GLib.Opaque.OwnedCopy for owned
	opaque return values.
	* glib/Opaque.cs: introduce OwnedCopy property to support returning
	owned opaque instances from native to managed callbacks.
	[Fixes #374641]

2008-04-15  Mike Kestner  <mkestner@novell.com>

	* gtk/Gtk.metadata: hide GtkKey_ for manual impl.
	* gtk/Key.cs: manual implementation to manage delegate wrapper
	persistence.  [Fixes #378989]

2008-04-15  Mike Kestner  <mkestner@novell.com>

	* gtk/FileSystemModel.custom: remove dead file.

2008-04-15  Mike Kestner  <mkestner@novell.com>

	* glib/Marshaller.cs: marshal null string arrays as a null IntPtr[].
	[Fixes #378514]

2008-04-14  Mike Kestner  <mkestner@novell.com>

	* gtk/Application.cs: add QuitPrepare event for Gnome.Program usage.

2008-04-08  Marek Habersack  <mhabersack@novell.com>

	* generator/InterfaceGen.cs: added a check for null obj in the
	generated GetObject method.

2008-04-04  Mike Kestner  <mkestner@novell.com>

	* atk/Atk.metadata: add a few more owned refs.

2008-04-04  Mike Kestner  <mkestner@novell.com>

	* glib/Global.cs: renamed from Program.cs.  Program.Name is now
	Global.ProgramName to try to avoid clashes with existing Gnome.Program
	usage.
	* gtk/Application.cs: s/GLib.Program.Name/GLib.Global.ProgramName.

2008-04-04  Mike Kestner  <mkestner@novell.com>

	* atk/Atk.metadata: markup all the Ref* methods to indicate owned refs.
	* generator/ReturnValue.cs: Add owned object ToNative handling.
	* generator/VirtualMethod.cs: Split ToNative call from managed method
	invocation to avoid duplicate calls in null checking scenarios.
	* glib/Object.cs: add OwnedHandle property for use by language binding
	code which needs to pass owned refs to native methods.

2008-04-04  Mike Kestner  <mkestner@novell.com>

	* atk/Object.custom: take out a ref on the return value of
	OnRefChild.  Also add some null guarding and default to IntPtr.Zero
	on exceptions.

2008-04-01  Mike Kestner  <mkestner@novell.com>

	* generator/InterfaceGen.cs: support "generic" interface
	implementations like those exposed by gio.  This is specifically for
	libraries which return GTypes which are not exposed by the library
	but which implement GInterfaces which are exposed by the library.

2008-03-28  Andres G. Aragoneses  <aaragoneses@novell.com>

	* atk/Object.custom: custom properties for overriding class methods.
	* atk/Makefile.am: include Object.custom.
	* atk/glue/object.c: glue to override class methods.
	* atk/glue/Makefile.am: include object.c.

2008-03-27  Andres G. Aragoneses  <aaragoneses@novell.com>

	* glib/Program.cs: Add new static class for utility property, moving
	the code to call g_set_prgname() from gtk/Application.cs to here,
	and changing return value of g_set_program_name from bool to void.
	* gtk/Application.cs: Use Program.Name as a replacement of
	calling the native function g_set_prgname().
	* glib/Makefile.am: add Program.cs.

2008-03-21  Mike Kestner  <mkestner@novell.com>

	* bootstrap-2.12: bump svn version
	* generator/CallbackGen.cs: add dnotify support to invoker.
	Store and respond with incoming UserData params. Start using
	__prefixed private vars to avoid collisions with parameters,
	like the 'result' params in gio.
	* generator/ManagedCallString.cs: use new data/dnotify invoker
	ctors.
	* generator/MethodBody.cs:
	* generator/Parameters.cs: don't link "out" length params to
	preceding strings.
	* generator/VMSignature.cs: don't require UserData to be last
	param, since it can have things like error after it.

2008-03-21  Mike Kestner  <mkestner@novell.com>

	* gtk/Gtk.metadata: s/GtkDestroyNotify/GDestroyNotify in vms too.

2008-03-14  Mike Kestner  <mkestner@novell.com>

	* pango/AttrList.custom: pass copies of the attrs to insert*
	since the list assumes ownership.
	* pango/Makefile.am: add new custom file.
	* pango/Pango.metadata: hide AttrList.Insert* for custom impl.

2008-03-12  Mike Kestner  <mkestner@novell.com>

	* glib/GType.cs: add an Init method for explicit initialization.

2008-03-04  Mike Kestner  <mkestner@novell.com>

	* bootstrap-2.12: update version to 2.12 and tag

2008-02-29  Mike Kestner  <mkestner@novell.com>

	* gdk/Event.cs: add New method for consistency with generated
	boxed types.  Will be used by GLib.Value in the future.

2008-02-29  Mike Kestner  <mkestner@novell.com>

	* generator/ReturnValue.cs: null-term array handling.
	* glib/Marshaller.cs: marshaling methods for null-term arrays.

2008-02-29  Mike Kestner  <mkestner@novell.com>

	* sample/Action.cs: qualify Action usage.
	* sample/GtkDemo/DemoApplicationWindow.cs: qualify Action usage.
	* sample/GtkDemo/DemoUIManager.cs: qualify Action usage.

2008-02-29  Mike Kestner  <mkestner@novell.com>

	* configure.in.in: atk checks and SUBSTs.
	* atk/Util.custom: custom properties for overriding class methods.
	* atk/glue/util.c: glue to override class methods.

2008-02-26  Mike Kestner  <mkestner@novell.com>

	* generator/ByRefGen.cs: fix mismatched alloc/free.

2008-02-22  Mike Kestner  <mkestner@novell.com>

	* gdk/Pixbuf.custom: add destroy notification and pin byte[] to
	avoid GC complications.  Add a couple new convenience ctors as
	well. [Fixes #362951]

2008-02-21  Mike Kestner  <mkestner@novell.com>

	* glib/Source.cs: rework proxy removal to avoid boxing profile.
	* glib/Idle.cs: save src_id in proxy to facilitate removal.
	* glib/Timeout.cs: save src_id in proxy to facilitate removal.
	[Fixes #359561]

2008-02-07  Mike Kestner  <mkestner@novell.com>

	* generator/ReturnValue.cs: null term array marshaling.
	* glib/Marshaller.cs: new marshalers for null-terminated string
	arrays. [Fixes #342113]

2008-02-07  Mike Kestner  <mkestner@novell.com>

	* generator/Parameters.cs: fix off-by-1 in null term array marshaling.

2008-02-06  Mike Kestner  <mkestner@novell.com>

	* gdk/Gdk.metadata: mark ApplyEmbeddedOrientation return as owned.

2008-01-30  Mike Kestner  <mkestner@novell.com>

	* generator/ClassBase.cs: null check ifaces in recursive method
	and signal lookup.

2008-01-29  Mike Kestner  <mkestner@novell.com>

	* generator/ManagedCallString (Setup): use error param name instead
	of hardcoding error.

2008-01-29  Mike Kestner  <mkestner@novell.com>

	* generator/VirtualMethod (CName): mangle the name.
	* generator/SymbolTable.cs (MangleName): add 'remove' and 'foreach'
	mappings.  Should probably just get a C# keyword list and map all of
	them instead of onesy twoseys.
	Fixes for tnymail binding generation.

2008-01-24  Lluis Sanchez Gual  <lluis@novell.com>

	* glade/XML.custom: due to a recent Mono fix (bug #322762),
	  Type.GetFields does not return private fields from base classes
	  anymore, so the BindFields now has to go through the class
	  hierarchy to get all fields.

2008-01-23  Mike Kestner  <mkestner@novell.com>

	* bootstrap-2.12: update version and tag 2.11.91.

2008-01-22  Mike Kestner  <mkestner@novell.com>

	* glib/Object.cs: expose an internal ToggleRef prop.
	* glib/Signal.cs: use ToggleRef for lookups instead of Object. Add
	a Free method and release connections and gchandles.
	* glib/ToggleRef.cs: add signal hash and release signals on free.

2008-01-17  Mike Kestner  <mkestner@novell.com>

	* glib/Object.cs: remove ref from Objects hash prior to releasing it.

2008-01-17  Mike Kestner  <mkestner@novell.com>

	* glib/ToggleRef.cs: check for null reference in IsAlive.

2008-01-17  Mike Kestner  <mkestner@novell.com>

	* generator/Property.cs: missing Parent null check needed for direct
	GLib.Object subclasses.  Suggested by mario@gnome.cl.  [Fixes #321536]

2008-01-17  Mike Kestner  <mkestner@novell.com>

	* sample/Assistant.cs: new Gtk.Assistant sample.
	* sample/Makefile.am: hook in new sample.

2008-01-11  Mike Kestner  <mkestner@novell.com>

	* bootstrap-2.12: update version to 2.11.90.
	* configure.in.in: incorporate build service patch.
	* glib/glib-sharp-2.0.pc.in: add cflags for new api.xml.
	* glib/Makefile.am: install api.xml to correct dir.

2008-01-07  Mike Kestner  <mkestner@novell.com>

	* generator/SymbolTable.cs: map "unsigned long" to LPUGen.

2008-01-02  Mike Kestner  <mkestner@novell.com>

	* gtk/MoveFocusHandler.cs: obsolete event types.
	* gtk/TextView.custom: obsolete move-focus signal.
	* gtk/Window.custom: obsolete move-focus signal.
	Compat fixes for removal of signals from gtk+ API. [Fixes #350770]

2007-12-17  Mike Kestner  <mkestner@novell.com>

	* parser/gapi_pp.pl: parse 'typedef struct\n{' properly.

2007-12-12  Mike Kestner  <mkestner@novell.com>

	* generator/Parameters.cs: fix marshaling for ArrayCount params where
	casting is required, like gsize/size_t count parameters.

2007-12-11  Mike Kestner  <mkestner@novell.com>

	* parser/gapi2xml.pl: fix tightloop in single-line prop declarations.

2007-12-06  Mike Kestner  <mkestner@novell.com>

	* * : update to 2.12 API.

2007-12-04  Mike Kestner  <mkestner@novell.com>

	* generator/SymbolTable.cs: add goffset mapping.

2007-12-04  Mike Kestner  <mkestner@novell.com>

	* configure.in.in: check for default off_t size
	* generator/SymbolTable.cs: map off_t based on configure check.
	* generator/Makefile.am: add OFF_T_FLAGS to compile.

2007-12-03  Mark Probst  <mark.probst@gmail.com>

	* generator/SymbolTable.cs: Added "where" to the list of mangled
	names.

2007-11-29  Mike Kestner  <mkestner@novell.com>

	* parser/gapi_pp.pl: collapse embedded multiline function fields
	to a single line.  [Fixes #344853]

2007-11-29  Mike Kestner  <mkestner@novell.com>

	* generator/MethodBase.cs: move Name stuff from subclasses.
	Check for (G|S)et<UpperCaseLetter> in new Has props.
	* generator/Method.cs:
	* generator/VirtualMethod.cs: refactor out Name stuff. Use
	new Has(G|S)etterName props.
	* pango/Pango.metadata: workaround Has/Hash collision with
	the old broken getter check. [Fixes #344954]

2007-11-29  Mike Kestner  <mkestner@novell.com>

	* glib/Signal.cs: ignore GCHandles with null targets since
	their object has been collected.  [Fixes #344250 again]

2007-11-28  Mike Kestner  <mkestner@novell.com>

	* glib/Object.cs: take ref using method param to avoid
	NREs. [Fixes #344250]

2007-11-16  Mike Kestner  <mkestner@novell.com>

	* glib/Object.cs: use toggle refs for all objects.
	de-obsolete Data hash.  Add internal Signals hash.
	* glib/Signal.cs: switch to weak gchandles.
	* glib/WeakObject.cs: kill.

2007-11-16  Eskil Bylund  <eskil@letterboxes.org>

	* gtk/ListStore.custom:
	* gtk/TreeStore.custom: Implement InsertWithValues.
	* gtk/Gtk.metadata: Deprecate the old generated method.
	[Fixes #325040]

2007-11-12  Mike Kestner  <mkestner@novell.com>

	* sample/TreeModelDemo.cs: lt/gt typo bugfix [Fixes #333653]

2007-11-12  Mike Kestner  <mkestner@novell.com>

	* generator/SymbolTable.cs: remove GCallback mapping.
	* glib/GCallback.cs: kill, bad idea.

2007-11-12  Mike Kestner  <mkestner@novell.com>

	* glib/IOChannel.cs: IOChannel wrapper implementation.
	* glib/Makefile.am: build new files.
	* glib/Marshaller.cs: new string array marshaling methods.
	* glib/Spawn.cs: g_spawn* wrapper implementation.
	* sample/SpawnTests.cs: tests for the new GLib.Process class
	and a cursory exercise of IOChannel for SpawnAsyncWithPipes.

2007-11-09  Mike Kestner  <mkestner@novell.com>

	* generator/Parameters.cs: support for null_term_array attribute.

2007-11-08  Mike Kestner  <mkestner@novell.com>

	* glib/Marshaller.cs: new null-terminated string[] marshaler from
	Mono.Unix with adaptations by Michael Hutchinson.

2007-11-02  Mike Kestner  <mkestner@novell.com>

	* glib/SList.cs:
	* glib/List.cs: add Array dup of object[] ctor since we
	are passing typed arrays from generated code.

2007-11-02  Mike Kestner  <mkestner@novell.com>

	* generator/Method.cs: need to use on the Base method name to
	lookup complements and determine if the method is a getter or setter
	when an explicit interface method name is used.

2007-10-24  Mike Kestner  <mkestner@novell.com>

	* generator/SymbolTable.cs: mappings for GCallback and GSourceFunc.
	* glib/GCallback.cs: GCallback declaration.
	* glib/Source.cs: GSourceFunc declaration.

2007-10-24  Mike Kestner  <mkestner@novell.com>

	* generator/VirtualMethod.cs: clean up compiler warning and duplicate
	call.

2007-10-24  Mike Kestner  <mkestner@novell.com>

	* generator/InterfaceGen.cs: generate an Implementor prop on the
	adapters to obtain the underlying object.

2007-10-22  Mike Kestner  <mkestner@novell.com>

	* configure.in.in: add a win64 check and a compiler define for
	handling win64 32bit longs.
	* generator/LPGen.cs: use int to marshal on win64.
	* generator/LPUGen.cs: use uint to marshal on win64.
	* generator/SymbolTable.cs: remove fixme.

2007-10-16  Mike Kestner  <mkestner@novell.com>

	* gtk/CellRenderer.custom : marshal GTypes as IntPtr like the
	generator does.
	* gtk/Container.custom : ditto.  [Fixes comment #8 on 327058]

2007-10-15  Mike Kestner  <mkestner@novell.com>

	* generator/InterfaceGen.cs : gen Handle props as overrides.
	* glib/GInterfaceAdapter.cs : add abstract Handle prop.
	* glib/Value.cs: add ctor (GInterfaceAdapter).

2007-10-04  Peter Johanson  <peter@peterjohanson.com>

	* gtk/Gtk.metadata: Make the public fields on Gtk.Rcstyle writeable.

2007-10-04  Mike Kestner  <mkestner@novell.com>

	* glib/DestroyNotify.cs: add CDeclCallback to the delegate.
	* glib/Signal.cs: use DestroyHelper.
	* gdk/Input.custom: use DestroyHelper.
	* gtk/Quit.custom: remove new on DestroyHelper handler.
	* gtk/TreeModelFilter.custom: remove new on DestroyHelper handler.
	* gtk/TreeViewColumn.custom: remove new on DestroyHelper handler.

2007-10-02  Mike Kestner  <mkestner@novell.com>

	* generator/*.cs: implement the interfaces on the adapters too.
	Generate an Implementor interface for users which exposes the
	methods to implement.  Register based on the Implementor sub-iface.
	* gtk/*Adapter.custom: custom implementations for the custom
	interface members.
	* gtk/TreeIter.custom: make UserData public.
	* sample/TreeModelDemo.cs: sample for implementing a TreeModel
	interface.

2007-10-01  Mike Kestner  <mkestner@novell.com>

	* generator/OpaqueGen.cs: disable Copy generation fix until I can
	figure out why it breaks DnD.

2007-10-01  Mike Kestner  <mkestner@novell.com>

	* gtk/TreePath.custom: use Marshal.Copy to copy indices array.

2007-10-01  Mike Kestner  <mkestner@novell.com>

	* glib/Object.cs: add ctor (), which invokes CreateNativeObject
	to allow direct subclasses that do all the registration automatically.

2007-09-21  Mike Kestner  <mkestner@novell.com>

	* generator/*.cs: add DefaultValue prop for obtaining a
	sane value when we need to return a value but something bad has
	happened such that we can't get a real value.  Needed for iface
	signal marshaling, among other places we're partially working
	around it now.

2007-09-19  Mike Kestner  <mkestner@novell.com>

	* generator/InterfaceGen.cs: remove some dead code from a previous
	implementation attempt.

2007-09-19  Mike Kestner  <mkestner@novell.com>

	* generator/VirtualMethod.cs: refactor delegate generation into
	GenerateCallback and add [CDeclCallback] which was missing.
	* generator/InterfaceGen.cs: kill GenerateDelegates.  They are now
	generated by VirtualMethod.GenerateCallback.

2007-09-14  Mike Kestner  <mkestner@novell.com>

	* generator/CallbackGen.cs (GenInvoker): null check the sig field
	and set it up.  This can happen when generating the marshaling types
	from dependent libraries instead of via the Generate method.

2007-09-11  Mike Kestner  <mkestner@novell.com>

	* gtk/Gtk.metadata: virtual_method rules for GInterface generation.
	* generator/ReturnValue.cs (ToNative): new method for the virtual
	method generation.
	* generator/Parameters.cs (FromNative): null guarding.
	* generator/ManagedCallString.cs: rework for interface method
	generation including callback and error param support.
	* generator/CallbackGen.cs: Invoker support. new class that deals
	with persistence of native and wrapper delegates in native to managed
	callback method signatures.
	* generator/VirtualMethod.cs: support for generation of interface
	methods, and all the funky parameters that come with that.
	* generator/InterfaceGen.cs: Fill out the adapter implementation.
	* generator/MethodBody.cs: Initialize overload. Extend ThrowsException
	to support GError outside the last parameter slot.
	* glib/GInterfaceAttribute.cs: New attribute to mark interfaces and
	obtain adapter type.
	* glib/Object.cs (AddInterfaces): interface registration method.
	* glib/GInterfaceAdapter.cs: New abstract class for interface
	adapter generation.
	* glib/Makefile.am: add new files.

2007-09-11  Mike Kestner  <mkestner@novell.com>

 	* gtk/Object.custom (Destroy): add a null check to avoid
	Gtk criticals.  The destroy case seems to be problematic with
	a bunch of existing code, so this turns it into a noop.

2007-09-06  Mike Kestner  <mkestner@novell.com>

 	* AssemblyInfo.cs.in : add IgnoreClassInitializers attr to all.
 	* generator/ObjectGen.cs : add custom-attr generation for objects.
 	* glib/ClassInitializerAttribute.cs : obsolete
 	* glib/IgnoreClassInitializersAttribute.cs : new assembly attr
 	to avoid a blind GetMethods reflection.
 	* glib/Makefile.am : add files
 	* glib/TypeInitializerAttribute.cs : new attr to specify init
 	method to be run at type registration.
 	* gtk/Widget.custom : remove the ClassInitializerAttr.
 	* gtk/Gtk.metadata : add a custom-attr node to GtkWidget.
 	* sample/Subclass.cs : use the IgnoreClassInitializers attr.

2007-08-14  Mike Kestner  <mkestner@novell.com>

	* gtk/Gtk.metadata : kill a few "new" warnings in FileChooser
	implementors.

2007-08-14  Mike Kestner  <mkestner@novell.com>

	* glib/ListBase.cs : add AllocNativeElement method and an
	Append (object) method that uses it.
	* glib/List.cs : add object[] ctor using new append method.
	* glib/SList.cs : add object[] ctor using new append method.
	These are needed to return G(S)List* values as virtual method
	return values.

2007-08-13  Mike Kestner  <mkestner@novell.com>

	* generator/MethodBody.cs : finally kill the s/out ref/ref/ hack.
	* generator/Parameter.cs : ditto.

2007-08-13  Mike Kestner  <mkestner@novell.com>

	* generator/ByRefGen.cs : implement IManualMarshaler.
	* generator/Parameter.cs : use StructParameter for ByRefGen.

2007-08-13  Mike Kestner  <mkestner@novell.com>

	* generator/*.cs : switch to IntPtr marshaling for struct types
	in the managed to native direction.
	* gtk/*.custom : adjust to new gapi struct pinvoke sigs.

2007-08-01  Mike Kestner  <mkestner@novell.com>

	* generator/CallbackGen.cs : use Parameters.NativeCallbackSignature.
	* generator/Ctor.cs : use Parameters.ImportSignature prop.
	* generator/ImportSignature.cs : kill
	* generator/MethodBase.cs : kill ImportSignature prop.
	* generator/Method.cs : use Parameters.ImportSignature prop.
	* generator/NativeCallbackSignature.cs : kill
	* generator/Parameters.cs : add ImportSig and NativeCallbackSig.
	* generator/Signal.cs : use Parameters.NativeCallbackSignature prop.
	* generator/VirtualMethod.cs : use Parameters.ImportSignature prop.

2007-07-31  Mike Kestner  <mkestner@novell.com>

	* generator/Ctor.cs : Validate before generating and adjust protection
	on a couple private methods.
	* generator/Parameters.cs : remove unused var to kill warning.

2007-07-30  Mike Kestner  <mkestner@novell.com>

	* generator/MethodBody.cs : refactor finish logic into parameter.
	* generator/Parameters.cs : refactor finish logic into parameter and
	fix some failures to marshal ref params post call.

2007-07-27  Mike Kestner  <mkestner@novell.com>

	* generator/OpaqueGen.cs : only generate Copy override for methods
	with no parameters.  Fixes a gnome-sharp build problem.

2007-07-26  Mike Kestner  <mkestner@novell.com>

	* parser/gapi2xml.pl : beef up error message for signal vm parse.
	[Fixes #82149]

2007-07-24  Mike Kestner  <mkestner@novell.com>

	* bootstrap-2.10 : bump version and tag 2.10.2.

2007-07-20  Mike Kestner  <mkestner@novell.com>

	* gtk/Calendar.custom : workaround invalid states in widget when
	raising month_changed signals.  [Fixes #78524]

2007-07-20  Mike Kestner  <mkestner@novell.com>

	* gtk/gtk-api-2.10.raw : refresh.
	* parser/gapi_pp.pl : combine lines that end in '\' before sending
	them through the pattern matching.  [Fixes #79214]

2007-07-19  Mike Kestner  <mkestner@novell.com>

	* generator/OpaqueGen.cs : override the new Copy vm if a Copy method
	exists for the type.
	* glib/Opaque.cs : add a virtual method to allow subclasses with
	Copy methods to override.  Use the method in GetOpaque for unowned
	instantiations to try to obtain an owned instance. [Fixes #82037]

2007-07-18  Mike Kestner  <mkestner@novell.com>

	* gdk/EventExpose.cs : return a pointer from the get_area glue
	pinvoke to avoid VS crashes on win32.
	* gdk/glue/event.c : return a GdkRectangle* to avoid stack imbalance
	on VS debugger.  [Fixes #82098]

2007-07-17  Mike Kestner  <mkestner@novell.com>

	* gtk/Gtk.metadata : map TreeModelFilter ctor param to prop to
	avoid subclass ctor exception. [Fixes #82115]

2007-07-17  Mike Kestner  <mkestner@novell.com>

	* generator/CallbackGen.cs : make GError** signatures fatal to
	avoid compilation problem in gmime-sharp.

2007-07-12  Mike Kestner  <mkestner@novell.com>

	* generator/StructBase.cs : use typeof to pass type to PtrToStruct
	to avoid an instantiation and method call.  Duh.

2007-07-10  Mike Kestner  <mkestner@novell.com>

	* generator/ImportSignature.cs : use Parameter.NativeSignature
	prop and refactor out some GError handling.
	* generator/MethodBody.cs : Refactor logic into Parameters.
	* generator/Parameters.cs : add ArrayParameter, ArrayCountPair, and
	ErrorParameter subclasses to refactor spaghetti code in MethodBody.

2007-07-03  Mike Kestner  <mkestner@novell.com>

	* bootstrap-generic : use automake --foreign to make automake-1.10
	happy with gnu make function usage.

2007-06-25  Mike Kestner  <mkestner@novell.com>

	* gtk/StatusIcon.custom : present_icon is in the glue lib.

2007-06-25  Ankit Jain  <jankit@novell.com>

	* gdk/Gdk.metadata : hide Property.Get for manual impl.
	* gdk/Property.custom : manually marshal the data param in Get.

2007-06-19  Mike Kestner  <mkestner@novell.com>

	* gdk/Property.custom : obsolete compat overload for Change().
	* gdk/Gdk.metadata : array attr for Property.Change ().
	* gdk/Makefile.am : add custom file.

2007-06-18  Mike Kestner  <mkestner@novell.com>

	* bootstrap-2.10 : bump version and tag.

2007-06-05  Mike Kestner  <mkestner@novell.com>

	* glib/ManagedValue.cs (ReleaseWrapper): new method.
	* glib/Value.cs : release the ManagedValue wrapper to avoid leaks.
	[Fixes #81799]

2007-05-03  Wade Berrier  <wberrier@novell.com>

	* generator/gapi2-codegen.in:
	* parser/gapi2-fixup.in:
	* parser/gapi2-parser.in:
	Don't use 'which' anymore, as it doesn't work in all caes (ie: when symlinks are
	in the way)

2007-04-28  Mike Kestner  <mkestner@novell.com>

	* generator/NativeCallbackSignature.cs :
	* generator/Signal.cs : don't use ref IntPtr in native callback sigs
	for struct parameters.  Use IntPtr and StructureToPtr.  Fixes the
	layout issues in MD introduced by the structure marshaling rework.

2007-04-24  Aaron Bockover  <abockover@novell.com>

	* gtk/Widget.custom (StyleGetProperty): return null if
	gtksharp_widget_style_get_property returns FALSE (property
	doesn't exist) [Fixes #81445]

	* gtk/glue/widget.c (gtksharp_widget_style_get_property): check
	return of gtk_widget_class_find_style_property for NULL; function now
	returns TRUE if spec is not NULL, FALSE otherwise
2008-10-16 22:09:23 +00:00
..
9term Add DESTDIR support. 2008-06-12 02:14:13 +00:00
acidlaunch Add DESTDIR support. 2008-06-12 02:14:13 +00:00
alacarte Add DESTDIR support. 2008-06-12 02:14:13 +00:00
antiright Add DESTDIR support. 2008-06-12 02:14:13 +00:00
appres Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
asnap Add DESTDIR support. 2008-06-12 02:14:13 +00:00
aterm reportedly not MAKE_JOBS_SAFE 2008-09-22 19:30:52 +00:00
bbapm Update HOMEPAGE and MASTER_SITES. 2008-01-15 12:36:41 +00:00
beforelight Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
bigreqsproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
bitmap Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
blt
bwidget Add DESTDIR support. 2008-06-20 01:09:05 +00:00
compositeproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
damageproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
desklaunch
deskmenu
devilspie Update to 0.22: 2007-11-25 23:20:50 +00:00
dfm
dmenu Update to dmenu 3.6. Bugfixes/performance/functionality improvements. 2008-04-04 20:28:05 +00:00
docker Import docker-1.5 as x11/docker. 2008-08-13 11:42:55 +00:00
dtx11session
dxpc
ede
editres Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
efltk Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
egtk Don't try to modify pkgsrc directory. 2008-10-02 18:48:31 +00:00
eterm Add DESTDIR support. 2008-06-12 02:14:13 +00:00
evieext Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
fast-user-switch-applet Recursive PKGREVISION/ABI-depends bump for db4 4.6->4.7 update (shlib 2008-09-06 20:54:31 +00:00
fbdesk Update fbdesk to 1.4.1. 2008-05-10 16:19:16 +00:00
filerunner
fixesproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
fltk Remove unresolvable hosts from MASTER_SITES. 2008-08-23 07:46:59 +00:00
fltk2 Import build rules for fltk2. This is currently static only. 2008-05-25 15:29:19 +00:00
fontcacheproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
fontsproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
fox Add DESTDIR support. 2008-06-12 02:14:13 +00:00
fspanel
ftmenu Add comments for stupid configure script. 2008-06-09 15:47:24 +00:00
fvwm-wharf Reset maintainer on his request. 2008-01-19 09:16:17 +00:00
gdm update to 2.20.7 2008-07-16 20:13:29 +00:00
ggiterm Add DESTDIR support. 2008-06-20 01:09:05 +00:00
glproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
gnome-applets update to 2.24.0.1 2008-10-16 15:28:13 +00:00
gnome-control-center update to 2.24.0.1 2008-10-16 15:24:01 +00:00
gnome-desktop update to 2.24.0 2008-10-16 15:21:39 +00:00
gnome-desktop-sharp Recursive PKGREVISION/ABI-depends bump for db4 4.6->4.7 update (shlib 2008-09-06 20:54:31 +00:00
gnome-mag Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gnome-panel update to 2.24.0 2008-10-16 15:25:58 +00:00
gnome-screensaver Fix compile on NetBSD 2008-09-16 02:56:08 +00:00
gnome-session update to 2.24.0 2008-10-16 18:14:13 +00:00
gnome-sharp Recursive PKGREVISION/ABI-depends bump for db4 4.6->4.7 update (shlib 2008-09-06 20:54:31 +00:00
gnome-terminal Update to gnome-terminal-2.22.3. Added patch-ab, which fixes 2008-09-05 21:08:32 +00:00
gnome-themes Catch up with PLIST changes due to dependency updates and bump revision. 2008-08-19 13:40:10 +00:00
gnome-themes-extras PLIST changes resulting from newer dependencies. PKGREVISION++ 2008-08-20 23:46:43 +00:00
gnopernicus Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gnustep-back Changes 0.12.1: 2008-05-25 08:27:03 +00:00
gnustep-gui Changes 0.12.1: 2008-05-25 08:28:01 +00:00
gnustep-preferences Catch up with gnustep-base changes. Bump revision. 2008-06-21 22:46:36 +00:00
grandr_applet Recursive PKGREVISION/ABI-depends bump for db4 4.6->4.7 update (shlib 2008-09-06 20:54:31 +00:00
gromit
gst-plugins0.10-x11 Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gtk Remove Ex-MASTER_SITE. From Zafer Aydogan. 2007-12-02 11:41:48 +00:00
gtk+extra Mark as destdir ready. 2008-07-14 12:55:56 +00:00
gtk-engines Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gtk-sharp Update to 2.12.4: 2008-10-16 22:09:23 +00:00
gtk2 update to 2.14.3, mostly from Juan RP 2008-10-16 11:10:06 +00:00
gtk2+extra Mark as destdir ready. 2008-07-14 12:55:56 +00:00
gtk2-chtheme Mark as destdir ready. 2008-07-14 12:55:56 +00:00
gtk2-engines update to 2.14.3 2008-07-15 10:40:02 +00:00
gtk2-engines-bluecurve Mark as destdir ready. 2008-07-14 12:55:56 +00:00
gtk2-theme-switch
gtkglarea Added support for installation to DESTDIR. 2007-11-07 09:56:05 +00:00
gtkmm Changes 2.14.1: 2008-10-16 21:34:07 +00:00
gtksourceview Drop maintainership 2008-04-30 13:38:14 +00:00
gtksourceview-sharp2 Recursive PKGREVISION/ABI-depends bump for db4 4.6->4.7 update (shlib 2008-09-06 20:54:31 +00:00
gtksourceview2 update to 2.4.0 2008-10-16 14:03:27 +00:00
gtkstep
gtkterm2 Mark as destdir ready. 2008-07-14 12:55:56 +00:00
hanterm Mark as destdir ready. 2008-07-14 12:55:56 +00:00
hot-babe Mark as destdir ready. 2008-07-14 12:55:56 +00:00
hsetroot Mark as destdir ready. 2008-07-14 12:55:56 +00:00
iceauth Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
ico Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
imwheel Update HOMEPAGE and MASTER_SITES to sourceforge. 2008-01-15 12:42:52 +00:00
inputproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
kbproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
kde3-i18n-af Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-ar Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-az Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-bg Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-bn Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-br Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-bs Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-ca Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-cs Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-cy Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-da Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-de Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-el Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-en_GB Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-eo Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-es Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-et Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-eu Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-fa Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-fi Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-fr Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-fy Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-ga Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-gl Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-he Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-hi Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-hr Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-hu Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-is Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-it Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-ja Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-kk Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-km Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-ko Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-lt Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-lv Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-mk Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-mn Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-ms Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-nb Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-nds Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-nl Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-nn Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-pa Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-pl Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-pt Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-pt_BR Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-ro Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-ru Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-rw Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-se Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-sk Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-sl Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-sr Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-sr_Latn Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-ss Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-sv Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-ta Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-tg Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-tr Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-uk Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-uz Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-vi Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-zh_CN Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kde3-i18n-zh_TW Update to KDE 3.5.10 2008-08-27 12:37:38 +00:00
kdebase3 Update to KDE 3.5.10 2008-08-27 11:59:13 +00:00
kdebindings-ruby Update to KDE 3.5.10 2008-08-27 11:59:13 +00:00
kdelibdocs3 Update to KDE 3.5.10 2008-08-27 11:59:13 +00:00
kdelibs3 Update to KDE 3.5.10 2008-08-27 11:59:13 +00:00
keylaunch
kkbswitch Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
kmessage Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
kterm Mark as destdir ready. 2008-07-14 12:55:56 +00:00
lablgtk Mark as destdir ready. 2008-07-14 12:55:56 +00:00
lablgtk1
labltk Fix PLIST. Bump revision. 2007-12-27 16:24:21 +00:00
lbxproxy Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
lesstif Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libdrm Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
libFS Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
libgnomekbd update to 2.24.0 2008-10-16 18:14:13 +00:00
libICE Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
liblbxutil Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
liboldXrandr Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
libSM Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
libX11 Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
libXau Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
libXaw Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
libXcomposite Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
libXcursor Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
libXdamage Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
libXdmcp Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
libXevie Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
libXext Fix problems in previous commit which I missed because I didn't use the 2008-10-06 18:59:33 +00:00
libxfce4gui Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libxfce4mcs Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libxfce4util Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libXfixes Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
libXfont Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
libXft Reset Bump BUILDLINK_ABI_DEPENDS. 2008-07-15 13:24:35 +00:00
libXi Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
libXinerama Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
libxkbfile Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
libxkbui Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
libxklavier Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libXmu Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
libXp Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
libXpm Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
libXprintUtil Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
libXrandr Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
libXrender Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
libXres Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
libXScrnSaver Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
libXt Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
libXTrap Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
libXtst Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
libXv Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
libXvMC Use mk/x11.buildlink3.mk when X11 isn't modular. Allows use of native libXvMC. 2008-07-22 03:21:38 +00:00
libXxf86dga Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
libXxf86misc Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
libXxf86vm Update to version 1.0.2. In addition to incorporating patch-aa, there's 2008-07-13 23:18:19 +00:00
libzvt
listres Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
luit Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
matchbox-common Mark as destdir ready. 2008-07-14 12:55:56 +00:00
matchbox-desktop Mark as destdir ready. 2008-07-14 12:55:56 +00:00
matchbox-nest Mark as destdir ready. 2008-07-14 12:55:56 +00:00
matchbox-panel Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
matchbox-panel-manager Mark as destdir ready. 2008-07-14 12:55:56 +00:00
matchbox-themes-extra Mark as destdir ready. 2008-07-14 12:55:56 +00:00
mlterm Mark as destdir ready. 2008-07-14 12:55:56 +00:00
modeline
modular-xorg-server Add one small patch and drop the autoconf dependency. 2008-09-23 11:23:56 +00:00
mowitz Add DESTDIR support. 2008-06-12 02:14:13 +00:00
mrxvt Bomb if $DISPLAY is unset. Prompted by an advisory for rxvt. 2008-03-31 20:28:28 +00:00
multi-aterm Mark as destdir ready. 2008-07-14 12:55:56 +00:00
mxterm Mark as destdir ready. 2008-07-14 12:55:56 +00:00
neXtaw Fixed pkglint warnings. 2008-01-04 01:25:51 +00:00
nucleo ffmpeg-devel -> ffmpeg 2008-09-10 16:41:55 +00:00
numlockx
ocaml-graphics Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
oneko Add DESTDIR support. 2008-06-20 01:09:05 +00:00
openbsd-input-ws Import openbsd-input-ws-1.2 from pkgsrc-wip. This driver should work 2008-09-08 05:31:01 +00:00
openmotif Needs pkg-config 2008-07-22 20:44:04 +00:00
p5-gtk Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-gtk2 MAKE_JOBS_SAFE=no 2008-10-12 18:55:15 +00:00
p5-Gtk2-Ex-FormFactory Set PKG_DESTDIR_SUPPORT=user-destdir & USE_LANGUAGES=# empty 2008-06-01 19:51:26 +00:00
p5-Tk The package supports installation to DESTDIR. 2008-04-06 19:58:40 +00:00
p5-X11-Protocol Add DESTDIR support. 2008-06-12 02:14:13 +00:00
paragui Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pixman Update to pixman-0.12.0 from 0.11.10. 2008-10-15 00:56:45 +00:00
printproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
py-gnome2 update to 2.22.3 2008-10-16 18:00:16 +00:00
py-gnome2-desktop update to 2.24.0 2008-10-16 18:01:38 +00:00
py-gnome2-extras Bump PKGREVISION for gtkspell API bump. 2008-05-30 12:29:00 +00:00
py-gtk2 update to 2.13.0 2008-10-16 14:13:31 +00:00
py-Pmw Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-qt3-base Update to 3.17.4: 2008-10-08 14:23:24 +00:00
py-qt3-modules Update to 3.17.4: 2008-10-08 14:23:24 +00:00
py-qt3-qscintilla Update to 3.17.4: 2008-10-08 14:23:24 +00:00
py-sip Import py-sip, successor of py-qt3-sip. 2008-10-08 14:10:45 +00:00
py-Tk Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-wxWidgets Switch to x11/wxGTK26{,-contrib}. 2008-09-22 20:21:03 +00:00
py-Xlib Add DESTDIR support. 2008-06-12 02:14:13 +00:00
qt3 Add DESTDIR support. 2008-06-20 01:09:05 +00:00
qt3-docs
qt3-libs Fix qmake.conf to handle shared libraries correctly. 2008-10-08 09:35:27 +00:00
qt3-mysql Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
qt3-pgsql Make PostgreSQL 8.2 the default version. Bump all packages using it. 2008-03-13 17:38:48 +00:00
qt3-qscintilla
qt3-tools Fix qmake.conf to handle shared libraries correctly. 2008-10-08 09:35:27 +00:00
qt4 Update qt4 to 4.4.0 2008-07-24 12:55:20 +00:00
qt4-docs Add DESTDIR support. 2008-02-04 18:07:53 +00:00
qt4-libs Fix qmake.conf to handle shared libraries correctly. 2008-10-08 09:35:49 +00:00
qt4-pgsql Make PostgreSQL 8.2 the default version. Bump all packages using it. 2008-03-13 17:38:48 +00:00
qt4-qdbus Update qt4 to 4.4.0 2008-07-24 12:55:20 +00:00
qt4-sqlite3
qt4-tiff add a plugin for TIFF support in qt4, this time using the common libtiff 2007-11-22 18:54:47 +00:00
qt4-tools Fix qmake.conf to handle shared libraries correctly. 2008-10-08 09:35:49 +00:00
qwt Replaced the deprecated INSTALLATION_DIRS_FROM_PLIST with AUTO_MKDIRS, 2008-02-28 11:58:47 +00:00
randrproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
ratmen
recordproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
rendercheck Import rendercheck-1.3. Useful to see if your video driver 2008-05-27 04:53:16 +00:00
renderproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
rep-gtk2 Add DESTDIR support. 2008-06-20 01:09:05 +00:00
resourceproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
rgb Update to version 1.0.3. Changes since 1.0.1: 2008-06-08 14:35:42 +00:00
rox-session Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
rox-wallpaper Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
ruby-gnome2-gnome Update ruby-gnome2 to 0.17.0 release. 2008-09-17 00:21:48 +00:00
ruby-gnome2-gtk Update ruby-gnome2 to 0.17.0 release. 2008-09-17 00:21:48 +00:00
ruby-gnome2-gtksourceview Update ruby-gnome2 to 0.17.0 release. 2008-09-17 00:21:48 +00:00
ruby-gnome2-panelapplet Update ruby-gnome2 to 0.17.0 release. 2008-09-17 00:21:48 +00:00
ruby-gnome2-vte Update ruby-gnome2 to 0.17.0 release. 2008-09-17 00:21:48 +00:00
ruby-gtk - Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 15:04:36 +00:00
ruby-tk Update ruby-curses package to 1.8.7.72. 2008-08-11 06:59:40 +00:00
rxvt Fix for default display choosing vulnerability (CVE-2008-1142). 2008-04-03 22:33:00 +00:00
rxvt-unicode Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
scrnsaverproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
sessreg Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
setxkbmap Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
slock New package. 2008-02-11 22:48:17 +00:00
speyes Add DESTDIR support. 2008-06-20 01:09:05 +00:00
ssystem Reset maintainer on his request. 2007-12-12 20:42:28 +00:00
stalonetray Enable debug option 2008-04-25 15:04:32 +00:00
startup-notification
swing Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
tile
tk Tk uses X event numbers to index an "event" array, as well as adding a few of 2008-08-06 04:09:12 +00:00
tk-BWidget
tk-Tix
tk83 Fix build failure on -current arising from invalid shell syntax. 2008-07-14 00:43:34 +00:00
tkinfo
tkman
transset-df
trapproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
tzosdclock
unclutter Add DESTDIR support. 2008-06-20 01:09:05 +00:00
videoproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
vte update to 0.17.4 2008-10-16 13:35:12 +00:00
wdm Patch files have to start with a CVS Id. 2008-01-05 20:52:17 +00:00
wmavgload
wmfire
wmfstatus
wmweather Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
worker Add DESTDIR support. 2008-06-20 01:09:05 +00:00
wterm Don't try to use the X11 display ":0" if the display not defined because 2008-05-22 12:30:44 +00:00
wxGTK24 Revert old state after mistyped cvs import. 2008-09-22 19:54:27 +00:00
wxGTK26 Update references for x11/wxGTK -> x11/wxGTK26 move. 2008-09-22 19:58:52 +00:00
wxGTK26-contrib Update references for x11/wxGTK -> x11/wxGTK26 move. 2008-09-22 19:58:52 +00:00
wxGTK28 Import wxGTK 2.8.8. 2008-09-12 11:09:49 +00:00
wxGTK28-contrib Import wxGTK contrib for version 2.8.8. 2008-09-12 11:15:38 +00:00
wxhaskell Switch to x11/wxGTK26{,-contrib}. 2008-09-22 20:21:03 +00:00
wxWindows-docs
x2x Add DESTDIR support. 2008-06-20 01:09:05 +00:00
x11perf Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
x11vnc Update x11vnc to 0.9.4. 2008-09-18 00:11:30 +00:00
x3270 Add DESTDIR support. 2008-06-20 01:09:05 +00:00
xaniroc Add DESTDIR support. 2008-06-20 01:09:05 +00:00
XaoS Update to Xaos 3.3. 2008-05-25 19:23:02 +00:00
xauth Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xautolock Add DESTDIR support. 2008-06-20 01:09:05 +00:00
Xaw-Xpm Add DESTDIR support. 2008-06-12 02:14:13 +00:00
Xaw3d Add patch and bump revision. 2007-12-27 14:14:24 +00:00
xbacklight Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
Xbae Add DESTDIR support. 2008-06-12 02:14:13 +00:00
xbanner Reset maintainer on his request. 2008-01-19 09:16:17 +00:00
xbindkeys Add DESTDIR support. 2008-06-20 01:09:05 +00:00
xbindkeys-tk
xbitmaps Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xcalc Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xcb Add DESTDIR support. 2008-06-20 01:09:05 +00:00
xclip Update xclip to 0.11. 2008-08-19 13:33:09 +00:00
xclock Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xcmiscproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
xcolors Add DESTDIR support. 2008-06-20 01:09:05 +00:00
xcolorsel Add DESTDIR support. 2008-06-20 01:09:05 +00:00
xcompmgr Enable damage notification by default, as I've been using xcompmgr 2008-08-09 10:12:06 +00:00
Xcomposite Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
xconsole Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xcruise
xcursor Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
xcursorgen Add DESTDIR support. 2008-06-20 01:09:05 +00:00
xdaemon Add DESTDIR support. 2008-06-20 01:09:05 +00:00
xdaemon2 Add DESTDIR support. 2008-06-20 01:09:05 +00:00
xdesktopwaves
xdialog Update to 2.3.1 2008-08-29 16:43:58 +00:00
xdm copy a lightly modified fix for starting xdm on ttyE4 from gdm 2008-06-17 00:42:14 +00:00
xdm3d Reset maintainer on his request. 2008-01-19 09:16:17 +00:00
xdpyinfo Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xearth Add DESTDIR support. 2008-06-20 01:09:05 +00:00
xephem update to 3.7.3 2008-05-30 17:04:04 +00:00
xev Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xextproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
xeyes Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xf86-input-keyboard PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-input-mouse PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-input-vmmouse PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-input-void PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-apm PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-ark PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-ast PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-ati This patch ensures the driver won't use the DRM's MODESET_CTL 2008-09-18 20:31:25 +00:00
xf86-video-chips PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-cirrus PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-cyrix PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-glint PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-i128 PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-i740 PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-imstt PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-intel Update to xf86-video-intel-2.4.2. 2008-09-19 14:56:00 +00:00
xf86-video-mach64 PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-mga PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-neomagic PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-nsc PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-nv PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-nvxbox PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-r128 PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-radeonhd PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-rendition PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-s3 PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-s3virge PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-savage PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-siliconmotion PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-sis PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-tdfx PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-tga PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-trident PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-tseng PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-vesa PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-vga PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-via PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-vmware PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86-video-wsfb PKGREVISION bump due to update of x11/modular-xorg-server. 2008-09-18 20:57:50 +00:00
xf86bigfontproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
xf86dgaproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
xf86driproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
xf86miscproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
xf86vidmodeproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
xfce3 Add DESTDIR support. 2008-06-20 01:09:05 +00:00
xfce4-clipman-plugin Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xfce4-desktop Fix build with newer GCC. From Drochner via wiz. 2008-09-30 14:01:37 +00:00
xfce4-exo Remove -msse CFLAGS settings for certain NetBSD platforms. 2008-07-18 14:20:56 +00:00
xfce4-eyes-plugin Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xfce4-gtk2-engine Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xfce4-mcs-manager Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xfce4-mcs-plugins Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xfce4-notes-plugin Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xfce4-panel fix another XPropertyChange() vs. LP64 issue 2008-03-25 16:13:52 +00:00
xfce4-places-plugin Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xfce4-screenshooter-plugin Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xfce4-session Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xfce4-terminal Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xfce4-utils Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xfd Add a missing application default file to PLIST. 2008-06-08 05:22:57 +00:00
xfishtank Mark as destdir ready. 2008-07-14 12:55:56 +00:00
Xfixes Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
xflame Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xfontsel Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xforms Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xfstt Set proper dependencies. This now builds for xorg as well as xfree. 2008-08-31 07:35:09 +00:00
xgamma Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xgas Fix several plists that use imake after some modifications in the imake 2008-05-11 14:29:23 +00:00
xglobe Added a patch for sunpro. 2008-01-13 22:53:10 +00:00
xgrk
xhangglider
xhost Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xineramaproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
xinit configure startx to point to correct pkgsrc-provided xinit. 2008-06-23 14:19:54 +00:00
xinput Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xjman
xkbcomp Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xkbd Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xkbdata Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xkbset
xkeyboard-config Update to xkeyboard-config-1.4: 2008-10-15 08:52:42 +00:00
xkeycaps Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xkill Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xless
xload Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xlockmore Remove "MASTER_SITE_XCONTRIB" from master site list. The last "xlockmore" 2008-10-07 10:46:50 +00:00
xlockmore-lite
xlogo Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xlogout Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xlsclients Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xlt Add missing entries to PLIST, and install the html docs in the right place. 2008-08-30 20:51:07 +00:00
xlupe Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xmag Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xman Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xmascot Update XMascot to 2.6a. 2008-05-11 05:24:50 +00:00
xmessage Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
XmHTML Add DESTDIR support. 2008-06-12 02:14:13 +00:00
xmindpath Reset maintainer for itojun's packages. 2007-11-17 13:40:15 +00:00
xmms-osd Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xmodmap Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xmon Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xmore Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xmountains Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xmove Fix several plists that use imake after some modifications in the imake 2008-05-11 14:29:23 +00:00
xmx Fix the "minor PLIST problems" and unmark this as only for SunOS. 2008-08-31 06:52:29 +00:00
xneko Needs GNU nroff to format catpages with -mandoc. 2008-02-07 13:24:36 +00:00
xnodecor
xorg-cf-files commit my fix for PR pkg/37128 2008-06-01 14:36:37 +00:00
xosd Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xp Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xpad Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xpaste
xpenguins Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xphoon Drag this kicking and screaming into the Century of the Fruitbat. 2008-07-28 02:45:56 +00:00
xplanet The package supports installation to DESTDIR. 2007-10-23 20:17:58 +00:00
xplsprinters Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xpmicons Reset maintainer on his request. 2008-01-19 09:16:17 +00:00
xpmroot Added support for installation to DESTDIR. 2008-01-03 23:18:07 +00:00
xpns
xpostit Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xprehashprinterlist Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xprop Update to xprop-1.0.4. Changes: 2008-08-09 20:03:35 +00:00
xproto Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
xproxymanagementprotocol Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
xrandr Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xrdb Update to xrdb-1.0.5. One bug fix: 2008-08-09 20:07:34 +00:00
xrefresh Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
Xrender Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
xrestop Update to xrestop-0.4. Add DESTDIR support. Changes: 2007-11-23 07:48:55 +00:00
xscreensaver update to 5.06 2008-07-30 20:18:36 +00:00
xscreensaver-demo update xscreensaver to 5.05 2008-03-10 12:37:12 +00:00
xscribble Switch MASTER_SITES from ftp to http site. 2008-04-16 06:09:50 +00:00
xscript Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xsel Import xsel version 1.2.0. 2008-04-05 13:07:35 +00:00
xservers Remove me as maintainer of some package, clame ownership of a few packages. 2008-05-25 14:45:16 +00:00
xset Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xsetmode Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xsetpointer Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xsetroot Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xsm Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xsnow Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xteddy Simplify and make destdir ready. 2008-09-16 12:42:03 +00:00
xteddy2 Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xterm Add USE_TOOLS+= tbl (appeases pkglint). 2008-09-16 22:20:01 +00:00
xtermset Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xtoolwait Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xtrans Merge cube-native-xorg, so that pkgsrc-current can be used with the native 2008-10-05 21:36:32 +00:00
xvattr Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xvidcap Bump revision because of the ffmpeg update. 2008-09-08 15:14:21 +00:00
xvidcap-gtk2
xvidtune Importing xvidtune 1.0.1. 2008-05-25 16:18:35 +00:00
xview Bump PKGREVISION because of xview-lib issues. 2008-08-30 20:07:30 +00:00
xview-clients Make this crap build again. PKGREVISION++ because of the xview-lib issues. 2008-08-30 20:03:03 +00:00
xview-config Fix the xview imake templates to stop on error in a number of cases. 2008-08-30 19:52:50 +00:00
xview-lib Make this crap build again. Don't use sigvec(); it's no longer supported 2008-08-30 20:01:28 +00:00
xvinfo Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xwatchwin Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xwd Update to 1.0.2: 2008-07-29 21:08:59 +00:00
xwininfo Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xwit Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xworld
xwrits Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xwud Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xxkb Add DESTDIR support, part of PR 38340. 2008-03-30 11:25:49 +00:00
zenity update to 2.24.0 2008-10-16 18:14:13 +00:00
Makefile Remove py-qt3-sip, replaced by py-sip. 2008-10-08 14:28:21 +00:00