pkgsrc/x11
dbj a8db23ee88 x11/fltk13: update to fltk-1.3.4
CHANGES IN FLTK 1.3.4					RELEASED: Nov 11 2016

Bug fixes and other improvements

	- Fix test/native-filechooser help display artifact (STR #3349).
	- MacOS: fix a crash when closing a fullscreen window.
	- Accept empty Fl_Pixmap in Fl_RGB_Image c'tor (STR #3348).
	- MacOS: fix drawing error when a window containing a hidden subwindow
	  is changed to fullscreen (error visible with the tabs test program).
	- MacOS: fix possible crash when enabling fullscreen in test/scroll.
	- Add a snapshot of known STR's and RFE's (KNOWN_BUGS.html).

CHANGES IN FLTK 1.3.4rc3				RELEASED: Oct 31 2016

	Bug fixes and other improvements

	- Fix string truncation in fluid (STR #2722 continued).
	- MacOS: fix a small problem where the Command-Quit menu hotkey
	  may not work if Fl_Native_File_Chooser is used before any
	  window is shown.

CHANGES IN FLTK 1.3.4rc2				RELEASED: Oct 24 2016

	Bug fixes and other improvements

	- Make sure the "File Systems" menu item of Fl_File_Chooser
	  lists "/" as the first mounted file system (Linux/Unix platform).
	- Added line numbers to fluid Edit -> Show Source Code viewer.
	- Improved fluid's template handling (STR #3335).

CHANGES IN FLTK 1.3.4rc1				RELEASED: Oct 17 2016

	New features and extensions

	- Added support for Mac OS 10.11 "El Capitan" and 10.12 "Sierra".
	- Added full support of true subwindows to the Mac OS X platform.
	  Window nesting to any depth is possible. An Fl_Gl_Window window or
	  subwindow can contain Fl_Window's as subwindows.
        - Fluid now supports external editors (STR#3213)
	  See: Edit -> GUI Settings -> Use external editor
	- Added method Fl_Widget::is_label_copied().
	- Added methods Fl_Copy_Surface::w(), Fl_Copy_Surface::h(),
	  and Fl_Copy_Surface::draw_decorated_window().
	- Added method Fl_Image_Surface::draw_decorated_window().
	- Added method Fl_Shared_Image *Fl_Image_Surface::highres_image()
	  to draw into a high-resolution bitmap image (Mac OS X only).
	- Added support for OpenGL version 3 and later.
	- Added method Fl_Mac_App_Menu::custom_application_menu_items()
	  allowing customization of the application menu (Mac OS X only).
	- Added 'fluid -u' command-line switch to upgrade fluid files in
	  batch mode. This option opens a fluid ('.fl') file and saves it
	  overwriting the old file with the current syntax and library version
	  number. Use with care (input file is overwritten unconditionally).
	- Added FL_ZOOM_GESTURE gesture for OS X (only). Needs implementation
	  on other platforms.
	- Added FL_ABI_VERSION, FL_API_VERSION, Fl::abi_version(), and
	  Fl::api_version(). Constants can be used to determine the compiled
	  FLTK version. Functions can be used to find the linked library version.
	- Added Fl::abi_check() method to test if the runtime (linked)
	  ABI version is correct.
	- Added Fl_Image::fail() to test if an image was loaded successfully
	  to allow for easier error detection when loading images (STR #2873).
	- Added line numbers to fluid's source code viewer for New -> Code

	New configuration options (ABI version)

	- FLTK's ABI version can now be configured with 'configure', CMake, or
	  by editing a supplied file when using the bundled IDE projects.
	  See documentation in README.abi-version.txt.

	1.3.4 ABI FEATURES

	- Added deactivated user icon to Fl_Tree.
	- Added Fl_Shared_Image::scale(width, height) which gives a shared
	  image its own drawing size, independently of the size of the
	  underlying image. This improves image drawing on high resolution
	  surfaces such as Laser printers, PDF files, and Apple retina displays.

	Other improvements

	- Configure now correctly sets HAVE_* variables only if both the
	  library and the header files were found. The configuration process
	  is aborted if Xft was requested explicitly with --enable-xft and
	  Xft was not found. The configuration summary now shows _found_
	  options as opposed to requested options.
	- Improved drawing of rounded box (STR #2943).
	- Full support of Apple 'retina' displays for which one drawing unit
	  corresponds to two pixels.
	- The Mac OS X platform no longer uses the deprecated AGL
	  (Apple GL library) to draw OpenGL data. Instead, it uses standard
	  Cocoa APIs. This allows FLTK to support drawing GL scenes at high
	  resolution when an Fl_Gl_Window is mapped to a 'retina' display.
	- Added Fl_Gl_Window::pixel_w(), Fl_Gl_Window::pixel_h(), and
	  Fl_Gl_Window::pixels_per_unit() useful for high resolution OpenGL windows.
	- fl_read_image() now captures all pixels within the rectangle
	  described by its arguments, whether they belong to a GL scene
	  or not (STR #3142). It also captures subwindows of GL windows.
	- Fl::delete_widget() now hides the widget or window immediately
	  (i.e. when called) - only destruction is delayed as before.
	- FLTK header files don't expose X11 definitions in user code any more
	  unless requested by including FL/x.H explicitly or implicitly.
	- The PostScript code output when printing images under Linux/Unix
	  is now much smaller by using lossless compression techniques.
	- The Linux/Unix printer dialog now uses BSD-style printing commands
	  (lpr/lpq) when SystemV-style commands (lp/lpstat) are not available.
	- Drawing alpha-blended images under X11 is now accelerated with
	  Xrender.
	- The font used for the FL_COURIER font family was changed on the Mac OS X
	  platform from 'Courier New' to 'Courier' because it was too thin.
	- Text drawing on the Mac platform supports Unicode 'variation selectors'
	  in the range [0xFE00-0xFE0F].
	- Added a Mac OS implementation of Fl_Window::wait_for_expose() that
	  became necessary with Mac OS 10.10 "Yosemite".
	- Added the libfltk target to the Xcode project producing a static
	  version of the FLTK library (Mac OS X).
	- Restored the possibility to call Fl::set_font() before main() starts.
	- Allow using the --enable-x11 configure option on the Mac OS platform
	  which produces an X11 version of the FLTK library (don't use unless
	  you know what you're doing).
	- FLTK code and fluid-generated code can be used in static initializers.
	- Added light gray separator line to fluid's widget browser (STR #2997).
	- Improved tooltip behavior for huge tooltips: remove flicker, support
	  key/mouse dismiss (STR #2650).
	- Modifier key names displayed in shortcut labels can now be localized.
	  See documentation of fl_shortcut_label(). You can set modifier key
	  names for Ctrl, Alt, Shift, and Meta by assigning global string
	  pointers to your translated modifier key names.
	- Many documentation improvements and fixes.
	- Fixed many compiler warnings (STR #2988).
	- Fluid now generates code with less compiler warnings (STR #2813).
	- Many CMake improvements and fixes. Note: CMake is mostly operating
	  now, but not yet recommended for production use. Please test and
	  report issues.
	- Updated bundled zlib from 1.2.5 to 1.2.8.
	- Updated bundled libjpeg from jpeg-8c to jpeg-9a.

	Bug fixes

	- Fix potential crash when using keyboard navigation on Fl_Tabs
	  widget without children (STR #3333).
	- Fix potential crash if Fl_Window::icon(NULL) was called to clear
	  (reset) a window icon. This is now legal and documented behavior.
	  The same applies to Fl_Window::default_icon().
	- Allow widget callback to be NULL, i.e. no callback (STR #2835).
	- Fixed Fl_Help_View buffer overflow (STR #3275).
	- Fl_Browser now correctly adjusts its scrollbars when the default
	  text size is changed with textsize(int) (STR #3057).
	- Fixed Fl_Text_Display/Fl_Text_Editor slow scrolling, line number
	  display, wrap mode "hiding" text behind scrollbars, and more
	  scrollbar handling (alignment) (STR #3272).
	- Fixed valgrind warning (uninitialized variable) in Fl_Window.
	  Visible only with FLTK_ABI_VERSION >= 10303, since FLTK 1.3.3.
	- Fixed Windows drag'n'drop not showing insert position if the drop
	  target is inside the same window or process (STR #3209).
	- Fixed undefined reference building shared cairo library (STR #3276).
	- Fixed Fl_Browser if text argument to some methods is NULL (STR #3269).
	- Fixed missing image release in fluid (STR #2840).
	- Fixed out-of-bounds memory access in fluid (STR #3263).
	- Fixed trailing white space in fluid .fl files (STR #3239).
	- Several box types were not drawn correctly when deactivated.
	  The background color for deactivated widgets is now correct:
	  fl_inactive(color()) (STR #2907).
	- Fix inconsistent interpretation of ld() in image handling
	  (STR #3308). This is a minor issue since ld() is usually 0 or
	  w()*d(). Documentation has been fixed, and ld() handling is now
	  consistent in Fl_(RGB_)Image and fl_draw_image() and friends. See
	  documentation of Fl_Image and Fl_RGB_Image for more information.
	- Fixed Fl_Pixmap (background) drawing to respect the clip region
	  (STR #3206).
	- Fixed reading .pbm image files: 1 is now interpreted as black,
	  and images whose width are a multiple of 8 are correctly read.
	  Note: if you relied on the faulty behavior you may need to fix
	  your image files.
	- Restored window background drawing, particularly the 'plastic'
	  scheme's background (STR #3059). This was a regression since
	  FLTK 1.3.0.
	- Prevent sending (FL_SHORTCUT) events to inactive widgets (STR #3216).
	- Fixed button label clipping (STR #3237).
	- Fixed Fl_Menu_::item_pathname() handling of descending submenu
	  pointers (STR #3177).
	- Fl_Text_Display: style buffer colors are no longer manipulated by
	  fl_contrast() for normal text drawing (fltk.coredev thread started
	  04/08/15, Subject: "RFC: Fl_Text_Display style buffer color weirdness")
	- Fl_Tree::deactivate() now affects draw color of items (must have
	  ABI 1.3.3 or higher enabled). For icons to draw deactivated,
	  enable ABI 1.3.4. (test/tree has a 'deactivate tree' button)
	- Fl_Tree::find_item() did not find items if the pathname contained
	  identical strings (STR #3234).
	- Fixed possible bad border effect when a set of radio menu items
	  is located first in its menu (STR #3176): Fl_Menu_Item::set_only()
	  is deprecated and replaced by Fl_Menu_::set_only(Fl_Menu_item*).
	- Restore the correct state of mouse buttons and keyboard modifier keys
	  after closing a file or printer dialog (STR #3221).
	- Fix for deactivate colors issue with Fl_Text_Display/Editor (STR #3219).
	- Fixed issue with MSWindows platform where the program kept running
	  after closing all its windows (STR #3165).
	- Fix potential buffer overflow (MSWindows: BEX64 error) and problem with
	  MSWindows environment variables "HOME"(MinGW) vs. "UserProfile"(DOS)
	- Fix issue with MSWindows platform where a window would decrease
	  in size after each close/open (STR #3167).
	- Fix undefined reference XGetUtf8FontAndGlyph (STR #3191).
	- Fix potential keyboard hangup (STR #3192).
	- Fix for: .xbm images were not previewed (STR #3131).
	- Fixed crash on Mac platform when resizing a not yet shown() Fl_Gl_Window.
	- Fixed potential Windows GDI leak (STR #3254).
	- Fixed Linux/Unix potential program hang when dialog pops up while
	  a menu is open (STR #3179).
	- Fixed a crash when a Unix/Linux program calls take_focus() before any
	  window has been show()n.
	- Fixed an error on the Mac platform when drawing to an Fl_Image_Surface
	  object without using the Fl_Image_Surface::draw() method.
	- Fixed STR #3268 where a fullscreen window could become relocated
	  behind the menu bar and dock (Mac OS only).
	- Fixed STR #3207: ^C not working when numlock or capslock is on.
	- Fixed code editor in Fluid (STR #3184).
	- Fixed a potential hangup of the Fl::awake() queue under Windows if
	  a window is resized or moved while the Fl::awake() message is sent
	  (STR #3143).
	- Fixed a regression: restore the possibility to call
	  fl_draw_image(buf,X,Y,W,H,D,L) with negative D and/or L arguments.
	- Fixed overflow in Fl_Valuator::precision(int) to 0...9 (STR #3280).
2018-07-13 04:24:39 +00:00
..
9term Comment out non-working HOMEPAGE. 2017-07-30 22:41:36 +00:00
alacarte extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
antiright Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
appmenu-qt Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
appres appres: update to 1.0.5. 2018-03-05 09:27:12 +00:00
arandr extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
asnap Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
aterm Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
autocutsel Whitespace. 2015-12-29 04:54:34 +00:00
avant-window-navigator *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
bbapm Follow some http -> https redirects. 2017-08-01 14:58:51 +00:00
beforelight Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
bitmap Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
blt Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
c++-gtk-utils Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
caribou x11/caribou: import caribou-0.4.21 2018-06-11 23:58:04 +00:00
clipit Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
clisp-gtk2 Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
clisp-mit-clx Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
clisp-new-clx Fix rpath to X11 libs. 2016-03-29 21:58:40 +00:00
compton MAKEFLAGS -> MAKE_FLAGS (pkgsrc guide 22.1) 2016-03-12 21:53:39 +00:00
deforaos-integration Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
deforaos-keyboard Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
deforaos-libdesktop Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
deforaos-locker Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
deforaos-notes Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
deforaos-panel Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
desklaunch Follow some redirects. 2017-09-03 08:53:04 +00:00
deskmenu Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
devilspie Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
dmenu dmenu: Update x11/dmenu to 4.8 2018-03-15 10:58:24 +00:00
docker Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
driconf extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
dtx11session
dunst Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
dxpc xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
ede Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
editres editres: update to 1.0.7. 2018-03-05 09:25:54 +00:00
eekboard Recursive PKGREVISION bump for vala-0.40. 2018-04-17 04:25:31 +00:00
efltk fix for gcc 6 2018-04-20 01:36:00 +00:00
elementary revbump for boost-libs update 2018-04-29 21:31:17 +00:00
elementary-icon-theme Comment out some dead HOMEPAGEs. 2017-08-01 17:40:08 +00:00
enlightenment revbump for boost-libs update 2018-04-29 21:31:17 +00:00
eterm Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
evieext Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
fast-user-switch-applet Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
fbdesk Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
filerunner Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
fixesproto4 xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
fltk fltk: Use std::min correctly. 2018-05-17 10:37:23 +00:00
fltk2 Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
fltk13 x11/fltk13: update to fltk-1.3.4 2018-07-13 04:24:39 +00:00
fox Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
frameworkintegration Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
fspanel Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
ftmenu Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
fvwm-wharf Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
gcolor2 Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gdm *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
ggiterm Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
gnome-applets extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
gnome-control-center - Move libgnomekbd to libgnomekbd2 for older Gnome2 packages 2018-06-01 17:04:18 +00:00
gnome-desktop Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gnome-desktop-sharp *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
gnome-desktop3 Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gnome-mag extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
gnome-panel extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
gnome-screensaver - Move libgnomekbd to libgnomekbd2 for older Gnome2 packages 2018-06-01 17:04:18 +00:00
gnome-session Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gnome-sharp *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
gnome-terminal extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
gnome-themes Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gnome-themes-extras Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gnopernicus Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gnustep-back revbump after icu update 2018-04-14 07:33:52 +00:00
gnustep-gui revbump after icu update 2018-04-14 07:33:52 +00:00
gnustep-preferences revbump after icu update 2018-04-14 07:33:52 +00:00
grandr_applet Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gromit Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gselt Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gst-plugins0.10-x11
gst-plugins1-x11
gtk Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
gtk+extra Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
gtk-mac-integration Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gtk-sharp *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
gtk2 extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
gtk2+extra gtk2+extra: Ensure _sqrt() is static. 2018-05-17 10:47:52 +00:00
gtk2-chtheme Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gtk2-engines Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gtk2-engines-bluecurve Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gtk2-engines-murrine Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gtk2-theme-switch Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gtk3 gtk3: PKGREVISION++ for cups change 2018-07-02 17:25:29 +00:00
gtk3-engines-unico Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gtkada *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
gtkdatabox Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gtkglarea Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
gtkglarea2 Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gtkmm Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gtkmm-utils Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gtkmm3 gtkmm3 requires recent c++ to build. 2018-05-14 12:18:21 +00:00
gtksourceview Add p11-kit to gnutls/bl3.mk and bump dependencies. 2018-04-17 22:29:31 +00:00
gtksourceview-sharp2 Add p11-kit to gnutls/bl3.mk and bump dependencies. 2018-04-17 22:29:31 +00:00
gtksourceview2 Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gtksourceview3 gtksourceview3: update to 3.24.8. 2018-06-24 10:25:02 +00:00
gtksourceview4 gtksourceview4: update to 4.0.2. 2018-06-24 10:49:44 +00:00
gtksourceviewmm Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gtkstep Added missing LICENSE variable (gnu-lgpl-v2). 2018-01-02 22:51:36 +00:00
gtkterm2 Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
gxmessage Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
hanterm Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
hot-babe Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
hs-X11 Bump PKGREVISION for hs-dlist || hs-utf8-string 2016-01-04 12:24:24 +00:00
hs-X11-xft Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
hsetroot hsetroot: Update HOMEPAGE, set LICENSE 2017-09-19 08:21:10 +00:00
hyena *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
i3lock Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
iceauth xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
ico ico: update to 1.0.5. 2018-03-10 22:24:02 +00:00
imwheel Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kactivities revbump for boost-libs update 2018-04-29 21:31:17 +00:00
kactivities-stats Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
kactivities5 Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
kconfigwidgets kconfigwidgets: update to 5.47.0 2018-06-21 07:13:22 +00:00
kde-baseapps4 revbump for boost-libs update 2018-04-29 21:31:17 +00:00
kde-runtime4 Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
kde-workspace4 *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
kde4-l10n-ar Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-bg Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-bs Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-ca Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-cat Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-cs Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-da Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-de Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-el Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-en_GB Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-es Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-et Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-eu Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-fa Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-fi Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-fr Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-ga Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-gl Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-he Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-hi Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-hr Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-hu Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-ia Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-is Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-it Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-ja Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-kk Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-km Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-ko Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-lt Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-lv Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-mr Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-nb Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-nds Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-nl Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-nn Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-pa Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-pl Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-pt Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-pt_BR Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-ro Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-ru Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-sk Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-sl Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-sr Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-sv Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-tr Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-ug Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-uk Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-wa Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-zh_CN Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kde4-l10n-zh_TW Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
kded kded: update to 5.47.0 2018-06-21 07:14:55 +00:00
kdelibs4 revbump for boost-libs update 2018-04-29 21:31:17 +00:00
kdelibs4support Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
kdesignerplugin Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
keybinder Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
keybinder3 x11/keybinder3: import keybinder3-0.3.2 2018-06-12 00:18:31 +00:00
keylaunch Follow some redirects. 2017-09-03 08:53:04 +00:00
kglobalaccel Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
kguiaddons kguiaddons: update to 5.47.0 2018-06-21 07:20:27 +00:00
kinit Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
kirigami2 kirigami2: update to 5.47.0 2018-06-21 07:26:15 +00:00
kitemviews Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
kjobwidgets Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
konsole revbump for boost-libs update 2018-04-29 21:31:17 +00:00
kterm Requires termcap. 2017-05-09 14:18:46 +00:00
ktextwidgets ktextwidgets: update to 5.47.0 2018-06-21 07:45:19 +00:00
kwidgetsaddons Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
kwindowsystem Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
kxmlgui kxmlgui: update to 5.47.0 2018-06-21 07:53:54 +00:00
lablgtk1 Revbump associated with the upgrade of lang/ocaml 2018-04-13 13:55:27 +00:00
labltk Revbump associated with the upgrade of lang/ocaml 2018-04-13 13:55:27 +00:00
lbxproxy xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
lesstif Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
libdesktop-agnostic extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
libdrm libdrm builtin.mk: Add the rest of libdrm_ pkgconfig files, too. 2018-06-01 15:05:43 +00:00
libfakekey Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
libFS xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libgnomekbd - Move libgnomekbd to libgnomekbd2 for older Gnome2 packages 2018-06-01 17:04:18 +00:00
libgnomekbd2 Adjust PKGNAME, thanks leot@! 2018-06-01 17:13:48 +00:00
libICE xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libkactivities4 revbump for boost-libs update 2018-04-29 21:31:17 +00:00
liblbxutil xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libmatekbd Update libmatekbd to 1.20.1: 2018-05-14 12:44:08 +00:00
liboldXrandr xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libSM xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libunique Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
libunique3 Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
libX11 xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXau xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXaw xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXaw3d libXaw3d: update to 1.6.3. 2018-06-19 07:14:07 +00:00
libxcb libxcb: update to 1.13. 2018-03-05 10:20:55 +00:00
libXcomposite xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXcursor xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXdamage xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libxdg-basedir Comment out dead sites. 2017-08-16 20:45:30 +00:00
libXdmcp xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXevie xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXext xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libxfce4gui Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
libxfce4ui Add vendor info and tiny buildlink fix. 2018-05-27 14:58:19 +00:00
libxfce4util Update: 2018-05-15 22:42:41 +00:00
libXfixes xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXfont xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXfont2 xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXft Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
libXi xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXinerama libXinerama: update to 1.1.4. 2018-07-07 07:48:24 +00:00
libxkbcommon libxkbcommon: update to 0.8.0. 2018-01-10 10:43:27 +00:00
libxkbfile xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libxkbui Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
libxklavier Revert buildtool.mk additions for glib-{mkenums,genmarshal} using packages 2017-10-15 23:19:10 +00:00
libXmu xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXp Use OPSYSVARS. 2016-02-26 10:57:45 +00:00
libXpm xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXpresent xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXprintAppUtil Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
libXprintUtil configure insists that it wants a C++ preprocessor, so let it for now 2016-03-12 09:27:19 +00:00
libXrandr xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXrender xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXres xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXScrnSaver libXScrnSaver: update to 1.2.3. 2018-07-07 07:50:45 +00:00
libxshmfence xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXt xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXTrap xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXtst xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXv xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXvMC xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXxf86dga xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
libXxf86misc libXxf86misc: update to 1.0.4. 2018-07-07 07:52:08 +00:00
libXxf86vm xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
listres listres: update to 1.0.4. 2018-03-05 09:28:57 +00:00
lua-keybinder Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
luit Updated luit to 2.0.20160508. 2016-05-18 11:33:57 +00:00
lxappearance Update lxappearance to 0.6.3. No changelogs available. 2018-05-22 15:58:32 +00:00
lxde-common Handle sysconfdir properly. 2018-05-27 14:24:45 +00:00
lxinput Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
lxlauncher Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
lxrandr Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
lxsession *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
lxterminal Update to 0.3.1: 2018-05-22 16:05:18 +00:00
matchbox-common Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
matchbox-desktop Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
matchbox-nest Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
matchbox-panel Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
matchbox-panel-manager Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
matchbox-themes-extra Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
mate-applets mate-applets: remove hal option and dependency 2018-06-02 16:40:20 +00:00
mate-control-center Update mate-control-center to 1.20.2: 2018-05-14 12:53:56 +00:00
mate-desktop Patch to use better defaults. 2018-06-11 23:43:40 +00:00
mate-indicator-applet revert mistake 2018-06-01 14:27:17 +00:00
mate-menus Update to 1.20.0: 2018-05-14 13:04:51 +00:00
mate-panel Update mate-panel to 1.20.1: 2018-05-14 13:08:26 +00:00
mate-screensaver mate-screensaver: Make the non-pam build actually work. 2018-06-26 08:58:49 +00:00
mate-session-manager Update to 1.20.0: 2018-05-14 13:15:50 +00:00
mate-settings-daemon Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
mate-terminal Update to 1.20.0: 2018-05-14 13:19:24 +00:00
mcookie libuuid, libblkid, mcookie: updated to 2.31 2017-12-08 08:03:35 +00:00
mkcomposecache Reset maintainer 2017-09-16 19:26:41 +00:00
mlterm mlterm: update to 3.8.6. 2018-06-22 14:17:15 +00:00
modeline Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
modular-xorg-server modular-xorg-server: Avoid mkostemp on SunOS. 2018-07-05 14:28:11 +00:00
modular-xorg-server112 xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
modular-xorg-xephyr xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
modular-xorg-xquartz xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
motif Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
mowitz Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
mozo extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
mrxvt Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
mxterm mxterm: comment out dead sites 2017-11-15 22:14:31 +00:00
neXtaw Whitespace. 2015-12-29 04:54:34 +00:00
numlockx Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
ocaml-graphics *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
ocaml-lablgtk Add p11-kit to gnutls/bl3.mk and bump dependencies. 2018-04-17 22:29:31 +00:00
oneko Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
p5-Alien-wxWidgets *: PKGREVISION bump for wxGTK30 switch from gtk2 to gtk3 2018-04-29 05:46:35 +00:00
p5-Clipboard Fix build with perl 5.26 2017-06-12 08:26:31 +00:00
p5-gtk2 Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
p5-Gtk2-Ex-FormFactory Follow some redirects. 2017-09-03 08:53:04 +00:00
p5-Tk *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
p5-Wx *: PKGREVISION bump for wxGTK30 switch from gtk2 to gtk3 2018-04-29 05:46:35 +00:00
p5-Wx-Perl-ProcessStream *: PKGREVISION bump for wxGTK30 switch from gtk2 to gtk3 2018-04-29 05:46:35 +00:00
p5-X11-Protocol Recursive revbump from lang/perl5 5.26.0 2017-06-05 14:24:48 +00:00
paragui Comment out dead MASTER_SITES/HOMEPAGEs. 2017-09-03 08:36:49 +00:00
pixman *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
plasma-framework Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
printproto xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
proxymngr xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
py-gnome2 extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-gnome2-desktop extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-gnome2-extras extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-gtk2 extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-gtksourceview extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-kde4 revbump for boost-libs update 2018-04-29 21:31:17 +00:00
py-keybinder extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-kiwi extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-Pmw extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-Pmw2 Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
py-pyperclip py-pyperclip: Update x11/py-pyperclip to 1.6.0 2018-02-26 11:38:00 +00:00
py-qt4 Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
py-qt4-qscintilla py-qt4-qscintilla: fix buildlink3.mk depends pattern 2018-04-22 22:11:47 +00:00
py-qt5 Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
py-qwt-qt4 extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-sip py-sip: updated to 4.19.8 2018-04-14 20:07:11 +00:00
py-terminator extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-terminator-plugins Fix distinfo for python 3.x in py-terminator-plugins 2016-12-22 23:52:02 +00:00
py-Tk py-Tk: Darwin does not need libX11 2018-04-03 18:22:47 +00:00
py-vte extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-wxWidgets extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-xcbgen py-xcbgen: update to 1.13. 2018-03-05 10:20:24 +00:00
py-Xlib Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
qqc2-desktop-style qqc2-desktop-style: update to 5.47.0 2018-06-21 08:00:05 +00:00
qt4
qt4-creator Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
qt4-docs Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
qt4-libs Add p11-kit to gnutls/bl3.mk and bump dependencies. 2018-04-17 22:29:31 +00:00
qt4-mng Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
qt4-mysql Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
qt4-pgsql Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
qt4-qdbus Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
qt4-qscintilla Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
qt4-sqlite3 revbump after icu update 2018-04-14 07:33:52 +00:00
qt4-tiff Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
qt4-tools Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
qt5 qt5: updated to 5.11.1 2018-06-22 06:29:20 +00:00
qt5-mysql qt5: updated to 5.11.1 2018-06-22 06:29:20 +00:00
qt5-odbc qt5: updated to 5.11.1 2018-06-22 06:29:20 +00:00
qt5-psql qt5: updated to 5.11.1 2018-06-22 06:29:20 +00:00
qt5-qtbase qt5: updated to 5.11.1 2018-06-22 06:29:20 +00:00
qt5-qtdeclarative qt5: updated to 5.11.1 2018-06-22 06:29:20 +00:00
qt5-qtdoc Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
qt5-qtgraphicaleffects qt5: updated to 5.11.1 2018-06-22 06:29:20 +00:00
qt5-qtimageformats qt5: updated to 5.11.1 2018-06-22 06:29:20 +00:00
qt5-qtlocation qt5: updated to 5.11.1 2018-06-22 06:29:20 +00:00
qt5-qtmacextras qt5: updated to 5.11.1 2018-06-22 06:29:20 +00:00
qt5-qtmultimedia Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
qt5-qtquickcontrols qt5: updated to 5.11.1 2018-06-22 06:29:20 +00:00
qt5-qtquickcontrols2 qt5: updated to 5.11.1 2018-06-22 06:29:20 +00:00
qt5-qtscript Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
qt5-qtsensors qt5: updated to 5.11.1 2018-06-22 06:29:20 +00:00
qt5-qtserialport qt5: updated to 5.11.1 2018-06-22 06:29:20 +00:00
qt5-qtsvg qt5: updated to 5.11.1 2018-06-22 06:29:20 +00:00
qt5-qttools Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
qt5-qttranslations Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
qt5-qtwebchannel qt5: updated to 5.11.1 2018-06-22 06:29:20 +00:00
qt5-qtwebkit Recursive revbump from audio/pulseaudio 2018-07-06 15:06:40 +00:00
qt5-qtwebsockets qt5: updated to 5.11.1 2018-06-22 06:29:20 +00:00
qt5-qtx11extras qt5: updated to 5.11.1 2018-06-22 06:29:20 +00:00
qt5-qtxmlpatterns qt5: updated to 5.11.1 2018-06-22 06:29:20 +00:00
qwt-qt4 Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
qwt6-qt4 Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
qwtplot3d-qt4 Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
ratmen Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
redshift add option to use geoclue. disabled by default. 2016-05-18 22:47:42 +00:00
rendercheck Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
renderproto9 Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
rep-gtk2 Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
rgb xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
rofi Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
rox-session *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
rox-wallpaper *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
rstart xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
ruby-gnome2-gtk ruby-gnome2: update to 3.2.7. 2018-06-09 03:36:07 +00:00
ruby-gnome2-gtk3 ruby-gnome2: update to 3.2.7. 2018-06-09 03:36:07 +00:00
ruby-gnome2-gtksourceview2 ruby-gnome2: update to 3.2.7. 2018-06-09 03:36:07 +00:00
ruby-gnome2-gtksourceview3 ruby-gnome2: update to 3.2.7. 2018-06-09 03:36:07 +00:00
ruby-gnome2-vte ruby-gnome2: update to 3.2.7. 2018-06-09 03:36:07 +00:00
ruby-tk x11/ruby-tk: reset PKGREVISION 2018-03-29 03:16:11 +00:00
ruby-tk-gem x11/ruby-tk-gem: update to 0.2.0 2018-03-17 16:12:13 +00:00
ruby-wxruby Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
rxvt Add patch to fix CVE-2017-7483. 2017-08-05 07:00:20 +00:00
rxvt-unicode Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
sakura Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
sessreg xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
setxkbmap Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
slim Fix patch to actually correct the real error here. 2018-06-02 21:00:03 +00:00
slock Update x11/slock to slock-1.4 2016-11-23 08:20:21 +00:00
space_dapp space_dapp: follow redirect 2018-01-14 10:40:24 +00:00
speyes Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
ssystem Comment out dead sites. 2017-09-04 18:00:49 +00:00
st-term st-term: Update x11/st-term to 0.8.1 2018-03-21 10:32:15 +00:00
stalonetray Updated x11/stalonetray to 0.81 to 0.83 2016-08-11 23:03:26 +00:00
startup-notification Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
startup-notification010 Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
sxhkd sxhkd: Update x11/sxhkd to 0.5.9 2018-05-10 13:35:07 +00:00
tabbed Follow redirects. 2017-09-08 06:27:26 +00:00
tile tile: comment out dead sites. 2017-11-15 22:20:14 +00:00
tint2 Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
tk Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
tk-BWidget Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
tk-Tix Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
tk85 Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
tkinfo Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
tktable Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
transset transset: update to 1.0.2. 2018-03-10 22:23:03 +00:00
tzosdclock tzosdclock: comment out dead sites. 2017-11-15 22:20:43 +00:00
unclutter unclutter: Add LICENSE (public domain) 2018-02-28 11:48:39 +00:00
unicode-screensaver Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
viewres viewres: update to 1.0.5. 2018-03-05 09:29:59 +00:00
vte Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
vte3 vte3: Don't use packet mode on SunOS. 2018-06-22 14:34:43 +00:00
vte029 Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
wdm Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
wmavgload Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
wmfire Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
wmfstatus Comment out dead sites. 2017-09-06 10:40:25 +00:00
wmweather revbump for boost-libs update 2018-04-29 21:31:17 +00:00
worker Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
wterm Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
wxGTK28 Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
wxGTK28-contrib Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
wxGTK30 wxGTK30: Use standard .so naming on SunOS. 2018-05-14 13:19:48 +00:00
wxWindows-docs Comment out dead sites. 2017-09-06 10:40:25 +00:00
x2x Comment out dead sites. 2017-09-06 10:40:25 +00:00
x11perf Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
x11vnc Add p11-kit to gnutls/bl3.mk and bump dependencies. 2018-04-17 22:29:31 +00:00
x3270 Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
xaniroc Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
XaoS *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
xauth Updated xauth to 1.0.10. 2017-02-02 18:45:05 +00:00
xautolock Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
Xaw-Xpm Update CONFLICTS. 2016-01-06 21:42:27 +00:00
xbacklight xbacklight: update to 1.2.2. 2018-03-10 08:02:41 +00:00
Xbae *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
xbanner Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xbindkeys Updated xbindkeys to 1.8.6 and switch it to guile20. 2016-09-15 15:58:49 +00:00
xbindkeys-tk xbindkeys-tk: bump to 1.8.6 too. 2016-09-15 15:59:13 +00:00
xbitmaps xbitmaps: update to 1.1.2. 2018-03-10 22:25:06 +00:00
xcalc Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xcalib xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xcb Comment out dead sites. 2017-09-06 10:40:25 +00:00
xcb-proto xcb-proto: update to 1.13. 2018-03-05 10:19:25 +00:00
xcb-util Follow some http redirects. 2017-08-16 20:21:03 +00:00
xcb-util-cursor Follow some http redirects. 2017-08-16 20:21:03 +00:00
xcb-util-errors Follow some http redirects. 2017-08-16 20:21:03 +00:00
xcb-util-image xcb-util-image: Fix clang -Wreturn-type failure. 2018-01-25 13:47:22 +00:00
xcb-util-keysyms Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
xcb-util-renderutil Follow some http redirects. 2017-08-16 20:21:03 +00:00
xcb-util-wm Follow some http redirects. 2017-08-16 20:21:03 +00:00
xcb-util-xrm Requires GNU m4 for -I support. 2017-08-15 12:13:15 +00:00
xcb-util036 Follow some http redirects. 2017-08-16 20:21:03 +00:00
xclip ensure we link libiconv on SunOS 2016-11-23 23:41:30 +00:00
xclipboard Sort PLIST files. 2018-01-01 22:29:15 +00:00
xcmsdb Reset maintainer 2017-09-16 19:26:41 +00:00
xcolors Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xcolorsel Whitespace. 2015-12-29 04:54:34 +00:00
xcompmgr xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xconsole Updated xconsole to 1.0.7. 2017-02-02 18:40:25 +00:00
xcruise Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xcursor Follow some redirects. 2017-09-06 09:02:59 +00:00
xcursorgen Follow some redirects. 2017-09-06 09:02:59 +00:00
xdaemon Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xdaemon2 Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xdbedizzy Reset maintainer 2017-09-16 19:26:41 +00:00
xdesktopwaves Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xdg-user-dirs xdg-user-dirs: update to 0.17. 2018-04-29 09:43:54 +00:00
xdialog Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
xditview Reset maintainer 2017-09-16 19:26:41 +00:00
xdm Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
xdm3d Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xdotool Add xdotool version 2.20110530.1. From rga (at) sdf.lonestar.org via 2017-08-28 11:30:53 +00:00
xdpyinfo Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xdriinfo xdriinfo: update to 1.0.6. 2018-03-07 12:20:11 +00:00
xearth Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xedit Reset maintainer 2017-09-16 19:26:41 +00:00
xephem Use pax, not cp -R, to install subtrees. 2016-10-09 20:48:19 +00:00
xev xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xeyes xeyes: update to 1.1.2. 2018-03-10 08:00:05 +00:00
xf86-input-acecad xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-input-elographics xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-input-fpit xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-input-hyperpen xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-input-joystick *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
xf86-input-keyboard xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-input-mouse xf86-input-mouse: update to 1.9.3. 2018-06-19 07:12:45 +00:00
xf86-input-mutouch xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-input-penmount xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-input-vmmouse xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-input-void xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-input-ws xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-amdgpu xf86-video-amdgpu: fix build with modular-xorg-server-1.20. 2018-05-20 07:15:21 +00:00
xf86-video-apm xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-ark xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-ast Use OPSYSVARS. 2016-02-26 10:57:45 +00:00
xf86-video-ati xf86-video-ati: Fix build with modular-xorg-server-1.20 2018-05-20 07:11:10 +00:00
xf86-video-ati6 xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-chips xf86-video-chips: remove obsolete workaround for missing file in distfile. 2018-03-08 12:58:33 +00:00
xf86-video-cirrus xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-dummy xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-fbdev xf86-video-fbdev: remove obsolete patch 2018-05-31 07:25:21 +00:00
xf86-video-glint xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-i128 xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-i740 xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-intel xf86-video-intel: update to 2.99.917nb7. 2018-05-15 10:50:19 +00:00
xf86-video-mach64 xf86-video-mach64: update to 6.9.6. 2018-05-19 00:44:42 +00:00
xf86-video-mga xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-modesetting xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-neomagic Use OPSYSVARS. 2016-02-26 10:57:45 +00:00
xf86-video-newport xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-nouveau xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-nv xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-openchrome xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-qxl xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-r128 xf86-video-r128: fix build with modular-xorg-server-1.20 2018-05-20 07:19:18 +00:00
xf86-video-rendition xf86-video-rendition: update to 4.2.7. 2018-05-19 00:46:20 +00:00
xf86-video-s3 xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-s3virge xf86-video-s3virge: Fix build with modular-xorg-server-1.20. 2018-05-20 07:32:50 +00:00
xf86-video-savage xf86-video-savage: fix build with modular-xorg-server-1.20 2018-05-20 07:30:09 +00:00
xf86-video-siliconmotion xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-sis xf86-video-sis: Fix build with modular-xorg-server-1.20. 2018-05-20 06:33:40 +00:00
xf86-video-suncg3 xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-suncg6 xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-suncg14 xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-sunffb xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-sunleo xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-suntcx xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-tdfx xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-tga xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-trident xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-tseng xf86-video-tseng: Fix build with modular-xorg-server-1.20. 2018-05-20 07:27:31 +00:00
xf86-video-vboxvideo xf86-video-vboxvideo: Set DRIVER_MAN_SUFFIX on SunOS. 2018-01-03 11:50:39 +00:00
xf86-video-vesa xf86-video-vesa: update to 2.4.0. 2018-02-16 07:25:14 +00:00
xf86-video-vmware xf86-video-vmware: update to 13.3.0. 2018-05-19 00:52:34 +00:00
xf86-video-voodoo xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86-video-wsfb Fix build with modular-xorg-server-1.20.0. Bump PKGREVISION 2018-05-13 03:45:07 +00:00
xf86-video-xgi xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xf86dga Reset maintainer 2017-09-16 19:26:41 +00:00
xfce4-clipman-plugin Update to 1.4.2: 2018-05-15 21:57:00 +00:00
xfce4-dashboard Update to 0.7.4: 2018-05-15 21:59:15 +00:00
xfce4-desktop Fix PLIST. 2018-05-17 14:12:02 +00:00
xfce4-exo Update xfce4-exo to 0.12.2: 2018-06-23 20:37:26 +00:00
xfce4-eyes-plugin Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
xfce4-garcon Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
xfce4-indicator-plugin Add patch. 2018-05-15 22:01:01 +00:00
xfce4-kbdleds-plugin Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
xfce4-notes-plugin Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
xfce4-notifyd xfce4-notifyd: Simplify and fix xfce4-notifyd.desktop handling. 2018-05-31 09:16:46 +00:00
xfce4-panel xfce4-panel: Requires gdbus-codegen. 2018-05-16 22:33:27 +00:00
xfce4-places-plugin Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
xfce4-screenshooter Update to 1.9.2: 2018-05-15 22:10:00 +00:00
xfce4-session Optionalize mate-polkit. 2018-06-04 10:51:56 +00:00
xfce4-settings Fix typo in configure argument. 2018-06-25 11:23:26 +00:00
xfce4-terminal Update to 0.8.7.4: 2018-05-15 22:07:58 +00:00
xfce4-tumbler *: recursive bump for poppler-0.66.0 update 2018-06-24 11:16:10 +00:00
xfce4-whiskermenu-plugin Update to 2.1.7: 2018-05-15 21:35:53 +00:00
xfce4-wmdock-plugin Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
xfd Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
xfishtank MAKEFLAGS -> MAKE_FLAGS (pkgsrc guide 22.1) 2016-03-12 21:53:39 +00:00
Xfixes Follow some redirects. 2017-09-06 09:02:59 +00:00
xflame Remove manual addition of MAKE_FLAGS to OPSYSVARS, it's now in by default. 2016-02-26 11:40:29 +00:00
xfontsel xfontsel: update to 1.0.6. 2018-03-10 08:01:02 +00:00
xforms Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xfsinfo xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xfstt *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
xfwp xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xgamma xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xgas Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xgrk Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xhangglider Comment out dead sites. 2017-09-06 10:40:25 +00:00
xhost Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xicc Comment out dead sites. 2017-09-06 10:40:25 +00:00
xinit xinit: update to 1.4.0. 2018-03-10 08:04:22 +00:00
xinput xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xjman Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xkbcomp xkbcomp: update to 1.4.2. 2018-06-15 08:50:25 +00:00
xkbd Comment out dead sites. 2017-09-06 10:40:25 +00:00
xkbdata Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xkbevd Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xkbprint Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xkbset Sort PLIST files. 2018-01-01 22:29:15 +00:00
xkbutils xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xkeyboard-config xkeyboard-config: update to 2.24. 2018-06-17 08:14:24 +00:00
xkeycaps Follow some redirects. 2017-09-06 09:02:59 +00:00
xkill xkill: update to 1.0.5. 2018-03-10 22:05:12 +00:00
xless Convert all occurrences (353 by my count) of 2017-01-19 18:52:01 +00:00
xload xload: update to 1.1.3. 2018-03-10 22:06:14 +00:00
xlockmore Add p11-kit to gnutls/bl3.mk and bump dependencies. 2018-04-17 22:29:31 +00:00
xlockmore-lite xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xlogo Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
xlogout Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xlsatoms Reset maintainer 2017-09-16 19:26:41 +00:00
xlsclients xlsclients: update to 1.1.4. 2018-03-10 22:07:37 +00:00
xlsfonts xlsfonts: update to 1.0.6. 2018-03-10 22:08:22 +00:00
xlt Fixed pkglint warnings, bumped PKGREVISION. 2018-01-07 19:27:56 +00:00
xlupe Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xmag Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xman Use OPSYSVARS. 2016-02-26 10:57:45 +00:00
xmascot Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xmessage xmessage: update to 1.0.5. 2018-03-10 22:09:31 +00:00
xmh Reset maintainer 2017-09-16 19:26:41 +00:00
XmHTML Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xmindpath Convert all occurrences (353 by my count) of 2017-01-19 18:52:01 +00:00
xmms-osd Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xmodmap Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xmon Comment out dead sites. 2017-09-06 10:40:25 +00:00
xmore Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xmountains Update HOMEPAGE, comment out dead MASTER_SITES. 2017-09-08 06:30:34 +00:00
xmove Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xmx xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xneko Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xnodecor Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xorg-cf-files *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
xorgproto Revert previous, pkgsrc is even more on fire from it. 2018-03-31 17:13:30 +00:00
xosd *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
xp Fix PKGMANDIR install. 2016-04-01 10:23:44 +00:00
xpad Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
xpaste Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xpenguins Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xphoon Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xplanet Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
xplsprinters Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xpmicons Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xpmroot Comment out dead sites. 2017-09-06 10:40:25 +00:00
xpns Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xpostit Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xpr xpr: update to 1.0.5. 2018-03-10 22:10:32 +00:00
xprehashprinterlist Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xprop xprop: update to 1.2.3. 2018-03-10 22:11:26 +00:00
xrandr xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xrdb xrdb: update to 1.1.1. 2018-03-10 22:14:31 +00:00
xrefresh xrefresh: update to 1.0.6. 2018-03-10 22:15:38 +00:00
Xrender xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xrestop Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xrootconsole Comment out dead sites. 2017-09-06 10:40:25 +00:00
xrx xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xscope xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xscreensaver xscreensaver*: update to 5.39 2018-06-25 08:42:39 +00:00
xscreensaver-demo xscreensaver*: update to 5.39 2018-06-25 08:42:39 +00:00
xscribble Comment out dead sites. 2017-09-06 10:40:25 +00:00
xscript Comment out dead sites. 2017-09-06 10:40:25 +00:00
xsel Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xservers Extend SHA512 checksums to various files I have on my local distfile 2017-03-23 17:06:45 +00:00
xset xset: update to 1.2.4. 2018-03-10 22:16:40 +00:00
xsetroot xsetroot: update to 1.1.2. 2018-03-10 22:17:34 +00:00
xsm xsm: update to 1.0.4. 2018-03-10 22:18:34 +00:00
xsnow Comment out dead sites. 2017-09-06 10:40:25 +00:00
xstdcmap xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xteddy Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xteddy2 Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xterm Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
xtermcontrol Import xtermcontrol 3.3 2016-05-30 22:58:05 +00:00
xtermset Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xtoolwait Comment out dead sites. 2017-09-06 10:40:25 +00:00
xtrace Follow some redirects. 2017-09-06 09:02:59 +00:00
xtrans Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xtrap xtrap: update to 1.0.3. 2018-03-24 06:59:25 +00:00
xtruss Follow some redirects. 2017-09-06 09:02:59 +00:00
xvattr Comment out dead MASTER_SITES/HOMEPAGEs. 2017-09-03 08:36:49 +00:00
xvidcap revbump after x264-devel update 2018-02-26 08:19:25 +00:00
xvidcap-gtk2 Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
xvidtune xorgproto: use xorgproto instead of separate *proto packages 2018-03-07 11:57:28 +00:00
xview
xview-clients Extend SHA512 checksums to various files I have on my local distfile 2017-03-23 17:06:45 +00:00
xview-config Extend SHA512 checksums to various files I have on my local distfile 2017-03-23 17:06:45 +00:00
xview-lib Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
xvinfo Extend SHA512 checksums to various files I have on my local distfile 2017-03-23 17:06:45 +00:00
xvkbd Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xwatchwin Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xwd xwd: update to 1.0.7. 2018-03-10 22:19:47 +00:00
xwininfo xwininfo: update to 1.1.4. 2018-03-10 22:21:14 +00:00
xwit Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xworld Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xwrits Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
xwud xwud: update to 1.0.5. 2018-03-10 22:22:03 +00:00
xxkb Add SHA512 digests for distfiles for x11 category 2015-11-04 03:28:24 +00:00
zenity Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
Makefile + caribou, + keybinder3 2018-06-12 00:19:17 +00:00