pkgsrc/x11
wiz 64a1bd3396 Update to 4.50.99:
Intermediate release 4.50.99
-------------------
* Changed the configuration file for the build. The auto(conf|make) people
  changed their API so we changed our build.
* The string-to-pixel-table converter had gone missing; fixed.
* Several resources were not getting treated in SetValues and GetValues.
  Some must have been disabled for a while, several others died because
  moving them into the per-cell structure had the side-effect that they
  weren't any regular widget resources any more.
  I'm afraid this was oversight on my behalf during the per-cell conversion.
* Changed the functionality of drawCellCallback slightly: we're now initializing
  the callback structure with the cell contents. If the callback doesn't
  alter anything, something will still end up getting displayed.
* New work from Tobias Oed :
  - setlabel.patch corrects the buggy logic of XbaeSetRowLabel (and ColumnLabel).
  - SCROLLBAR_TOP.patch introduces two simple macros to make things a bit more readable
  - clips.patch redraws the left/right/bottom/top clips in the same way the clipchild is
    redrawn. IMHO it makes things cleaner and avoids redrawing the partially
    fixed cells twice in some cases. Also fixes bugs when deleting a row/col
    makes the matrix scroll.
  - ClearCell.patch fixes a small bug I introduced in GetCellClip.patch (one of the draw
    examples crashes).
  - deadspace-clipmask.patch redraws the dead space similarly to the labels (they are
    both drawn on the matrix). This makes things cleaner as now everything gets redrawn
    the way clipped cells are or the way labels are. It also eliminates the need to redraw
    the last non fixed row/columns to get the dead space to be drawn. It kills
    calcVertfill/calcHorzfill and removes a bunch of unnecessary
  - xbaeSetClipMask calls
    and simplifies that function. It gets the shadow to span the dead space (when there are
    trailing attached rows/columns) and  one of XmGRID_ROW_SHADOW etc are set.
    It simplifies the way a highlights are drawn and deprecates HighLightOther but these
    do not span the dead space yet.
* Protect against passing gadgets as cell widgets for now, because we don't have the
  right support for them yet.
* More work from Tobias :
  - refresh.patch adds stuff I missed in GetCellClip.patch that leads to this bug: start
    choice, add some (trailing)fixed columns, set cell margin heigtht to 10, scroll to the
    bottom of the matrix and then reduce the margin height. The fixed column don't get
    updated right.
  - left_column.patch. Do the same thing with the above patch applied.  Everything gets
    updated correctly now, but the scrolling is somewhat erratic. This patch fixes this by
    making left_column/top_row 'fake' resources (like cells now is). It relies on the assumption
    that SetValuesHook gets called after SetValues. If someone has a better X doc than me, let
    me know if this is safe.
  - filletc.patch gets the fill(s)/trailing attached to work under all combinations of these
    options and shadow types according to spec (these are wierd). The approach I started
    to take in deadspace-clipmask.patch was a hopless nightmare and this is much simpler. It makes
    the fill part of the cell that preced it. To accomodate this, the size of the clips is changed.
    It removes the more obscure macros (Sir Silly Macro's) and introduces new ones
    VISIBLE_FIXED_*_{HEIGHT|WIDTH}. The new version of exaples/add lets you try the stuff out.
  - renamemacro.patch does the renaming I suggested.
  - rowlabelwidth.patch fixes the calculation of the row label width as it included
    cell_shadow_thickness twice when the labels were buttons.
  - labelClip.patch - This patch puts the scrollable parts of labels in their own clips. It adds
    two clips and two scrollMgrs but on the other hand kills 3 gcs and the matrix scrollMgr.
    Now everything that scrolls is treated the same way and we have as many scrollMgrs as clips.
    Time to put them in the clip.
  - This patch fixes a few more problems due to the per_cell change of arcad: Set/GetValuesHook
    were missing some items and SetValuesHook wasn't updating the display.
    I also changes the semantics of per_cell[][].shadow_type a bit: a value of 0 now
    means to use the default matrix.cell_shadow_type. Unfortunately there is no
    XmUNSPECIFIED_SHODOW so this may not work on all motif flaviours. On
    the other hand, the values currently used come from two different motif enums
    so it's either already broken or safe.This gets that part of examples/choice to work again.
    I modified examples/choice to get the Arm option to work again (You can't just
    fiddle with what GetValues returned for cellBackgrounds and cellShadowTypes
    and do a redisplay, you need to SetValues what you changed). I also fixed the
    memory leaks that every other third party app will suffer after a GetValues of
    these resources. That probably needs to be documented somewhere.
  - fifteen.patch gets the shadow to follow the empty cell again and fixes some memory leaks
    (same thing as my latest changes to choice.c, all other examples are OK)
  - labelClipfix.patch fixes a bug I introduced in labelClip.patch (very apparent when scrollbars
    are TOP and/or LEFT). I had to remove some XClearArea calls from resize() . I had doubts about
    them for a while: they were using outdated values. I also decided to have labels clear their
    'cell' before redrawing and collapsed drawXmLlabel into drawLabel.
  - ClearArea breaks relayout out of resize and removes all calls to
    XClearArea from these functions, adding them to add/delete row/column.
    This hopefully gets all that working. It also eliminates private header
    dependence of some examples allowing to remove xbaeClearCell.
  - CopyPerCell.patch replaces calls to xbaeCopyPerCell by xbaeCreatePerCell
    where apropriate. After that there is a call to copypercell left in a dead
    piece of code and another one that is commented out. So I killed the dead
    code and the whloe xbaeCopyPerCell function.
  - userWidget.patch: (at least) since the new XbaeMatrixSetUserWidget apeared,
    user widgets can be treated just like the text widget and xbaeMoveUserWidget
    is not needed anymore.
* Fixes from Michel Bardiaux :
  - allow build using an older gcc (still the official compiler in Debian)
  - fix a 'BadWindow' happening with the following sequence:
	XbaeCreateMatrix
	XtRealizeWidget(toplevel)
	create a widget as child of matrix
	XbaeMatrixSetCellWidget
* Another one from Tobias : The first part makes the scroll managers part of the clips,
  and the second part isolates all the scrolling to the clips widgets.
* Change the signature of XbaeMatrixGetCellPixmap so it has a return code.
* Implement XbaeMatrixSortRows() as the same function as XbaeMatrixSort().
  Maybe the latter should disappear.
* Document the new interfaces from Arcad.
* Include code for creating a DLL under the Exceed environment.
  Until we figure out how to auto-detect Exceed, a flag should be passed to configure
  to enable this.

Intermediate release 4.50.97
----------------------------
* A submission of code by Arcad Systemhaus for :
  - Added XbaeMatrixSort(Widget, void *proc);
  - Moved the cell string into the per_cell structure, to be able to sort.
  - Fixes for multiline text display in cells.
  - Added XbaeMatrixTrackCellCallback which fires everytime the cursor enters
    a new cell (something entercell/leavecell do differently).
* Modified ("fixed" really) cell width calculation, as requested by Evgeny,
  to mimic the behaviour described in the Motif documentation.

Test release 4.50.93
--------------------
* Lots of bugfixes and code cleanup by Tobias Oed, see ChangeLog.

Test release 4.50.91
--------------------
* Lots of bugfixes and code cleanup by Tobias Oed, see ChangeLog.

Release 4.50.5
--------------
* Fix for XmNautoFill in XbaeInput when the pattern begins with an
  optional literal, such as [-]d[d][d][d][d] .
* Add the new resources introduced in the last months to the example
  Builder Xcessory integration file in examples/builderXcessory.
* Bugfix for a clip window size problem that showed up when resizing the
  window (e.g. resize examples/traversal/traversal to smaller than the
  original and then bigger). Bug #702560.
* Some source code cleanup.
* Fixes by James Georgas for colour handling.
* Fixes by Van to eliminate slider size warnings (see bugs #823041 and #823037).
* Fixes by David Traill for both resize and scrollbar warnings.
* Add XmNXmColumnLabel resource to handle XmString as column labels.
* Fix a memory problem with row_heights.

4.50.3 was not an official release.
	It was a test version distributed to parties interested in it.

Release 4.50.2
--------------
* A memory (double free) related bugfix.
* Two new resources (XmNhorzFill, XmNvertFill) were added to allow for
  additional fill behaviour. This allows you to specify how the matrix
  treats highlighting of the last row or column.
* The foreground and background resources are no longer being set on
  cell widgets, as this appears to be strange behaviour.
* Bugfix related to incorrect refresh after deleting rows.
* Remove some C++ style comments.
* Fix some build problems.
* Move some stuff in the share/ directory at installation.
* Implement the XBAE_PRODUCTION symbol to compile Xbae with or without
  debugging code.
* Improve resizing rows and columns.
* Avoid X Errors when setting clip geometry to 0.
* Implement showColumnArrows and showRowArrows resources.
* Fix incorrect behaviour when rapidly clicking with two different
  mouse buttons.
* Fix nested comments and a missing prototype.
* Fix scrollbar warning problem.
* Changed the column width measurement.

Release 4.50
------------
This is a stable release, basically equivalent to 4.9.13.

Changes in 4.9.13
-----------------
* Fix the GROHTML build problem.
* Bugfix : when resizing first of trailing fixed rows, the VSB slider
  was not updated and a blank area was visible between clip and bottomclip.
* Changed useXbaeInput default value to False.

Changes in 4.9.11
-----------------
* Sascha Göbel and Greg Shebert are now part of the Xbae development team.
* Many bugfixes to the scrolling (smooth scrolling now),
  and to resizing row heights.
* Received code from Sasha Göbel.

Changes in 4.9.9
----------------
* Bug fixes related to redrawing.
* Enable dynamic row/column resizes again.
* Include images in release files again - this makes for a large package.
* Build HTML manual pages from their sources (the HTML is in doc/,
  but the sources are in src/*.3.in).

Changes in 4.9.7
----------------
* Sascha Göbel contributed substantial improvement to scrolling.
* Bugfixes.

Changes in 4.9.5
----------------

* Improved internal debugging support (dmalloc, dbmalloc)
* Fix pattern check in XbaeInput
* Remove support for Motif <=1.1
* Bugfix by Phil Eccles to position cell widgets correctly when row/column
  headers are active.
2004-11-23 17:04:15 +00:00
..
9term Convert to buildlink3. 2004-04-18 04:19:49 +00:00
acidlaunch Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
asnap Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:28:26 +00:00
aterm Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
bbapm
blt Unused (thanks, minskim). 2004-05-13 00:13:42 +00:00
compositeext s/${X11BASE}/lib/X11/pkgconfig/${X11BASE}/lib/pkgconfig/ 2004-10-09 06:40:48 +00:00
controlcenter Add patch from jmmv that fixes scrollkeeper core dumps during installation. 2004-11-06 11:53:02 +00:00
devilspie Update devilspie to 0.7. 2004-11-15 06:35:50 +00:00
dfm Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
dtx11session
dxpc Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
ebuilder Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
egtk Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
eterm Update linkage to libltdl (via imlib2), now in its own package. 2004-10-15 12:22:13 +00:00
fbdesk Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
filerunner Switch to Tk 8.4 and bump PKGREVISION due to the dependency change. 2004-08-15 03:27:29 +00:00
fixesext s/${X11BASE}/lib/X11/pkgconfig/${X11BASE}/lib/pkgconfig/ 2004-10-09 06:40:48 +00:00
fltk Patches no longer needed 2004-10-21 08:30:22 +00:00
fox Extra PKGREVISION bump to cover the libtool/compiler-wrapper problems. 2004-10-07 16:36:47 +00:00
fspanel Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
fvwm-wharf Convert to buildlink3. 2004-04-24 15:58:44 +00:00
gdkxft Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gdm Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gdm1 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gnome-- Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gnome-applets Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gnome-core Bump PKGREVISION due to security fixes in libxml (dependency adjusted to 2004-11-20 22:10:22 +00:00
gnome-desktop Update gnome2-pixmaps and gnome-desktop to 2.8.1: 2004-10-26 21:05:46 +00:00
gnome-gkrellm Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gnome-libs There is no more "native" BDB_TYPE. It's just "db1" now. 2004-11-17 15:43:00 +00:00
gnome-mag Update to 0.11.8: 2004-10-28 19:12:53 +00:00
gnome-panel gnome2-control-center shouldn't be here; found by dmcmahill@. 2004-11-06 10:41:08 +00:00
gnome-python Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gnome-session Let the reboot and halt options appear in GNOME's "Log Out" dialog and 2004-11-19 19:59:14 +00:00
gnome-themes Update to 2.8.1: 2004-10-26 21:09:04 +00:00
gnome-themes-extras Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gnome-users-guide
gnome1-panel Bump PKGREVISION due to security fixes in libxml (dependency adjusted to 2004-11-20 22:10:22 +00:00
gnome1-session Bump PKGREVISION due to security fixes in libxml (dependency adjusted to 2004-11-20 22:10:22 +00:00
gnome2-applets Update to 2.8.1.1: 2004-10-15 16:23:28 +00:00
gnome2-control-center Remove an unneeded include which only exists on XFree86/Xorg. 2004-11-19 17:32:20 +00:00
gnome2-terminal Update to 2.8.0: 2004-10-20 21:13:16 +00:00
gnopernicus Update to 0.9.16: 2004-10-28 19:13:54 +00:00
gnustep-back Add dependency on freetype2/Xft2. 2004-11-16 06:13:15 +00:00
gnustep-gui Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gnustep-preferences Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gtk distinguish between gtk1 and gtk2 in COMMENT. 2004-10-04 11:11:23 +00:00
gtk+extra Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gtk-- Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gtk-engines Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gtk-thinice-engine Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gtk2 Remove redundant uses of PTHREAD_{CFLAGS,LDFLAGS} now that they're added 2004-11-12 06:39:19 +00:00
gtk2-engines Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gtk2-engines-bluecurve Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gtk2-engines-industrial Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gtk2-theme-switch Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gtkglarea Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gtkglarea2 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gtkmm Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gtkmm24 Changes 2.4.7: 2004-11-04 13:59:56 +00:00
gtksourceview Update to 1.1.1: 2004-10-28 19:05:43 +00:00
gtkstep Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gtkterm2 Changes 0.2.3: 2004-11-19 09:55:13 +00:00
gtoolkit Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
hanterm I'm no longer maintaining these packages. 2004-03-01 13:42:25 +00:00
hot-babe Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
imake Add support for building XFree86 packages on Solaris. 2004-11-07 12:57:37 +00:00
imwheel Convert to buildlink3. 2004-04-21 04:29:19 +00:00
kde2 Fix depends, bump PKGREVISION. 2004-10-28 11:49:07 +00:00
kde3-i18n-ar Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-bg Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-bn Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-bs Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-ca Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-cs Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-cy Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-da Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-de Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-el Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-en_GB Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-eo Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-es Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-et Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-eu Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-fa Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-fi Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-fr Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-he Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-hi Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-hr Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-hsb Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-hu Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-is Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-it Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-ja Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-mn Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-ms Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-nb Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-nds Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-nl Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-nn Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-pa Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-pl Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-pt Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-pt_BR Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-ro Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-ru Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-sk Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-sl Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-sr Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-sr_Latn Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-sv Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-ta Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-tg Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-tr Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-uk Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-uz Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-zh_CN Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kde3-i18n-zh_TW Update to KDE 3.3.1. 2004-10-13 13:20:20 +00:00
kdebase2 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
kdebase3 More duplicate dirrm cleanup. 2004-11-18 11:48:36 +00:00
kdelibdocs2
kdelibdocs3 More duplicate dirrm cleanup. 2004-11-18 11:48:36 +00:00
kdelibs2 Replace USE_GCC_SHLIB with "USE_LANGUAGE=c c++" (the latter implies the 2004-11-13 22:04:52 +00:00
kdelibs3 More duplicate dirrm cleanup. 2004-11-18 11:48:36 +00:00
keylaunch bl3ify, s/USE_X11BASE/USE_X11/. 2004-04-25 02:51:22 +00:00
kkbswitch Update kkbswitch to 1.4.2 from maintainer Ian Zagorskih. 2004-11-15 08:51:13 +00:00
kmessage Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
kterm Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
lablgtk Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
lesstif Changes 0.93.97: 2004-11-22 14:30:18 +00:00
libxfce4gui Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
libxfce4mcs Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
libxfce4util Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
libxklavier Remove some useless C99-isms that cause the build to fail with GCC 2.95. 2004-11-03 11:22:58 +00:00
libzvt Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
mlterm Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
modeline Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:28:26 +00:00
mowitz Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
multi-aterm Drop maintainership; I don't have the enough free time to maintain 2004-05-07 01:14:46 +00:00
multi-gnome-terminal Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
neXtaw Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
oneko Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:28:26 +00:00
openmotif fix up the darwin config files to deal with something that changed in 2004-08-31 03:10:16 +00:00
p5-gtk Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
p5-gtk2 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
p5-Tk Unused. 2004-05-14 18:30:52 +00:00
p5-X11-Protocol Import p5-X11-Protocol from pkgsrc-wip. Packaged by Roland Illig. 2004-10-30 20:51:51 +00:00
paragui Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-gnome2 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-gtk2 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-Pmw Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-qt2 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-qt2-sip Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-qt3-base Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-qt3-modules Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-qt3-qscintilla Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-qt3-sip Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-Tk Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-wxWindows Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-Xlib This package is not in pkgsrc-wip any more. 2004-08-17 15:34:23 +00:00
pygtk Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
qt1 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
qt2 Fix depends. 2004-10-28 11:51:04 +00:00
qt2-designer Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
qt2-designer-kde Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
qt2-docs Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
qt2-examples Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
qt2-libs Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
qt3 This is a meta-package, so make its dependencies more liberal. 2004-10-07 16:28:18 +00:00
qt3-docs Move USE_BUILDLINK3 into Makefile.common. 2004-10-28 10:32:23 +00:00
qt3-libs Disable XRender on Solaris. Workaround for graphics corruption problems 2004-11-22 12:44:50 +00:00
qt3-mysql use mk/mysql.buildlink3.mk instead of databases/mysql-client/buildlink3.mk, 2004-10-29 05:59:23 +00:00
qt3-psql Move USE_BUILDLINK3 into Makefile.common. 2004-10-28 10:32:23 +00:00
qt3-qscintilla Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
qt3-tools Move USE_BUILDLINK3 into Makefile.common. 2004-10-28 10:32:23 +00:00
qtarch Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
qwspritefield Convert to buildlink3. 2004-10-28 12:20:39 +00:00
qwt Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
randrext Unused. 2004-07-06 22:41:15 +00:00
render Remove incomplete (and apparently ineffective) patch I added to work around 2004-11-11 13:32:06 +00:00
rep-gtk Apparently, librep is a gross abuser of libtool, and breaks most of 2004-10-15 21:02:29 +00:00
ruby-fox Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
ruby-gtk Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
ruby-tcltklib Revert ruby-tcltk package to use tcl83. 2004-03-29 07:55:25 +00:00
ruby-tk Remove CONFIGURE_ARGS here since it had no effect and specified 2004-03-17 04:13:46 +00:00
rxvt Make this package build on Interix. Based on patches submitted by 2004-09-15 18:29:20 +00:00
speyes Relinquish maintainership of packages to tech-pkg@NetBSD.org. 2004-04-24 22:46:08 +00:00
ssystem Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
startup-notification Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
swing Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:28:26 +00:00
tk Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
tk-BWidget import tk-BWidget-1.7.0. 2004-09-24 21:10:12 +00:00
tk-Tix Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
tk83 Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST. 2004-09-22 08:09:14 +00:00
tkinfo Update tkinfo to 2.8. Patch provided by guru at nscl dot msu dot edu 2004-05-12 15:08:13 +00:00
tkman Enable tk84 and replace x11/tk with x11/tk83. Packages compatible 2004-03-08 20:27:13 +00:00
unclutter Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:28:26 +00:00
vte No need to include bsd.prefs.mk; should have been removed when vte was 2004-11-06 17:00:11 +00:00
wdm RCD_SCRIPTS_EXAMPLEDIR was just changed to be a relative directory 2004-10-11 22:14:51 +00:00
wmavgload Reset maintainer to tech-pkg@ (from ad@, since he is not working on them 2004-05-07 11:54:35 +00:00
wmessage Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
wmfire Convert to buildlink3. 2004-04-18 07:30:16 +00:00
wmfstatus Convert to buildlink3. 2004-04-18 07:30:16 +00:00
wmweather Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
wterm Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
wxGTK Extra PKGREVISION bump to cover the libtool/compiler-wrapper problems. 2004-10-07 16:36:47 +00:00
wxhaskell Update descriptions a little. 2004-11-21 17:46:02 +00:00
wxWindows-docs Relinquish maintainership of packages to tech-pkg@NetBSD.org. 2004-04-24 22:46:08 +00:00
x2x USE_IMAKE implies USE_X11BASE, remove it. 2004-07-21 21:16:10 +00:00
x3270 Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:28:26 +00:00
xaniroc
XaoS Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xautolock bl3ify 2004-01-06 07:17:03 +00:00
Xaw-Xpm Convert to use {COMPILER,LINKER}_RPATH_FLAG. 2004-08-27 18:52:00 +00:00
Xaw3d Convert to use {COMPILER,LINKER}_RPATH_FLAG. 2004-08-27 18:52:00 +00:00
Xbae Update to 4.50.99: 2004-11-23 17:04:15 +00:00
xbanner Convert to buildlink3. 2004-04-19 04:53:58 +00:00
xbindkeys Update xbindkeys{,-tk} to 1.7.1. Changes since 1.6.5: 2004-11-20 22:40:34 +00:00
xbindkeys-tk Update xbindkeys{,-tk} to 1.7.1. Changes since 1.6.5: 2004-11-20 22:40:34 +00:00
xcb
xclip Take maintainership. 2004-05-17 03:15:20 +00:00
xcolors Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:28:26 +00:00
xcolorsel Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xcompmgr Back out previous, I was really really wrong! 2004-10-08 04:45:43 +00:00
Xcomposite s/${X11BASE}/lib/X11/pkgconfig/${X11BASE}/lib/pkgconfig/ 2004-10-09 06:40:48 +00:00
xcruise
xcursor Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xcursorgen Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xdaemon Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:28:26 +00:00
xdaemon2 Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:28:26 +00:00
xdesktopwaves Initial import of xdesktopwaves, version 1.0: 2004-11-20 22:14:59 +00:00
xdialog Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xdm3d Use option "-r" instead of "-e" for the '[' command since this is not 2004-05-23 15:09:06 +00:00
xearth Convert to buildlink3. 2004-04-22 03:54:17 +00:00
xephem Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xextensions Do not create an unused empty directory. Already fixed in CVS. 2004-05-08 22:21:06 +00:00
XF86Setup Enable tk84 and replace x11/tk with x11/tk83. Packages compatible 2004-03-08 20:27:13 +00:00
xfce3 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xfce4-clipman-plugin Updated xfce4-clipman-plugin to 0.4.1 2004-10-08 06:23:36 +00:00
xfce4-desktop Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xfce4-gtk2-engines Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xfce4-mcs-manager Remove redundant uses of PTHREAD_{CFLAGS,LDFLAGS} now that they're added 2004-11-12 06:39:19 +00:00
xfce4-mcs-plugins Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xfce4-menueditor Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xfce4-notes-plugin Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xfce4-panel Remove redundant uses of PTHREAD_{CFLAGS,LDFLAGS} now that they're added 2004-11-12 06:39:19 +00:00
xfce4-taskbar-plugin Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xfce4-themes Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xfce4-toys Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xfce4-trigger-launcher Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xfce4-utils Updated xfce4-utils to 4.0.6nb2 2004-10-05 09:58:52 +00:00
xfce4-windowlist-plugin Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xfishtank Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:28:26 +00:00
Xfixes s/${X11BASE}/lib/X11/pkgconfig/${X11BASE}/lib/pkgconfig/ 2004-10-09 06:40:48 +00:00
xflame
xforms Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
XFree86-clients Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
XFree86-libs SunOS PLIST that got left off yesterday. 2004-11-08 08:22:02 +00:00
XFree86-server Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xfstt RCD_SCRIPTS_EXAMPLEDIR was just changed to be a relative directory 2004-10-11 22:14:51 +00:00
xgas
xglobe Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xhangglider
xjman Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248 2004-01-27 00:53:10 +00:00
xkbd Convert to buildlink3 and fix PLIST. Bump PKGREVISION to 1. 2004-04-24 00:45:58 +00:00
xkbset USE_BUILDLINK3 so that -Wl,-R/usr/X11R6/lib gets stripped/translated 2004-05-23 20:58:41 +00:00
xkeycaps
xless Convert to buildlink3. 2004-04-19 04:53:58 +00:00
xlockmore Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xlockmore-lite Remove CXX=CC line in response to PR 24707 by Kouichirou Hiratsuka. 2004-03-08 16:56:38 +00:00
xlogout
xlupe Convert to buildlink3. 2004-04-19 04:53:58 +00:00
xmascot
XmHTML Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xmindpath Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:28:26 +00:00
xmms-osd Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xmon USE_IMAKE implies USE_X11BASE, remove it. 2004-07-21 21:16:10 +00:00
xmountains USE_IMAKE implies USE_X11BASE, remove it. 2004-07-21 21:16:10 +00:00
xmove Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:28:26 +00:00
xmx USE_IMAKE implies USE_X11BASE, remove it. 2004-07-21 21:16:10 +00:00
xneko Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:28:26 +00:00
xnodecor Convert to buildlink3. 2004-04-18 07:41:02 +00:00
xorg-clients Fix CONF_FILES in xorg-clients, the 'xdm' subdir already was set by 2004-11-05 02:58:56 +00:00
xorg-imake Make this build on NetBSD/amd64. Patch provided by Nicolas Joly 2004-11-15 11:15:42 +00:00
xorg-libs Make this build on NetBSD/amd64. Patch provided by Nicolas Joly 2004-11-15 11:15:42 +00:00
xorg-server Fix PLIST on NetBSD/amd64. 2004-11-15 11:15:55 +00:00
xosd Remove redundant uses of PTHREAD_{CFLAGS,LDFLAGS} now that they're added 2004-11-12 06:39:19 +00:00
xp Convert to buildlink3. 2004-04-19 04:53:58 +00:00
xpad Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xpaste Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:28:26 +00:00
xpenguins Convert to buildlink3. 2004-04-19 04:53:58 +00:00
xphoon Convert to buildlink3. 2004-04-19 04:53:58 +00:00
xplanet Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xpmicons Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:28:26 +00:00
xpmroot Updated xpmroot to 2.4.19 (to match the current fvwm2 version). There are 2004-10-01 09:15:28 +00:00
xpns USE_BUILDLINK3 so that -Wl,-R/usr/X11R6/lib gets stripped/translated 2004-05-23 20:58:41 +00:00
xpostit Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:28:26 +00:00
Xrandr-mixedcase Allow distinguishing the version of Xrandr that came with XFree86 4.2 2004-11-08 12:38:19 +00:00
Xrender Backout previous, the root cause has been fixed via pkgtools/x11-links. There 2004-11-11 17:49:07 +00:00
xscreensaver Update xscreensaver to 4.18: 2004-09-27 14:19:44 +00:00
xscreensaver-demo Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xscreensaver-gnome Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xscribble darwin fixes (-lmx for additional math functions, malloc.h->stdlib.h, 2004-05-23 18:31:27 +00:00
xscript USE_IMAKE implies USE_X11BASE, remove it. 2004-07-21 21:16:10 +00:00
xservers If we're passing through MAKEFLAGS variables whose values may contain 2004-02-06 19:04:24 +00:00
xsnow Convert to buildlink3. 2004-04-18 07:30:16 +00:00
xteddy Convert to buildlink3. 2004-04-18 07:41:02 +00:00
xteddy2 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xterm Use POSIX termios on Interix. 2004-10-21 07:51:14 +00:00
xtermset Convert to buildlink3. 2004-04-20 01:56:48 +00:00
xtoolwait Convert to buildlink3. 2004-04-19 04:53:58 +00:00
xvattr Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xvidcap Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xview This does not need buildlink2. 2004-04-27 22:24:49 +00:00
xview-clients Convert to buildlink3. 2004-04-28 00:05:24 +00:00
xview-config Change MAINTAINER to tech-pkg@. Requested by jlam@. 2004-04-22 23:15:02 +00:00
xview-lib Make this compile on NetBSD 2.0 too. 2004-09-30 20:38:28 +00:00
xwatchwin bl3ify 2004-03-11 16:19:03 +00:00
xwit bl3ify 2004-03-11 16:19:03 +00:00
xworld Fix a couple of typos. 2004-05-29 08:27:43 +00:00
xwrits bl3ify 2004-03-11 16:19:03 +00:00
zenity Update to 2.8.1: 2004-10-28 19:06:54 +00:00
Makefile Remove xbindkeys-config; the site holding the program has disappeared, and 2004-11-20 22:46:03 +00:00