pkgsrc/x11
mef cd3f1b9df2 Update 2.8.10.1 to 2.8.12.0
2.8.12:
-------
All:

- Fixed a bug in UNC path testing.
- Improved command line parser usage help.
- Fixed race condition bugs in wxCondition.
- Added wxT_2() for forward compatibility with wxWidgets 3. Use it in
  initialization of wxCmdLineEntryDesc struct elements and (very few) other
  places where wxT() is required currently but won't be allowed in v3.
- Fixed crash on exit caused by deleting old logger in wxLogChain dtor.

All (GUI):

- wxRTC: fixed style selection resetting after editing a style.
- wxRTC: can now edit line spacing in .1 increments from 1 to 2.
- wxRTC: fixed wrong line spacing and space after paragraph calculations.
- wxRTC: GetStyleMergedWithBase now detects loops.
- wxRTC: wxRichTextCtrl::ApplyStyle now applies a paragraph style at the
  cursor without needing a selection, and setting the default style now
  avoids duplicating character attributes in subsequently typed text when
  they exist in the paragraph style.
- wxRTC: fixed IsPositionVisible to scroll a position into view correctly.
- wxRTC: fixed a problem with paste resetting the content paragraph style.
- wxRTC: style list box now copes with names duplicated across style types.
  Also fixed wxRichTextStyleDefinition::GetStyleMergeWithBase similarly.
- wxRTC: fixed very poor performance for XML loading on wxGTK.
- Fixed error in generic tree control CalculatePositions.
- Added wxFD_FILE_MUST_EXIST to wxFileSelector function.
- Added wxDataViewCtrl Get/SetValueByRow functions for forward compatibility
  with 2.9.
- Right-clicking is now supported in any kind of wxAuiToolBar button.
- Fixed a bug in wxAcceleratorEntry::IsOk.
- wxGraphicsContext::DrawBitmap: x and y coordinates no longer affected by
  stretch factor.
- Fixed an assert in wxGrid on wxEVT_MOUSE_CAPTURE_LOST.
- Fixed bug in generic wxTreeCtrl where SelectItem toggles the selection if
  the item is already in the desired state.
- Fixed bug in wxSizer::Replace(size_t, wxSizerItem *) whereby SetContainingSizer
  is not called.
- Fixed compilation with libpng 1.5 and above.
- Removed ugly black (simple) border around wxHTML help window.

wxMSW:

- wxOwnerDrawnComboBox and wxComboCtrl with wxCB_READONLY window style now
  have more native-like focus indicator rendering.
- Fixed wxOwnerDrawnComboBox keyboard handling: drop-down is no longer
  displayed when arrow key is pressed (without Alt).
- In some rare cases wxOwnerDrawnComboBox drop-down animation could display
  as garbage. This has now been greatly reduced (mcben).
- Fixed OLE date conversion bug.
- Added check for double window handle creation.
- Fixed WIN64 crash in wxStyledTextCtrl.
- Fixed Watcom compilation when omitting threads.
- Fixed wxFileName::IsFileReadable on Windows 98.
- Fixed bug whereby clicking anywhere inside wxListBox generates
  wxEVT_COMMAND_LISTBOX_SELECTED event. You need to set wxUSE_LISTBOX_SELECTION_FIX
  to 1 in include/wx/msw/listbox.h to enable this binary-incompatible fix.

wxGTK:

- Fix for --disable-radiobtn compilation.
- Fixed a bug on GTK+ only whereby wxGrid scrolls back to the previous edit position
  when another cell is edited.
- Fix for missing menubar problem under some window managers where menu bar height is
  reported as 0 when the menu hasn't fully realized yet. Now updates the height during
  idle time if it is 0, otherwise no menu is shown.
- Improved list control and tree control selection text theme compatibility by adding
  wxSYS_COLOUR_LISTBOXHIGHLIGHTTEXT colour index.
- wxComboCtrl and wxOwnerDrawnComboBox had wrong background colours under some
  themes (Marcin Wojdyr).
- Added thread-safe fixes to socket code.

wxUniv:

- Fixed assertion in tree control sample due to colour index not being supported.

2.8.11:
-------

*** INCOMPATIBLE CHANGES: ***

   Due to an oversight, a bug fix in wxMSW resulted in an incompatible change in
   wxTreeCtrl behaviour: its EVT_TREE_ITEM_ACTIVATED handler now must skip the
   event being processed to allow the item to be toggled by double clicking on it.
   I.e. you need to ensure there is an "event.Skip()" in your item activation
   handler if you do wish to allow the item to be toggled.

All:

- Fixed crashes due to invalid input in PNG and TIFF image loaders (Tielei Wang).
- Fix compilation of wxWidgets headers with recent Sun CC (Brian Cameron).
  NB: If your code uses _T() macro you must either replace it with wxT() to
      use Sun CC or define wxNEEDS__T before including wx headers and avoid
      including many standard headers (again, only with this compiler).
- Added several functions forward compatible with wxWidgets 3.0 (troelsk):
  wxDC::SetDeviceClippingRegion(), wxShowEvent::IsShown(),
  wxIconizeEvent::IsIconized(), wxFileName::StripExtension(),
  wxXmlNode::GetAttribute[s](), wxXmlNode::AddAttribute().
- wxDateTime timezone functions now dynamic (no caching).

All (GUI):

- Add wxBU_EXACTFIT support to wxToggleButton XRC handler (Ronny Krueger).
- wxRTC: fixed AltGr+key input and numeric keypad Delete on Windows.
- wxRTC: added background colour setting to font dialog.
- wxRTC: added wxRICHTEXT_HANDLER_USE_CSS flag for HTML handler to use CSS
  where possible.
- wxRTC: corrected centring and right-justification spacing.
- wxRTC: corrected some problems with SelectAll. Caret is now set to end.
- Paper size conversion from dimensions to id now uses definition ordering
  in order to use common types where there are duplications, fixing problems
  where invalid sizes caused incorrect second invocation of page setup
  dialog.
- Corrected writing direction for Farsi.
- Added wxBORDER_THEME to XRC.
- Speeded up wxTreeCtrl by caching text size (botg).
- Fix building with using system libpng 1.4 (Volker Grabsch).
- Fixed generic wxDatePickerCtrl keyboard navigation.
- Added EVT_WIZARD_PAGE_SHOWN event for wxWizard.

wxMSW:

- Fixed crash when copying Unicode URLs to the clipboard (Tim Kosse).
- Fixed generation of wxEVT_CHAR_HOOK events.
- Implement wxFileName::SetTimes() for directories (Steve Lamerton).
- Correct wxTopLevelWindow::SetShape() for windows with menu bar (Peter Friis).
- Backported speed-up of Vaclav Slavik's high quality print preview speed-up.
  You now need to set wxUSE_HIGH_QUALITY_PREVIEW_IN_WXMSW in
  src/common/prntbase.cpp and wxUSE_ENH_METAFILE_FROM_DC in
  include/wx/msw/enhmeta.h.
- Worked around child window and caret positioning bug (in Windows) when using
  wxBORDER_THEME in a container window.
- Suppressed spurious character event for decimal key in numeric keypad.
- Prevented wxCheckListBox from corrupting menu items.

wxGTK:

- Don't access a possibly destroyed timer object from GTK callback (Tim Kosse).

wxMac:

- Fixed a problem with wxListCtrl whereby event processing would change
  the event object identifier, and thereby affect subsequent processing,
  and defeat custom event propagation of commands from current focus window.
- Fixed a problem with wxFontDialog on Mac OS 10.6.
2014-10-02 04:46:25 +00:00
..
9term Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
alacarte Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
antiright Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
appmenu-qt Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:18:26 +00:00
appres Update to 1.0.4: 2013-05-18 13:32:05 +00:00
asnap Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
aterm Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
autocutsel Import autocutsel-0.9.0nb1 as x11/autocutsel from pkgsrc-wip. 2012-10-06 05:59:30 +00:00
avant-window-navigator Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
bbapm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
beforelight Update to 1.0.5: 2013-01-21 13:28:13 +00:00
bigreqsproto Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
bitmap Update to 1.0.7: 2013-05-18 13:37:41 +00:00
blt add missing libX11 buildlink; PKGREVISION -> 9. 2014-06-29 06:07:30 +00:00
c++-gtk-utils Don't test char16/char32 support as it isn't used. 2014-08-19 13:45:48 +00:00
clipit Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
clisp-gtk2 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
clisp-mit-clx Fix pkglint. Add missing rcsid to patch and add patch comment. 2012-07-30 01:43:52 +00:00
clisp-new-clx Fix pkglint and add patch comment. 2012-07-30 01:46:24 +00:00
compositeproto Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
damageproto Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
deforaos-keyboard Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
deforaos-libdesktop Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
deforaos-locker Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
deforaos-panel Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
desklaunch Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
deskmenu Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
devilspie Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
dmenu Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
docker Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
dri2proto Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
dri3proto Import dri3proto-1.0 as x11/dri3proto. 2013-11-01 20:42:32 +00:00
driconf Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
dtx11session Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
dxpc Fix build on Solaris. 2012-12-27 20:19:35 +00:00
ede Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
editres Update to 1.0.6: 2013-01-21 12:57:32 +00:00
eekboard Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
efltk Don't run autoconf. It's not necessarily installed and it breaks 2014-09-10 12:24:43 +00:00
elementary Revbump for Lua multiversion support. 2014-05-03 13:14:36 +00:00
elementary-icon-theme Do not set FETCH_USING, should not be set in a package Makefile. 2014-01-27 18:41:11 +00:00
enlightenment Revbump for Lua multiversion support. 2014-05-03 13:14:36 +00:00
eterm Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
evieext Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
fast-user-switch-applet Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
fbdesk Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
filerunner Fix build with TCL 8.6 2014-01-20 19:20:07 +00:00
fixesproto Use detected fixesproto.pc. 2014-07-21 09:12:03 +00:00
fixesproto4 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
fltk require bsd.prefs.mk befer refering ${OPSYS}. 2013-12-12 08:47:24 +00:00
fltk2 Remove default arguments from a friend definition that is not a 2013-07-13 19:44:54 +00:00
fltk13 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
fontcacheproto Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
fontsproto Update to 2.1.3: 2014-04-15 08:22:53 +00:00
fox Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
fspanel Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
ftmenu Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
fvwm-wharf Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
gdm Use PAM_DEFAULT directly 2014-06-10 13:53:47 +00:00
ggiterm Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
glproto Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
gnome-applets Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
gnome-control-center Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gnome-desktop Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gnome-desktop-sharp Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gnome-desktop3 Solaris build fix 2014-09-25 15:10:21 +00:00
gnome-mag Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
gnome-panel Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gnome-screensaver Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gnome-session Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gnome-sharp Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gnome-terminal Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gnome-themes Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gnome-themes-extras Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gnopernicus Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gnustep-back recursive bump from icu shlib major bump. 2014-04-09 07:26:56 +00:00
gnustep-gui Fix packaging on FreeBSD 10. 2014-07-21 11:55:37 +00:00
gnustep-preferences recursive bump from icu shlib major bump. 2014-04-09 07:26:56 +00:00
grandr_applet Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gromit Fix build on SunOS (needs explicit -lm). 2014-08-21 09:40:02 +00:00
gselt Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gst-plugins0.10-x11 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
gst-plugins1-x11 Reset PKGREVISION for gst-plugins1* update to 1.4.0. 2014-08-08 21:31:06 +00:00
gtk Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gtk+extra Reset maintainer for resigned developers. 2013-12-23 11:57:02 +00:00
gtk-mac-integration Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gtk-sharp Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gtk2 Bump PKGREVISION for cups -> cups15 change. 2014-06-18 09:28:16 +00:00
gtk2+extra Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gtk2-chtheme Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gtk2-engines Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gtk2-engines-bluecurve Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gtk2-engines-murrine Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gtk2-theme-switch Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gtk3 Add another comment. 2014-09-08 13:18:40 +00:00
gtk3-engines-unico Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gtkada Remove MAKE_JOBS_SAFE=yes, the variable only has an effect when set to 'no'. 2014-09-02 08:32:36 +00:00
gtkdatabox Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gtkglarea Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
gtkglarea2 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gtkmm Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gtkmm-utils Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gtkmm3 Update to 3.12.0: 2014-09-10 06:30:33 +00:00
gtksourceview Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gtksourceview-sharp2 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gtksourceview2 Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gtksourceview3 Update gtksourceview3 to 3.10.3 2014-09-14 20:44:11 +00:00
gtksourceviewmm Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gtkstep Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
gtkterm2 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gxmessage Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
hanterm Forgotten patch for last commit. 2014-09-22 11:56:54 +00:00
hot-babe Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
hs-X11 make it clear what package depend on 2014-08-29 14:08:38 +00:00
hs-X11-xft make it clear what package depend on 2014-08-29 14:08:38 +00:00
hsetroot Fix build on SunOS (needs explicit -lX11). 2014-08-21 09:50:44 +00:00
hyena Import hyena-0.5nb1 as x11/hyena, packaged for wip by jihbed and myself. 2014-05-26 09:24:56 +00:00
iceauth Update to 1.0.6: 2013-07-24 06:35:51 +00:00
ico Update to 1.0.4: 2013-01-21 13:16:59 +00:00
imwheel Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
inputproto Update to 2.3.1: 2014-05-30 12:52:39 +00:00
kactivities Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kbproto "This line belongs inside the .ifdef block." 2013-04-06 13:46:33 +00:00
kde-baseapps4 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde-runtime4 Recursive bump for ffmpeg2 shared library major version bump. 2014-10-01 16:09:34 +00:00
kde-workspace4 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-af Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-ar Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-az Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-bg Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-bn Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-br Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-bs Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-ca Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-cs Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-cy Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-da Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-de Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-el Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-en_GB Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-eo Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-es Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-et Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-eu Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-fa Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-fi Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-fr Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-fy Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-ga Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-gl Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-he Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-hi Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-hr Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-hu Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-is Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-it Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-ja Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-kk Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-km Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-ko Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-lt Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-lv Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-mk Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-mn Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-ms Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-nb Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-nds Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-nl Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-nn Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-pa Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-pl Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-pt Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-pt_BR Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-ro Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-ru Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-rw Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-se Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-sk Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-sl Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-sr Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-sr_Latn Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-ss Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-sv Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-ta Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-tg Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-tr Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-uk Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-uz Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-vi Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-zh_CN Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde3-i18n-zh_TW Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde4-l10n-ar Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-bg Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-bs Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-ca Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-cat Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-cs Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-da Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-de Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-el Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-en_GB Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-es Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-et Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-eu Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-fa Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-fi Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-fr Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-ga Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-gl Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-he Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-hi Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-hr Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-hu Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-ia Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-is Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-it Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-ja Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-kk Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-km Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-ko Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-lt Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-lv Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-mr Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-nb Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-nds Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-nl Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-nn Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-pa Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-pl Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-pt Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-pt_BR Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-ro Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-ru Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-sk Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-sl Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-sr Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-sv Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-tg Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-tr Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-ug Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-uk Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-vi Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-wa Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-zh_CN Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kde4-l10n-zh_TW Update to KDE SC 4.11.5 2014-02-01 04:50:26 +00:00
kdebase3 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kdebindings-ruby Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kdelibdocs3 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kdelibs3 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kdelibs4 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
keylaunch Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
kkbswitch Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kmessage Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
konsole Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kterm Fix return types. 2013-03-02 17:54:52 +00:00
lablgtk Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
lablgtk1 Revision bump associated with the update of lang/ocaml to version 4.01. 2013-11-01 11:30:21 +00:00
labltk Revbump after updating tcl/tk. 2014-01-11 14:42:00 +00:00
lesstif Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
libdesktop-agnostic Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
libdrm Update to 2.4.58: 2014-10-01 09:39:30 +00:00
libfakekey Update MASTER_SITES and HOMEPAGE. 2013-10-15 12:11:28 +00:00
libFS Update to 1.0.6: 2014-03-31 08:30:05 +00:00
libgnomekbd Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
libICE Update to 1.0.9: 2014-06-07 06:53:34 +00:00
liboldXrandr Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
libSM Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
libunique Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
libunique3 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
libX11 Don't append LIBABISUFFIX to X11_LDFLAGS when using pkgsrc libX11. 2014-07-30 20:34:50 +00:00
libXau When creating fake .pc files, first check all possible pkgconfig 2014-03-10 11:56:02 +00:00
libXaw Update to 1.0.12: 2013-09-08 08:16:06 +00:00
libxcb Update to 1.11: 2014-08-05 18:38:02 +00:00
libXcomposite Restore detection of builtin "libXcomposite" which got broken when the 2013-12-14 09:54:52 +00:00
libXcursor Update to 1.14: 2013-05-30 07:05:21 +00:00
libXdamage Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
libxdg-basedir Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
libXdmcp When creating fake .pc files, first check all possible pkgconfig 2014-03-10 11:56:02 +00:00
libXevie Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
libXext Update to 1.3.3: 2014-07-24 06:32:36 +00:00
libxfce4gui Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
libxfce4menu Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
libxfce4util Add --disable-visibility on Darwin, fixes build. 2013-12-10 20:15:15 +00:00
libXfixes libXfixes-5.0.x require fixesproto>=5.0 to build. 2014-07-12 11:24:52 +00:00
libXfont Update to 1.4.8. 2014-05-16 08:36:21 +00:00
libXft Update to 2.3.2: 2014-06-06 07:05:52 +00:00
libXi Update to 1.7.4: 2014-07-19 06:12:44 +00:00
libXinerama set required xineramaproto version, per configure request. 2014-04-22 11:27:35 +00:00
libxkbcommon Update to 0.4.3: 2014-08-25 18:25:51 +00:00
libxkbfile Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
libxkbui Fixes: 2013-04-06 03:45:05 +00:00
libxklavier Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
libXmu Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
libXp Update to 1.0.2: 2013-05-31 08:24:51 +00:00
libXpm Update to 3.5.11: 2013-09-08 08:19:04 +00:00
libXprintUtil Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
libXrandr Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
libXrender Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
libXres Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
libXScrnSaver Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
libXt Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
libXTrap Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
libXtst Fix .so usage. Bump PKGREVISION. 2014-06-10 19:50:11 +00:00
libXv Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
libXvMC Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
libXxf86dga Update to 1.1.4: 2013-05-31 08:28:47 +00:00
libXxf86misc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
libXxf86vm Update to 1.1.3: 2013-05-31 08:29:38 +00:00
listres Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
luit Update to Thomas E. Dickey's version 2.0 of luit. 2013-05-26 20:08:54 +00:00
lxsession Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
matchbox-common Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
matchbox-desktop Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
matchbox-nest Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
matchbox-panel define u_int64_t on SunOS 2014-02-16 01:36:31 +00:00
matchbox-panel-manager Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
matchbox-themes-extra Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
mlterm Update mlterm to 3.3.8. 2014-08-16 04:10:44 +00:00
modeline Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
modular-xorg-server Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
motif Pull libiconv in for FreeBSD 9 to fix dependent packages. 2013-12-16 06:24:13 +00:00
mowitz Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
mrxvt Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
multi-aterm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
mxterm Remove patch that was merged into patch-ac 2013-07-25 08:26:41 +00:00
neXtaw Clean up libXaw handling. [1/2] 2013-01-15 16:21:34 +00:00
numlockx Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
ocaml-graphics Revision bump associated with the update of lang/ocaml to version 4.01. 2013-11-01 11:30:21 +00:00
oneko Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
openbsd-input-ws Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
openmotif Pull libiconv in for FreeBSD 9 to fix dependent packages. 2013-12-16 06:24:13 +00:00
p5-Alien-wxWidgets Apply patch from RT to force intended precedence. Add missing 2014-06-27 03:29:03 +00:00
p5-Clipboard Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-gtk2 Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Gtk2-Ex-FormFactory Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Tk Fix build with Perl 5.20.0. 2014-05-31 09:54:23 +00:00
p5-Wx Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Wx-Perl-ProcessStream Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-X11-Protocol Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
paragui Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
pixman Update to 0.32.6: 2014-07-12 14:51:04 +00:00
presentproto Import presentproto-1.0 as x11/presentproto. 2013-11-01 20:36:57 +00:00
printproto Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
py-gnome2 Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-gnome2-desktop Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-gnome2-extras Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-gtk2 Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-gtksourceview Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-kde4 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
py-kiwi Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-Pmw Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-Pmw2 Fix egg build. 2014-05-18 21:26:30 +00:00
py-qt4 Put back Mac distfile, lost in previous update. 2014-09-25 11:03:52 +00:00
py-qt4-qscintilla Fix linkage. For some reason, Qsci.so was not linked against 2014-08-22 09:08:39 +00:00
py-qwt-qt4 Import py27-qwt-qt4-5.2.0 as x11/py-qwt-qt4. 2014-10-02 03:47:28 +00:00
py-sip Update to 4.16.2: 2014-08-21 21:32:38 +00:00
py-Tk Set USE_GCC_RUNTIME=yes for packages which build shared libraries but do 2014-03-13 11:08:49 +00:00
py-vte Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-wxWidgets Update 2.8.10.1 to 2.8.12.0 2014-10-02 04:46:25 +00:00
py-xcbgen Update to 1.11, to match xcb-proto. 2014-08-05 18:37:29 +00:00
py-Xlib Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
qt3 Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:18:26 +00:00
qt3-docs Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:18:26 +00:00
qt3-libs Bump PKGREVISION for cups -> cups15 change. 2014-06-18 09:28:16 +00:00
qt3-mysql Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:18:26 +00:00
qt3-pgsql Bump PostgreSQL default version to 9.3. 2014-06-10 14:21:37 +00:00
qt3-qscintilla recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
qt3-tools Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:18:26 +00:00
qt4 Update qt4 packages to 4.8.6. 2014-07-22 17:01:51 +00:00
qt4-creator Add upper limit to the botan dependency. Bump revisions as needed. 2014-02-25 11:51:32 +00:00
qt4-docs Update qt4 packages to 4.8.6. 2014-07-22 17:01:51 +00:00
qt4-libs Remove SunOS BUILDLINK_TRANSFORM instances which remove -Wl,--* GNU ld 2014-08-28 10:58:18 +00:00
qt4-mng Update qt4 packages to 4.8.6. 2014-07-22 17:01:51 +00:00
qt4-mysql Update qt4 packages to 4.8.6. 2014-07-22 17:01:51 +00:00
qt4-pgsql Update qt4 packages to 4.8.6. 2014-07-22 17:01:51 +00:00
qt4-qdbus Update qt4 packages to 4.8.6. 2014-07-22 17:01:51 +00:00
qt4-qscintilla Update to 2.8.3. Split off common parts with py-qt4-qscintilla into 2014-08-21 21:35:06 +00:00
qt4-sqlite3 Update qt4 packages to 4.8.6. 2014-07-22 17:01:51 +00:00
qt4-tiff Update qt4 packages to 4.8.6. 2014-07-22 17:01:51 +00:00
qt4-tools When installing mkspecs using 'cp -R' specify what should happen 2014-08-19 10:31:14 +00:00
qt5 Changes 5.2.1: 2014-04-23 07:05:31 +00:00
qt5-dbus This is an ugly hack: 2014-05-01 12:50:39 +00:00
qt5-mysql Changes 5.2.1: 2014-04-23 07:05:31 +00:00
qt5-odbc Changes 5.2.1: 2014-04-23 07:05:31 +00:00
qt5-psql Bump PostgreSQL default version to 9.3. 2014-06-10 14:21:37 +00:00
qt5-qtbase Remove SunOS BUILDLINK_TRANSFORM instances which remove -Wl,--* GNU ld 2014-08-28 10:58:18 +00:00
qt5-qtdeclarative Two more files are installed now. Bump PKGREVISION. 2014-08-24 07:30:50 +00:00
qt5-qtdoc Changes 5.2.1: 2014-04-23 07:05:31 +00:00
qt5-qtgraphicaleffects Changes 5.2.1: 2014-04-23 07:05:31 +00:00
qt5-qtimageformats Changes 5.2.1: 2014-04-23 07:05:31 +00:00
qt5-qtlocation Changes 5.2.1: 2014-04-23 07:05:31 +00:00
qt5-qtmultimedia Recursive revbump from pulseaudio-5.0 2014-06-09 14:18:04 +00:00
qt5-qtquick1 Deal with the tools now getting installed. Bump revision. 2014-09-10 12:24:13 +00:00
qt5-qtquickcontrols Changes 5.2.1: 2014-04-23 07:05:31 +00:00
qt5-qtscript Changes 5.2.1: 2014-04-23 07:05:31 +00:00
qt5-qtsensors Changes 5.2.1: 2014-04-23 07:05:31 +00:00
qt5-qtserialport Changes 5.2.1: 2014-04-23 07:05:31 +00:00
qt5-qtsvg Changes 5.2.1: 2014-04-23 07:05:31 +00:00
qt5-qttools Add some missing binaries to PLIST (recent qmake change). 2014-08-29 20:33:47 +00:00
qt5-qttranslations Changes 5.2.1: 2014-04-23 07:05:31 +00:00
qt5-qtwebkit Fix an rpath using a buildlink transform. 2014-08-29 15:52:29 +00:00
qt5-qtx11extras Changes 5.2.1: 2014-04-23 07:05:31 +00:00
qt5-qtxmlpatterns Changes 5.2.1: 2014-04-23 07:05:31 +00:00
qt5-sqlite3 SunOS needs -D__EXTENSIONS__ for posix_fallocate(). 2014-07-14 10:41:13 +00:00
qwt Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
qwt-qt4 Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:18:26 +00:00
qwt6-qt4 Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:18:26 +00:00
qwtplot3d-qt4 Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:18:26 +00:00
randrproto Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
ratmen Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
razor-qt Recursive revbump from pulseaudio-5.0 2014-06-09 14:18:04 +00:00
recordproto Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
rendercheck Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
renderproto Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
renderproto9 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
rep-gtk2 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
resourceproto Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
rgb Update to 1.0.5: 2013-01-21 14:01:45 +00:00
rox-session Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
rox-wallpaper Bump applications PKGREVISIONs for python users that might be using 2014-05-17 16:10:41 +00:00
ruby-gnome2-gtk Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
ruby-gnome2-gtk3 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
ruby-gnome2-gtksourceview2 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
ruby-gnome2-gtksourceview3 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
ruby-gnome2-vte Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
ruby-tk Switch to use lang/tcl85 and x11/tk85 instead of lang/tcl and x11/tk. 2014-03-10 14:23:51 +00:00
ruby-wxruby Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
rxvt Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
rxvt-unicode SunOS needs explicit -lnsl and -socket as well as XPG6 for libptytty 2014-08-23 15:31:55 +00:00
sakura Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
scrnsaverproto Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
sessreg Update to 1.0.8: 2013-02-11 09:18:46 +00:00
setxkbmap Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
slock Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
space_dapp Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
speyes Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
ssystem Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
stalonetray Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
startup-notification Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
startup-notification010 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
tile Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
tint2 Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
tk Set USE_GCC_RUNTIME=yes for packages which build shared libraries but do 2014-03-13 11:08:49 +00:00
tk-BWidget Prefer bsdtar (in-tree) over external GPL3 gtar. 2013-01-11 00:15:39 +00:00
tk-Tix Fix build with TCL 8.6 2014-01-20 19:20:07 +00:00
tk85 Provide upper limit for the Tk dependency. No revbump as the only user 2014-04-17 20:26:51 +00:00
tkinfo Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
tktable Revbump after updating tcl/tk. 2014-01-11 14:42:00 +00:00
transset Update to 1.0.1: 2013-05-18 13:33:05 +00:00
trapproto Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
tzosdclock Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
unclutter Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
unicode-screensaver Update to 0.4. Changes: unknown, no change log. 2013-08-10 12:47:53 +00:00
videoproto Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
viewres Update to 1.0.4: 2013-01-21 13:17:47 +00:00
vte Properly handle the alt key in terminals. 2014-07-27 20:45:10 +00:00
vte029 Properly handle the alt key in terminals. 2014-07-27 20:45:10 +00:00
wdm Fix build on SunOS (needs explicit -lintl -lresolv, handle no sigsetmask()). 2014-08-21 15:52:00 +00:00
wmavgload Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
wmfire Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
wmfstatus Fix C99 inline usage. 2012-11-01 19:26:50 +00:00
wmweather Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:18:26 +00:00
worker Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
wterm Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
wxGTK24 Recursive revbump from pulseaudio-5.0 2014-06-09 14:18:04 +00:00
wxGTK26 Recursive revbump from pulseaudio-5.0 2014-06-09 14:18:04 +00:00
wxGTK26-contrib Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
wxGTK28 Recursive revbump from pulseaudio-5.0 2014-06-09 14:18:04 +00:00
wxGTK28-contrib Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
wxGTK30 Include libSM since it's needed. 2014-09-20 21:14:35 +00:00
wxhaskell Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
wxWindows-docs Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
x2x Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
x11perf Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
x11vnc Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
x3270 Use default font path. Bump PKGREVISION. 2014-06-01 18:47:24 +00:00
xaniroc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
XaoS Update XaoS to version 3.6. From Olaf 'Rhialto' Seibert, thanks! 2014-07-13 09:17:04 +00:00
xauth Update to 1.0.9: 2014-04-04 12:36:49 +00:00
xautolock Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
Xaw-Xpm Clean up libXaw handling. [1/2] 2013-01-15 16:21:34 +00:00
Xaw3d Clean up libXaw handling. [1/2] 2013-01-15 16:21:34 +00:00
xbacklight Update to 1.2.1: 2013-10-08 10:45:06 +00:00
Xbae Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xbanner Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xbindkeys Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xbindkeys-tk Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xbitmaps Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
xcalc Update to 1.0.5: 2013-01-21 13:18:31 +00:00
xcalib add int type on SunOS 2014-02-08 12:59:31 +00:00
xcb Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xcb-proto Update to 1.11: 2014-08-05 18:37:08 +00:00
xcb-util Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
xcb-util-cursor USE_TOOLS+=gm4, requires -I support. 2014-09-25 20:04:53 +00:00
xcb-util-image from xcb-image.pc, xcb and xcb-shm is required, so need to buildlink with x11/libxcb. 2014-04-06 06:10:28 +00:00
xcb-util-keysyms Update to 0.4.0: 2014-10-01 22:45:45 +00:00
xcb-util-renderutil Update to 0.3.9: 2014-06-13 07:41:15 +00:00
xcb-util-wm This package now requires GNU m4 features. 2014-02-26 09:47:27 +00:00
xcb-util036 +LICENSE; sort USE_TOOLS; 2013-12-11 12:23:53 +00:00
xclip Update to 0.12, provided by Leonardo Taccari in PR 48772. 2014-04-30 06:25:54 +00:00
xclipboard Import xclipboard-1.1.3 as x11/xclipboard, packaged for wip by larnor, 2013-09-06 08:16:18 +00:00
xcmiscproto Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
xcolors Use more static. Fix return types 2013-01-17 16:06:49 +00:00
xcolorsel Clean up libXaw handling. [1/2] 2013-01-15 16:21:34 +00:00
xcompmgr update to xcompmgr-1.1.6 for modular-xorg-server-1.12.4 2013-05-16 05:44:44 +00:00
xconsole Update to 1.0.6: 2013-07-19 05:53:07 +00:00
xcruise Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xcursor Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xcursorgen Update to 1.0.6: 2014-06-01 08:03:27 +00:00
xdaemon Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
xdaemon2 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xdesktopwaves Update to 1.3. Selected changes: 2013-09-03 17:54:41 +00:00
xdg-user-dirs Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xdialog Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xditview Add MAKE_FLAGS+=appdefaultdir=${PREFIX}/lib/X11/app-defaults so package 2013-06-09 12:12:26 +00:00
xdm Add missing dependency on xrdb. 2014-08-25 08:59:38 +00:00
xdm3d Add a distfile patch kit to mop up legacy C. Will hopefully fix the 2013-06-16 17:32:06 +00:00
xdpyinfo Update to 1.3.1: 2013-05-21 08:42:50 +00:00
xdriinfo update to xdriinfo-1.0.4 for modular-xorg-server-1.12.4 2013-05-16 05:45:57 +00:00
xearth Various MASTER_SITES-related fixes. 2013-04-06 14:09:32 +00:00
xephem Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
xev Update to 1.2.1: 2013-01-29 22:05:23 +00:00
xextproto Fix assignment. 2014-07-18 14:30:15 +00:00
xeyes Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xf86-input-acecad Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-input-keyboard Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-input-mouse Update to 1.9.1: 2014-08-12 20:29:26 +00:00
xf86-input-penmount Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-input-vmmouse Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-input-void Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-apm Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-ark Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-ast Update to 1.0.1. No summary of changes found, git log at 2014-08-17 17:43:58 +00:00
xf86-video-ati Update to 7.4.0: 2014-07-26 20:30:08 +00:00
xf86-video-ati6 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-chips Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-cirrus Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-dummy Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-fbdev Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-glint Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-i128 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-i740 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-intel Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-mach64 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-mga Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-neomagic Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-newport Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-nv Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-openchrome Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-r128 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-rendition Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-s3 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-s3virge Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-savage Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-siliconmotion Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-sis Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-suncg3 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-suncg14 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-sunffb Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-tdfx Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-tga Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-trident Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-tseng Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-vesa Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86-video-vmware Add 2560x1440 to supported resolutions. 2014-08-10 09:08:21 +00:00
xf86-video-wsfb Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xf86bigfontproto Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
xf86dgaproto Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
xf86driproto No reference to header files from neither glproto nor libdrm, just libpciaccess. 2014-04-29 06:30:26 +00:00
xf86miscproto Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
xf86vidmodeproto Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
xfce4-clipman-plugin Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xfce4-desktop Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xfce4-exo Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
xfce4-eyes-plugin Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xfce4-gtk2-engine Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xfce4-notes-plugin Fix build on SunOS (needs explicit -lX11 -lm). 2014-08-21 14:33:46 +00:00
xfce4-panel Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xfce4-places-plugin Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xfce4-screenshooter-plugin Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xfce4-session Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xfce4-settings Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xfce4-terminal Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xfce4-utils Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
xfd Update to 1.1.2: 2013-07-17 21:47:55 +00:00
xfishtank Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
Xfixes Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xflame Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xfontsel Update to 1.0.5: 2013-05-18 13:34:07 +00:00
xforms Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
xfstt Use default font path. Bump PKGREVISION. 2014-06-01 18:47:24 +00:00
xfwp Will MAINTAIN as well for same reason as x11/xf86-video-dummy. 2014-01-06 02:16:02 +00:00
xgamma Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xgas Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xglobe recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
xgrk Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xhangglider Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xhost Update to 1.0.6: 2013-07-17 21:48:49 +00:00
xicc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xineramaproto Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
xinit Update to 1.3.4: 2014-09-11 21:35:24 +00:00
xinput update to xinput-1.6.0 for modular-xorg-server-1.12.4 2013-05-16 05:47:01 +00:00
xjman Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xkbcomp xproto>=7.0.17 is directly required to build. 2014-07-12 12:03:42 +00:00
xkbd Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xkbdata Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xkbevd Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xkbprint Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xkbset Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
xkbutils Update to 1.0.4: 2013-02-11 08:59:57 +00:00
xkeyboard-config Update to 2.12: 2014-05-28 05:55:22 +00:00
xkeycaps Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xkill Update to 1.0.4: 2013-09-09 09:34:49 +00:00
xless Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xload Update to 1.1.2: 2013-08-04 07:28:57 +00:00
xlockmore Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
xlockmore-lite Fix a bug in the last commit, where the resource file was read out of the 2012-12-14 15:54:30 +00:00
xlogo Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
xlogout Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xlsatoms Will MAINTAIN for food. 2013-05-28 03:47:57 +00:00
xlsclients Update to 1.1.3: 2013-09-09 09:38:32 +00:00
xlsfonts Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xlt Link network libs on SunOS 2014-02-24 15:53:22 +00:00
xlupe Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xmag Update to 1.0.5: 2013-01-21 13:19:53 +00:00
xman Fix tautology to the intended check. Bump revision. 2014-05-18 21:26:02 +00:00
xmascot Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xmessage Update to 1.0.4: 2013-01-21 13:20:45 +00:00
XmHTML Edited DESCR in the case of: 2013-04-07 20:49:31 +00:00
xmindpath 'Please use ${ECHO} instead of "echo".' 2013-04-06 14:58:18 +00:00
xmms-osd Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
xmodmap Update to 1.0.8: 2013-09-09 09:39:52 +00:00
xmon Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xmore Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xmountains Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xmove Fix void usage. Follow one patch per file rule. 2012-12-24 21:16:40 +00:00
xmx Rev the distfile patch: 2014-09-12 05:22:09 +00:00
xneko Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xnodecor Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xorg-cf-files Ensure RpathLoadFlags is used for all shared libraries, avoid hack for 2014-07-28 14:38:17 +00:00
xosd Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xp Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xpad Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xpaste Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xpenguins Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xphoon Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xplanet Bump PKGREVISION for netpbm update. 2014-09-08 21:24:44 +00:00
xplsprinters Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xpmicons Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xpmroot Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xpns Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xpostit Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xprehashprinterlist Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xprop Update to 1.2.2: 2013-08-09 09:21:24 +00:00
xproto Move touch to pre-configure to increase chance it'll work. 2014-04-19 10:09:50 +00:00
xproxymanagementprotocol Search for pkgconfig files in lib${LIBABISUFFIX} and share directories 2014-03-10 11:05:51 +00:00
xrandr Update to 1.4.3: 2014-08-02 06:52:32 +00:00
xrdb Update to 1.1.0: 2013-09-09 09:42:22 +00:00
xrefresh Update to 1.0.5: 2013-05-18 13:35:05 +00:00
Xrender When creating fake .pc files, first check all possible pkgconfig 2014-03-10 11:56:02 +00:00
xrestop Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xscope Update to 1.4.1: 2014-06-07 06:54:41 +00:00
xscreensaver Update x11/xscreensaver to 5.29. 2014-08-12 15:57:13 +00:00
xscreensaver-demo Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xscribble Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xscript Disable return warning for Clang. 2012-12-24 21:17:12 +00:00
xsel Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xservers
xset Update to 1.2.3: 2013-08-09 09:23:13 +00:00
xsetroot Update to 1.1.1: 2013-01-23 07:57:45 +00:00
xsm Update to 1.0.3: 2013-02-11 09:09:53 +00:00
xsnow Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xstdcmap Will MAINTAIN for food. 2013-05-28 03:47:57 +00:00
xteddy Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xteddy2 Bump PKGREVISION for netpbm update. 2014-09-08 21:24:44 +00:00
xterm Update to 311: 2014-10-01 11:13:38 +00:00
xtermset Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xtoolwait Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xtrans Update to 1.3.5: 2014-10-01 09:40:02 +00:00
xtruss Import xtruss-10030 as x11/xtruss. 2014-08-09 16:29:52 +00:00
xvattr Set LICENSE. 2013-06-18 19:36:51 +00:00
xvidcap Switch to ffmpeg1 instead of ffmpeg. 2014-08-11 23:09:44 +00:00
xvidcap-gtk2 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xvidtune Update to 1.0.3. Only autoconf/automake-related changes. 2013-04-23 18:45:15 +00:00
xview
xview-clients Pass -R with -Wl, prefix. 2013-10-20 17:46:52 +00:00
xview-config Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xview-lib Avoid conflicts with SunOS regexp.h. 2013-05-20 11:35:22 +00:00
xvinfo Update to 1.1.2: 2013-02-11 09:11:17 +00:00
xvkbd Update to 3.5. Changes: 2013-10-17 16:44:40 +00:00
xwatchwin Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xwd Update to 1.0.6: 2013-08-09 09:25:51 +00:00
xwininfo Fix following problem for X11_TYPE= (undefined), NetBSD/amd64 6.1.2. 2013-10-22 14:33:03 +00:00
xwit Welcome the void 2012-11-19 23:12:02 +00:00
xworld Fix build on SunOS. Initial patch from Thomas Merkel. 2013-10-24 10:10:21 +00:00
xwrits Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xwud Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
xxkb Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-29 05:06:05 +00:00
zenity Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
Makefile +py-qwt-qt4 2014-10-02 03:49:03 +00:00