1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00
freebsd-ports/x11-toolkits
Raphael Kubo da Costa a9662ed949 Update Qt5 ports to 5.3.2.
Proudly presented by the KDE on FreeBSD team, with several guest stars.

This update took way longer than initially expected due to us previously
accumulating assumptions and changes to Qt's build system that finally bit
us back with the 5.3 release series, so we had to do a fair amount of
cleanup.

New ports:
- comms/qt5-serialport: Qt functions to access serial ports, originally
                        based on work by Fernando Apesteguia. [1]
- devel/qt5-qdoc: Qt documentation generator, the Qt5 equivalent of
                  devel/qt4-qdoc3. Originally worked on by Tobias Berner.
                  It had already been half-split from devel/qt5-buildtools,
                  we just needed to finish the work.

Dead ports:
- devel/qt5-qmldevtools: Merged into lang/qt5-qml.

Minor changes:
- devel/qt5: Add x11/qt5-x11extras and the new ports to the dependency list.
- graphics/qt5-imageformats: The port now supports the JPEG2000, WEBP,
                             Direct Draw Surface and ICNS formats.
- multimedia/qt5-multimedia: The ALSA and PULSEAUDIO options are now
                             mutually exclusive due to changes introduced in
                             Qt 5.3.0 (the ALSA code is now a proper plugin
                             that is only built if PulseAudio is not used).
- x11/qt5-x11extras: Add USE_LDCONFIG since the port installs a shared
                     library.

The big changes:
- bsd.qt.mk: Set QMAKESPEC instead of QMAKEPATH. [3]
  QMAKEPATH does much more than we want now that we call qmake from the top
  of ${WRKSRC}. qmake uses QMAKEPATH when evaluating the QMAKE_MKSPECS
  property, which is in turn used by qt_config.pri to load the .pri files in
  mkspecs/modules.

  In practice, this means that if people have an older Qt installation those
  files will be used and QT_CONFIG will have values such as "gui" even if
  one is building a port like textproc/qt5-xml, which passes -no-gui to the
  configure script. Consequently, unintended code paths may be enabled or
  the configuration step can just fail if the .pro files expect values that
  are not present in the system-wide, older .pri files.

  We avoid all those problems if we use QMAKESPEC, as qmake does not take
  its value into account when evaluating the QMAKE_MKSPECS property and will
  only parse the files in the mkspec's directory (mkspecs/freebsd-clang, for
  example, instead of all the files in mkspecs).

- Stop explicitly passing ${LOCALBASE} to the compiler. [3]
  qmake's behavior has changed in Qt 5, and the paths set in QMAKE_INCDIR
  and QMAKE_LIBDIR in the mkspecs are passed before any others, such as the
  ones in the build directory themselves.

  In practice, this means that we end up with linker calls like this:

  c++ -o libfoo.so foo.o bar.o -L/usr/local/lib -L/wrkdir/build/lib
      -lQt5Gui -lQt5Core

  So if one already has Qt installed in the system, the older, already
  present version of the libraries in /usr/local/lib will be used instead of
  the newly-built ones in /wrkdir/build/lib.

  QTBUG-40825 discusses this behavior upstream, but there has been no
  agreement on a solution yet.

  For now, the solution adopted is to make the compiler and the linker aware
  of those paths but only try them last after all others, and this is
  achieved by setting the CPATH and LIBRARY_PATH environment variables when
  qmake is being used.

  In addition to setting them in CONFIGURE_ENV and MAKE_ENV, we also need to
  stop changing QMAKE_INCDIR and QMAKE_LIBDIR as well as filter those paths
  from the pkg-config calls qtbase's configure script makes.

- Call qmake from the root of the ${WRKSRC}.

  In Qt 5.3, Qt's build infrastructure has undergone some changes that make
  our previous approach of calling qmake from the directories we want to
  build stop working. Things would break even more in Qt 5.4, in which
  qtbase's configure script does not accept the -process, -fully-process and
  -dont-process arguments anymore (it always behaves as if -process had been
  used).

  Bite the bullet and start calling qmake from ${WRKSRC}. The largest part of
  this change involves changing lines in Makefiles from
    WRKSRC_SUBDIR=	foo/bar
  to
    BUILD_WRKSRC=		${WRKSRC}/foo/bar
    INSTALL_WRKSRC=		${WRKSRC}/foo/bar
  as well as adding patches to .pro files to avoid entering other
  subdirectories and removing post-configure targets that are not necessary
  anymore.

  Since qmake needs to be called from the top of ${WRKSRC} anyway, we can
  also simplify the configuration process for the qtbase ports a little.
  Looking at r10019 it is not clear why we started calling qmake in the
  pre-configure target in addition to the post-configure one (while also
  skipping it in do-configure), but we can now drop this call since letting
  configure behave as if -process had been passed means it will call qmake
  on its own and overwrite the files generated by the pre-configure call. We
  still need to call qmake in post-configure though, as the configure script
  does not pass -recursive when calling qmake and we need to be able to call
  make from any subdirectory when building.

PR:		194762 [1]
PR:		194566 # exp-run with base GCC and clang
PR:		194088 [3]
2014-11-05 09:39:21 +00:00
..
attica Convert a bunch of USE_BZIP2 to USES=tar:bzip2 2014-07-29 18:41:15 +00:00
bakery Add USES=libtool to accessibility/atkmm and bump dependent ports 2014-09-01 19:34:02 +00:00
blt Patch configure to use ${CC} instead of ld to link the two shared objects it 2014-09-21 15:36:25 +00:00
bwidget - Update to 1.9.8 2014-09-10 15:38:30 +00:00
c++-gtk-utils Remove @dirrm's from my ports plists 2014-10-13 22:08:27 +00:00
elementary Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
flowcanvas - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
fltk Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
fltk-devel - Update to snapshot 10370 2014-10-10 12:46:46 +00:00
fox14 Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
fox16 Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
fox17 Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
fpc-gnome1 Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
fpc-gtk1 Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
fpc-gtk2
fpc-xforms Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
fxscintilla Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
gai - Use canonical @FreeBSD.org email 2014-09-30 02:34:33 +00:00
gal2 - Fix missing library problems when the linker enforces explicit linking 2014-08-26 14:06:08 +00:00
gal2-reference
gdl Remove two libtool fixes from Mk/Uses/libtool.mk. They don't always work 2014-07-23 10:28:03 +00:00
girara - Update to 0.2.3 2014-10-17 13:05:54 +00:00
gnocl
gnome-pty-helper Remove USES=pathfix (already set by master port) 2014-09-19 18:39:00 +00:00
gnome-sharp20 Remove gnomepanel dependancy, the requirement was removed from gnome-sharp. 2014-10-02 13:23:11 +00:00
gnomemm Remove all space characters from Makefile assignments. 2014-06-08 19:51:27 +00:00
gnustep-back Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
gnustep-gui Remove now useless @exec 2014-09-03 06:14:57 +00:00
granite Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
gstreamer1-plugins-pango
gstreamer-plugins-pango
gtk12 devel/glib12 x11-toolkits/gtk12: 2014-09-13 15:11:27 +00:00
gtk20 Remove CONFIGURE_ARGS=--enable-explicit-deps. This option adds 2014-08-28 10:58:25 +00:00
gtk20-reference
gtk30 Use @rmtry 2014-09-02 23:16:33 +00:00
gtk30-reference
gtk-sharp10 Let pkg deal with empty directories 2014-09-02 23:18:23 +00:00
gtk-sharp20 - Drop .la files, no dependees require them 2014-08-29 09:18:13 +00:00
gtk-sharp-beans Convert a bunch of USE_BZIP2 to USES=tar:bzip2 2014-07-29 18:41:15 +00:00
gtkada Remove @dirrm from my www and x11-toolkits ports 2014-10-16 11:05:42 +00:00
gtkada3 Remove @dirrm from my www and x11-toolkits ports 2014-10-16 11:05:42 +00:00
gtkdatabox - Drop .la files, no dependees require them 2014-08-19 18:54:01 +00:00
gtkextra2 - Drop .la files, no dependees require them 2014-08-19 19:04:23 +00:00
gtkglarea2 Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
gtkglext Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
gtkglextmm Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
gtkimageview - USES=libtool pathfix 2014-07-01 15:21:22 +00:00
gtkmathview - Add USES=libtool and bump dependent ports 2014-09-02 15:05:37 +00:00
gtkmm20
gtkmm20-reference Convert GMAKE to MAKE_CMD 2014-06-25 05:35:31 +00:00
gtkmm24 Add USES=libtool to accessibility/atkmm and bump dependent ports 2014-09-01 19:34:02 +00:00
gtkmm24-reference Convert GMAKE to MAKE_CMD 2014-06-25 05:35:31 +00:00
gtkmm30 Add USES=libtool to accessibility/atkmm and bump dependent ports 2014-09-01 19:34:02 +00:00
gtkmm30-reference Convert GMAKE to MAKE_CMD 2014-06-25 05:35:31 +00:00
gtksourceview Support LIBS like LDFLAGS. 2014-06-11 14:49:59 +00:00
gtksourceview2 Support LIBS like LDFLAGS. 2014-06-11 14:49:59 +00:00
gtksourceview2-reference
gtksourceview3
gtksourceview3-reference
gtksourceview-reference
gtksourceviewmm3 Add USES=libtool to accessibility/atkmm and bump dependent ports 2014-09-01 19:34:02 +00:00
hippo-canvas - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
hs-GLURaw Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
hs-GLUT Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
hs-gtk Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
hs-gtk2hs Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
hs-gtkglext Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
hs-gtksourceview2 Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
hs-OpenGL Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
hs-OpenGLRaw Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
hs-pango Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
hs-vte Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
hs-wx Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
hs-wxc Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
hs-wxcore Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
hs-wxdirect Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
irrlicht x11-toolkits/irrlicht: Fix DEBUG option, missing linker symbols 2014-11-02 18:15:19 +00:00
itk Allow staging as a regular user 2014-08-25 16:41:00 +00:00
iwidgets Add DOCS to OPTIONS_DEFINE to ports that check for PORT_OPTIONS:MDOCS. 2014-07-15 17:14:33 +00:00
lesstif - fix order in USES 2014-08-03 16:19:17 +00:00
libbonoboui
libbonoboui-reference
libgdiplus Update to 3.8. 2014-10-21 08:30:48 +00:00
libgnomeprintui
libgnomeprintuimm Add USES=libtool to accessibility/atkmm and bump dependent ports 2014-09-01 19:34:02 +00:00
libgnomeui
libgnomeui-reference
libgnomeuimm26 Add USES=libtool to accessibility/atkmm and bump dependent ports 2014-09-01 19:34:02 +00:00
libgtksourceviewmm Add USES=libtool to accessibility/atkmm and bump dependent ports 2014-09-01 19:34:02 +00:00
libpanelappletmm Add USES=libtool to accessibility/atkmm and bump dependent ports 2014-09-01 19:34:02 +00:00
libsexy - Drop .la files, no dependees require them 2014-08-29 09:48:42 +00:00
libsexymm Add USES=libtool to accessibility/atkmm and bump dependent ports 2014-09-01 19:34:02 +00:00
libunique3 - Drop .la files, no dependees require them 2014-08-25 11:04:15 +00:00
libwnck Update to 2.30.7 2014-06-30 18:50:52 +00:00
libwnck3 Add libwnck3. The gtk3 version of libwnck. 2014-06-30 19:23:01 +00:00
libwnck-reference
libxaw3dxft USES=libtool pathfix tar:bzip2 2014-06-30 21:28:26 +00:00
libXaw
libxfce4gui - Fix pkg-plist 2014-06-28 12:44:27 +00:00
libXmu
libXt
libzvt Remove old libtool patch and drop .la file 2014-09-19 18:41:06 +00:00
linux-c6-gtk2 x11-toolkits/linux-c6-gtk2: fix plist issues 2014-10-27 13:07:13 +00:00
linux-c6-openmotif Update CentOS base to 6.5, add userland ports 2014-09-22 10:40:00 +00:00
linux-c6-pango Update CentOS base to 6.5, add userland ports 2014-09-22 10:40:00 +00:00
linux-c6-qt47-x11 x11-toolkits/linux-c6-qt47-x11: fix pkg-plist issues 2014-10-27 12:58:26 +00:00
linux-c6-tk85 Update CentOS base to 6.5, add userland ports 2014-09-22 10:40:00 +00:00
linux-f10-blt Update CentOS base to 6.5, add userland ports 2014-09-22 10:40:00 +00:00
linux-f10-gtk2 Update CentOS base to 6.5, add userland ports 2014-09-22 10:40:00 +00:00
linux-f10-openmotif Update CentOS base to 6.5, add userland ports 2014-09-22 10:40:00 +00:00
linux-f10-pango Update CentOS base to 6.5, add userland ports 2014-09-22 10:40:00 +00:00
linux-f10-qt45 Update CentOS base to 6.5, add userland ports 2014-09-22 10:40:00 +00:00
linux-f10-tk85 Update CentOS base to 6.5, add userland ports 2014-09-22 10:40:00 +00:00
movingmotif - Remove old libtool patch 2014-09-19 18:43:15 +00:00
mowitz Remove NOPORTDOCS and NOPORTEXAMPLES from unstaged ports. Stage a couple while 2014-07-05 00:06:55 +00:00
mygui - Drop @dirrm* from plist 2014-09-22 15:09:10 +00:00
neXtaw Add DOCS option to the remaining staged ports where PORTDOCS appears 2014-07-16 03:34:56 +00:00
nucleo Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
ocaml-lablgtk2 Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
open-motif Convert a bunch of EXTRACT_SUFX=... into USES=tar:... 2014-07-29 19:11:51 +00:00
otk Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
p5-Alien-wxWidgets Reset maintainership 2014-10-17 10:23:34 +00:00
p5-Glade2 Remove all the bootstrap files (.bs) from the plists. 2014-06-10 12:14:12 +00:00
p5-Gnome2 Remove all the bootstrap files (.bs) from the plists. 2014-06-10 12:14:12 +00:00
p5-Gnome2-Canvas Remove all the bootstrap files (.bs) from the plists. 2014-06-10 12:14:12 +00:00
p5-Gnome2-VFS Remove all the bootstrap files (.bs) from the plists. 2014-06-10 12:14:12 +00:00
p5-Gtk devel/glib12 x11-toolkits/gtk12: 2014-09-13 15:11:27 +00:00
p5-Gtk2 Remove duplicate line from plist 2014-08-07 21:44:29 +00:00
p5-Gtk2-Chmod
p5-Gtk2-Ex-Dialogs
p5-Gtk2-Ex-FormFactory
p5-Gtk2-Ex-PodViewer
p5-Gtk2-Ex-Simple-List
p5-Gtk2-Ex-Utils
p5-Gtk2-GladeXML Remove all the bootstrap files (.bs) from the plists. 2014-06-10 12:14:12 +00:00
p5-Gtk2-Html2 Remove all the bootstrap files (.bs) from the plists. 2014-06-10 12:14:12 +00:00
p5-Gtk2-ImageView Modernize LIB_DEPENDS 2014-07-13 22:49:19 +00:00
p5-Gtk2-PathButtonBar
p5-Gtk2-TrayIcon Remove all the bootstrap files (.bs) from the plists. 2014-06-10 12:14:12 +00:00
p5-Pango Remove all the bootstrap files (.bs) from the plists. 2014-06-10 12:14:12 +00:00
p5-Prima - Update to 1.40 2014-09-09 14:43:47 +00:00
p5-Tk x11-toolkits/p5-Tk: upgrade 804.031 -> 804.032 2014-06-11 20:44:57 +00:00
p5-Tk-Action
p5-Tk-Autoscroll
p5-Tk-ColourChooser
p5-Tk-Contrib
p5-Tk-CursorControl
p5-Tk-Date
p5-Tk-DKW
p5-Tk-DynaTabFrame
p5-Tk-Enscript
p5-Tk-FileDialog
p5-Tk-FontDialog x11-toolkits/p5-Tk-FontDialog: take maintainership 2014-06-12 21:20:34 +00:00
p5-Tk-GBARR
p5-Tk-Getopt Remove some duplicate lines from plist (or duplicate plist) 2014-08-25 16:44:07 +00:00
p5-Tk-HistEntry
p5-Tk-JComboBox
p5-Tk-ResizeButton
p5-Tk-Role-Dialog
p5-Tk-Role-HasWidgets
p5-Tk-Splashscreen
p5-Tk-Sugar
p5-Tk-TableMatrix Remove all the bootstrap files (.bs) from the plists. 2014-06-10 12:14:12 +00:00
p5-Tk-ToolBar
p5-Tk-WaitBox - Update cad/p5-GDS2 to 3.28. 2014-09-14 15:38:23 +00:00
p5-Wx Reset maintainership 2014-10-17 10:23:34 +00:00
p5-Wx-Perl-ProcessStream Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
pango Remove CONFIGURE_ARGS=--enable-explicit-deps. This option adds 2014-08-28 10:58:25 +00:00
pango-reference
pangomm Add USES=libtool and INSTALL_TARGET=install-strip 2014-09-01 17:50:26 +00:00
pangox-compat Add USES=libtool 2014-08-29 22:18:38 +00:00
pangoxsl - Convert to USES=libtool 2014-06-30 20:31:31 +00:00
phat - Add USES=libtool 2014-06-30 20:30:34 +00:00
plib - Add LICENSE 2014-11-01 08:33:59 +00:00
pure-gtk
pure-tk
py-fltk - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
py-gnome2 - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
py-gnome-desktop - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
py-gnome-extras - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
py-gtk2 - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
py-gtkglext - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
py-gtksourceview - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
py-gui - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
py-kivy Fix x11-toolkits/py-kivy due to cython update. 2014-10-04 08:19:00 +00:00
py-kiwi - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
py-Pmw - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
py-qt4-gui Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
py-sexy - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
py-SquareMap - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
py-tkinter Modernize python 2014-08-29 14:45:45 +00:00
py-tktreectrl - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
py-traitsbackendwx - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
py-traitsgui - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
py-vte - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
py-wax - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
py-wxPython28 - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
py-wxPython28-common Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
py-wxPython28-unicode Introduce x11-toolkits/py-wxPython30 2014-07-05 18:22:32 +00:00
py-wxPython30 - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
py-wxPython-common x11-toolkits/py-wxPython-common: fix python compile to use non-stage path 2014-07-05 21:54:02 +00:00
py-xlib - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/, 2014-10-19 18:16:15 +00:00
qt4-declarative Remove @dirrm and @dirrmtry entries from the Qt ports. 2014-10-23 21:35:14 +00:00
qt4-gui Remove @dirrm and @dirrmtry entries from the Qt ports. 2014-10-23 21:35:14 +00:00
qt4pas Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
qt5-declarative Update Qt5 ports to 5.3.2. 2014-11-05 09:39:21 +00:00
qt5-gui Update Qt5 ports to 5.3.2. 2014-11-05 09:39:21 +00:00
qt5-quick Update Qt5 ports to 5.3.2. 2014-11-05 09:39:21 +00:00
qt5-quickcontrols Update Qt5 ports to 5.3.2. 2014-11-05 09:39:21 +00:00
qt5-widgets Update Qt5 ports to 5.3.2. 2014-11-05 09:39:21 +00:00
qtada Remove @dirrm from my www and x11-toolkits ports 2014-10-16 11:05:42 +00:00
qwt5
qwt5-designerplugin Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
qwt6 Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
qwt6-designerplugin Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
rep-gtk2
rubygem-gdk3 x11/rubygem-gnome2: update to 2.2.0 2014-08-26 03:04:41 +00:00
rubygem-gtk2 x11/rubygem-gnome2: update to 2.2.0 2014-08-26 03:04:41 +00:00
rubygem-gtk3 x11/rubygem-gnome2: update to 2.2.0 2014-08-26 03:04:41 +00:00
rubygem-gtksourceview2 x11/rubygem-gnome2: update to 2.2.0 2014-08-26 03:04:41 +00:00
rubygem-gtksourceview3 x11/rubygem-gnome2: update to 2.2.0 2014-08-26 03:04:41 +00:00
rubygem-pango x11/rubygem-gnome2: update to 2.2.0 2014-08-26 03:04:41 +00:00
rubygem-poppler x11/rubygem-gnome2: update to 2.2.0 2014-08-26 03:04:41 +00:00
rubygem-vte x11/rubygem-gnome2: update to 2.2.0 2014-08-26 03:04:41 +00:00
scintilla - Update scintilla and scite to 3.5.1 2014-10-10 16:24:00 +00:00
sdl_pango Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
shared-desktop-ontologies Convert a bunch of USE_BZIP2 to USES=tar:bzip2 2014-07-29 18:41:15 +00:00
skinlf
slingshot Rename x11-*/ patch-xy patches to reflect the files they modify. 2014-07-29 16:36:06 +00:00
soqt Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
SoXt Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
swt Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
swt-devel Fix build on freebsd 8 2014-10-17 16:54:44 +00:00
termit Remove @dirrm's from my ports plists 2014-10-13 22:08:27 +00:00
tile
tix Remove indefinite articles and trailing periods from COMMENT, plus 2014-08-08 08:42:44 +00:00
tk84 Canonicalize a few LICENSE_PERMS 2014-08-22 07:20:30 +00:00
tk85 Retire MANCOMPRESSED. 2014-09-18 12:31:24 +00:00
tk86 - Update Tcl/Tk 8.6 to 8.6.2 2014-08-29 14:19:55 +00:00
tk-wrapper
tkdnd - Update to 2.7 2014-10-07 14:59:39 +00:00
tkshape Remove indefinite articles and trailing periods from COMMENT, plus 2014-08-08 08:42:44 +00:00
tktable Remove indefinite articles and trailing periods from COMMENT, plus 2014-08-08 08:42:44 +00:00
tktray
tktreectrl Reset the 99 ports still listed under sylvio@ 2014-06-11 18:55:29 +00:00
unique
v Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
vdk - Drop .la files, no dependees require them 2014-08-25 17:30:04 +00:00
viewklass Remove USE_AUTOTOOLS 2014-09-24 19:01:45 +00:00
vte
vte3 Convert to USES=libtool and INSTALL_TARGET=install-strip 2014-09-01 16:05:20 +00:00
vte-reference
vtkfox Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
wmapp
wxgtk28 Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
wxgtk28-common
wxgtk28-contrib
wxgtk28-contrib-common
wxgtk28-unicode
wxgtk28-unicode-contrib
wxgtk30 - Update to 3.0.2 2014-10-07 15:01:29 +00:00
Xaw3d
xbae Convert to USES=libtool. 2014-06-30 18:13:11 +00:00
xforms Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
xmhtml - Update devel/libtool and devel/libltdl to version 2.4.2.418 2014-10-05 18:01:19 +00:00
xview Fix build errors related to stage and pkg-plist consistency. 2014-06-27 04:53:37 +00:00
xview-clients Support stage. Update to new LIB_DEPENDS. 2014-06-10 05:09:09 +00:00
Makefile Remove eel and ports that use it. 2014-10-03 10:53:39 +00:00