1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-27 10:03:20 +00:00
Commit Graph

8081 Commits

Author SHA1 Message Date
Pietro Cerutti
d53d455f1a x11-toolkits/bwidget: update to 1.9.12
Changes: https://core.tcl.tk/bwidget/fdiff?v1=e67912&v2=2cfb75
2018-01-23 09:53:49 +00:00
Raphael Kubo da Costa
d6da49a186 Drop %%DEBUG%% from several plist entries.
Those items were added with %%DEBUG%% when we updated Qt to 5.3.2. At the time,
src/dialogs/dialogs.pro had the following excerpt:

    # In case of a debug build, deploy the QML files too
    CONFIG(debug, debug|release): QML_FILES += $$DIALOGS_QML_FILES

but that actually changed in Qt 5.9.0, which dropped the check altogether and
always adds those files to QML_FILES.

Not shipping them causes runtime issues according to the bug report below.

PR:		225347
Submitted by:	Tomasz Kowalczyk <kowalczt@zoho.eu>
2018-01-21 11:46:47 +00:00
Jan Beich
25beeff079 devel/boost-*: update to 1.66.0
Changes:	http://www.boost.org/users/history/version_1_66_0.html
PR:		223922
Exp-run by:	antoine
Differential Revision:	https://reviews.freebsd.org/D13279
2018-01-18 04:11:02 +00:00
Tobias C. Berner
23cda8ddd0 x11-toolkits/kf5-kwidgetsaddons: use respun tarball
https://phabricator.kde.org/R236:ee34537ff55cccfb5282085e25065b86114fd856
2018-01-17 10:48:44 +00:00
Tobias C. Berner
94ac845319 Update KDE Frameworks to 5.42.0
PR:		225155
Exp-run by:	antoine
Reviewed by:	rakuco
Differential Revision:	https://reviews.freebsd.org/D13816
2018-01-17 10:21:32 +00:00
Guido Falsi
61b31afba1 - Add NOTIFY option, enabled by default
- Add JSONC option, disabled by default

These options allow controlling two optional dependencies of girara,
which where being silently linked if present on the system when
compiling.

PR:		224876
Submitted by:	pawel@
MFH:		2018Q1
2018-01-13 22:15:33 +00:00
Alexey Dokuchaev
7b85b686ee Remove superfluous linefeeds and fix some other minor whitespace bugs. 2018-01-11 16:53:44 +00:00
Alexey Dokuchaev
a247b2f47d Do not abuse INSTALL_MAN when installing documentation, examples, and
other miscellaneous files that are not actually manual pages (part 2).
2018-01-11 14:18:01 +00:00
Pietro Cerutti
5a837a9e2c x11-toolkits/tk86: fix plist
Reported by:	Joachim Moskalewski <moskalewski@jmos.net>
2018-01-10 08:22:03 +00:00
Mathieu Arnold
bb5196a149 Remove support for variables that have been deprecated for a while.
variables                  deprecation       revision
WITHOUT_NLS                2013-12-13        r336337
WITH_/WITHOUT_             2014-02-24        r345870
NOPORT(DOC|EXAMPLE)S       2014-04-19        r351587
WITH_BDB_VER               2016-05-02        r414444
OVERRIDE_LINUX_BASE_PORT   2016-09-05        r421387
WITH_OPENSSL_(BASE|PORT)   2016-06-16        r416965

While there, add an ERROR variable that works like DEV_ERROR, but for
user facing errors, and move NOPORTDOCS,
NOPORTEXAMPLES and WITHOUT_NLS to it.

Cleanup bsd.sanity.mk a bit.

Fix fallout.

PR:		224613
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D13490
2018-01-09 07:40:55 +00:00
Raphael Kubo da Costa
ee9a6bfbf3 New port: x11-toolkits/qt5-gtkplatform
gtkplatform is a Qt Platform Abstraction plugin providing Qt applications with
the capability to use GTK+ as a host toolkit.

It lets Qt applications render with native GTK+ menus, and use GTK+ for input
(mouse, keyboard, touch), and getting window content on screen, the same as it
uses e.g. Cocoa on macOS.

WWW: https://github.com/CrimsonAS/gtkplatform

PR:		224453
Submitted by:	Greg V <greg@unrelenting.technology>
2018-01-08 21:59:15 +00:00
Jan Beich
c425ccee01 x11-toolkits/gtkmm20: unbreak build with Clang 6 (C++14 by default)
In file included from module.cc:3:
../../glib/glibmm/module.h:30:1: error: no member named 'string' in the global namespace; did you mean '::std::string'?
GTKMM_USING_STD(string)
^~~~~~~~~~~~~~~~~~~~~~~
../../glib/glibmmconfig.h:60:57: note: expanded from macro 'GTKMM_USING_STD'
 #  define GTKMM_USING_STD(Symbol) namespace std { using ::Symbol; }
                                                         ^~
/usr/include/c++/v1/iosfwd:194:65: note: '::std::string' declared here
typedef basic_string<char, char_traits<char>, allocator<char> > string;
                                                                ^
class.cc:40:5: error: non-constant-expression cannot be narrowed from type 'guint'
      (aka 'unsigned int') to 'guint16' (aka 'unsigned short') in initializer list
      [-Wc++11-narrowing]
    base_query.class_size,
    ^~~~~~~~~~~~~~~~~~~~~
class.cc:40:5: note: insert an explicit cast to silence this issue
    base_query.class_size,
    ^~~~~~~~~~~~~~~~~~~~~
    static_cast<guint16>()
[...]

Reported by:	antoine (via bug 224669)
Obtained from:	upstream (glibmm 2.31.2)
Suggested by:	tijl (autoreconf)
2018-01-08 17:07:41 +00:00
Raphael Kubo da Costa
e2979955fd Fix the build on i386 with clang 6.0.
kernel/qx11embed_x11.cpp:486:20: error: non-constant-expression cannot be narrowed from type 'unsigned int' to 'long' in initializer list [-Wc++11-narrowing]
    long data[] = {XEMBED_VERSION, XEMBED_MAPPED};
                   ^~~~~~~~~~~~~~
kernel/qx11embed_x11.cpp:486:20: note: insert an explicit cast to silence this issue
    long data[] = {XEMBED_VERSION, XEMBED_MAPPED};
                   ^~~~~~~~~~~~~~
                   static_cast<long>( )

PR:		224945
2018-01-07 21:53:15 +00:00
Tobias C. Berner
5bb6e4c894 x11-toolkits/qt5-gui, fix build with clang 6
PR:		224945
Submitted by:	jbeich
Reported by:	jbeich
2018-01-07 10:08:22 +00:00
Tobias C. Berner
1eb14e9a55 x11-toolkits/attica fix build with clang6
PR:		224945
Reported by:	jbeich
2018-01-06 22:02:46 +00:00
Raphael Kubo da Costa
f6ceca6350 Update Qt5 ports to 5.9.3.
This took quite a lot of time because Qt's own build system underwent
several changes in 5.8.0 that took a while to adapt to.

And, of course, qt5-webengine is a behemoth that we need to patch like crazy
due to its bundling of Chromium. In fact, most of the Chromium patches in
qt5-webengine have been imported with no changes from www/chromium@433510
("www/chromium: update to 56.0.2924.87").

New port: accessibility/qt5-speech

Bigger changes to Qt5 ports we had to make:
- Qt now allows using a configure.json file to define configuration options
  and specify configuration checks that can be done when qmake is invoked.
  However, configure.json checks done in a subdirectory only propagates to
  subdirectories, and checks elsewhere will fail if all .pro files are being
  parsed at once (i.e. qmake -recursive), so several ports had to switch to
  USES=qmake:norecursive along with manual additional qmake invocations in
  subdirectories in order to work. It's been mentioned in a few places such
  as Qt's bug tracker that qmake's recursive mode is pretty much deprecated,
  so we might switch to non-recursive mode by default in the future.

- Uses/qmake.mk: Introduce QMAKE_CONFIGURE_ARGS. qmake now accepts
  arbitrary options such as '-foo' and '-no-bar' at the end of the
  command-line. They can be specified in QMAKE_CONFIGURE_ARGS.

- graphics/qt5-wayland: The port can only be built if graphics/mesa-libs is
  built with the WAYLAND option, so a corresponding option (off by default)
  was added to the port.

- misc/qt5-doc: Switch to a pre-built documentation tarball. The existing
  port was not working with Qt 5.9. Instead of trying to fix it, switch to
  what Gentoo does and fetch a tarball that already contains all
  documentation so that we do not have to build anything at all. The
  tarball's name and location in download.qt.io look a bit weird, but it
  seems to work fine.

- www/qt5-webengine: Use binutils from ports, Chromium's GN build system
  generates a build.ninja that uses ar(1) with the @file syntax that is not
  supported by BSD ar, so we need to use GNU ar from binutils.

- x11-toolkits/qt5-declarative-render2d: This port was merged into the main
  Qt Declarative repository upstream, and into x11-toolkits/qt5-quick in the
  ports tree.

Changes to other ports we had to make:
- biology/ugene: Drop a '#define point "."' that is not present in more
  recent versions of the port. Defining a macro with such a common name
  causes build issues with Qt 5.9, which uses |point| as an argument name in
  methods.

- cad/qelectrotech: Fix plist with Qt 5.9. Directories are no longer
  installed with `cp -f -R', but rather `qmake install qinstall', which does
  not install

    %%DATADIR%%/elements/10_electric/20_manufacturers_articles/bosch_rexroth/.directory

  That's a local file that should not even have been part of the tarball
  anyway.

- chinese/gcin-qt5: Add additional private Qt directories (which should not
  be used in the first place) to get the port to build with Qt 5.9.

- devel/qtcreator: Fix plist with Qt 5.9. Something changed in qdoc and some
  test classes no longer generate documentation files.

- security/keepassx-devel: Import a patch sent upstream almost a year ago to
  fix the build with Qt 5.9.

Thanks to antoine for the exp-run, and tcberner and Laurent Cimon
<laurent@nuxi.ca> for landing changes in our qt-5.9 branch.

PR:		224849
2018-01-06 21:30:31 +00:00
Antoine Brodin
a22536ea05 Unbreak poudriere bulk -a, py-opencv works only with python 2.7
Reported by:	pkg-fallout
2018-01-06 09:17:39 +00:00
David Naylor
2c3ff2024f Update ancillary mono ports
x11-toolkits/gnome-sharp20:
 - update to version 2.24.4
 - use github for sources
 - use autoreconf and provided bootstrap script (pre-configure)
 - remove gettext-runtime, not used by port
 - order USES section, move non-USES related variables to own section

x11-toolkits/gtk-sharp20:
 - update to version 2.12.45
 - remove gettext-runtime, not used by port
 - order USES section, move non-USES related variables to own section

Differential Revision:	https://reviews.freebsd.org/D13751
2018-01-06 08:44:30 +00:00
David Naylor
c0cef9b841 x11-toolkits: update to 1.10.0
- Remove LOCAL mirror (not needed)
 - Add git build dependency
 - Add missing pygment dependency
 - Sort USES section and USE_PYTHON variable
 - Indicate that the port supports Python 3 (thus adding FLAVORS)
 - Make sphinx dependency versions (i.e. support python 3)
 - Add missing dependencies for GSTREAMER option:
   - gettext-runtime
   - glib20
 - Add missing dependency for X11 option: render (x11)
 - Remove PDF install target, no longer an option
 - Remove pkg-plist that is autogenerated (only DOCS remains)
 - Change log: https://kivy.org/#changelog

PR:		224734
Submitted by:	Christian Sturm <reezer@reezer@org>
2018-01-06 07:59:20 +00:00
Pietro Cerutti
8aecb9e675 x11-toolkits/pure-tk: adjust for new Tk pkg-config file 2018-01-04 12:58:50 +00:00
Pietro Cerutti
b6151cde13 x11-toolkits/tk8[56]: adjust pkgconf files to reflect their tcl equivalents
PR:		224819
Reported by:	Ting-Wei Lan <lantw44@gmail.com>
2018-01-04 08:54:45 +00:00
David Naylor
52777f3f56 lang/pypy(3): update to 5.10, add flavors to ancillary ports
- Consistently use DISTVERSION instead of PORTVERSION (the former is set, not the latter)
 - Only depend on libunwind on x86 arch with FreeBSD >= 11 (fixes ignored build on arm/ppc)
 - Fix python dependency with depreciation of python meta ports
 - Remove PYPY_BITS from pkg-plist target, no longer used
 - Remove setting of PORTVERSION, DISTVERSION is set in bsd.pypy.mk
 - bsd.pypy.mk:
   - Define DISTVERSION once, to ensure consistency
   - PYPY_DIR: Handle versions with multiple digits
   - PYPY_CFFI_VER now differs in value between pypy and pypy3
 - bsd.pypy.cffi.mk:
   - Add FLAVORS for pypy and pypy3 [1]
   - Consistently use PYTHON_IMPL instead of the hard coded "pypy"
   - PLIST_FILES: use direct substitution instead of PLIST_SUB

Approved by:		portmgr (mat) [1]
Differential Revision:	https://reviews.freebsd.org/D13675
2018-01-03 18:42:15 +00:00
Raphael Kubo da Costa
a9709471be Update SIP to 4.19.6, PyQt4 to 4.12.1 and PyQt5 to 5.9.2.
Upstream no longer ships the contents of misc/py-qt5-doc, so the port has been
removed.

This is also a requirement for updating the Qt5 ports, as the PyQt5 version
currently in the tree has license conflicts with later Qt versions.

Big thanks to tcberner for doing most of the work here, and antoine for the
exp-run.

PR:		224739
2018-01-02 20:21:34 +00:00
Pietro Cerutti
3310c2fb17 lang/tcl86, x11-toolkits/tk86: update to 8.6.8
Announcement: https://sourceforge.net/p/tcl/mailman/message/36166576/

While at it, rename pkg-config files to avoid conflict with Tcl/Tk 8.7 [1].

PR:		224819 [1]
Reported by:	Ting-Wei Lan <lantw44@gmail.com>
2018-01-02 10:39:22 +00:00
Sunpoet Po-Chuan Hsieh
b3d0ebde2f Update to 0.45
- Add LICENSE

Changes:	http://search.cpan.org/dist/Tk-HistEntry/Changes
2018-01-01 20:59:03 +00:00
Sunpoet Po-Chuan Hsieh
849b56c328 Update to 1.11.1
- Change WWW to PyPI: old WWW disapppeared

Changes:	https://github.com/stoq/kiwi/commits/master
2017-12-28 13:41:44 +00:00
Pawel Pekala
99af13d1d5 Update to version 2.2.15 2017-12-27 22:16:22 +00:00
Antoine Brodin
3a678350fb Deprecate ports broken for more than 6 months 2017-12-27 09:30:47 +00:00
Guido Falsi
936925e306 - Update x11-toolkits/girara to 0.2.8
- Add dependencies reported by stage-qa
- Pet portlint
- Chase shlib version bump
2017-12-25 20:52:52 +00:00
Jan Beich
870b400329 x11-toolkits/mygui: lift BROKEN after r456766 2017-12-20 06:48:25 +00:00
Dmitry Marakasov
1eb74d7951 - Update to latest git, fixes c++11 problems
PR:		220189
2017-12-19 20:18:23 +00:00
Mark Linimon
f1696c0036 Mark more recently failing ports broken on aarch64.
While here, pet portlint and reformat some other BROKEN statements.

Approved by:	portmgr (tier-2 blanket)
2017-12-19 14:41:29 +00:00
Tobias C. Berner
d7b037be20 Update KDE Frameworks to 5.41
PR:		224227
Exp-run by:	antoine
Reviewed by:	adridg, rakuco
Differential Revision:	https://reviews.freebsd.org/D13367
2017-12-14 20:15:52 +00:00
Dmitry Marakasov
dc3ac9a0b2 - Update WWW
Approved by:	portmgr blanket
2017-12-14 09:00:34 +00:00
Antoine Brodin
a021c1b8c0 - Those ports fail to build with python3
- Add some explicit FLAVOR to dependencies where needed
2017-12-10 20:48:45 +00:00
Mark Linimon
e8210b4758 Mark more ports broken that fail on both armv6 and armv7.
Approved by:	portmgr (tier-2 blanket)
2017-12-09 00:42:05 +00:00
Steve Wills
30084ab6ef x11-toolkits/gtk30: add dependency on librsvg2
PR:		222495
Submitted by:	Anton Yuzhaninov <citrin+pr@citrin.ru>
Approved by:	gnome@ (kwm)
2017-12-08 15:31:37 +00:00
Cy Schubert
bfc4f0ed77 Update 2.3.7 --> 2.3.8 2017-12-06 15:26:00 +00:00
Cy Schubert
081fb04143 Adjust MASTER_SITES to replace a hardcoded version number with
PORTVERSION.
2017-12-06 15:19:36 +00:00
Antoine Brodin
87100f9d42 py-wax doesn't work with python3 2017-12-04 20:45:56 +00:00
David Chisnall
f9197640d9 Fix configure options for gnustep-make
We were not setting the flag to select the GNUstep ABI, so were defaulting to
using the GCC-compatible version, which was likely to trigger a lot of subtle
bugs.  This was noticed when C++ exceptions thrown through Objective-C stack
frames caused segfaults.
2017-12-03 12:23:53 +00:00
Dmitry Marakasov
ceedceaaa5 - Add LICENSE
- Switch to USES=localbase
- Switch to USE_CXXSTD

Approved by:	portmgr blanket
2017-12-01 20:53:00 +00:00
Dmitry Marakasov
1d2761f5a4 - Add LICENSE
- Switch to USES=localbase

Approved by:	portmgr blanket
2017-12-01 13:37:52 +00:00
Antoine Brodin
07faea058d Cleanup LIB_DEPENDS on libpng 2017-12-01 07:19:53 +00:00
Mathieu Arnold
551be3c723 Convert Python ports to FLAVORS.
Ports using USE_PYTHON=distutils are now flavored.  They will
  automatically get flavors (py27, py34, py35, py36) depending on what
  versions they support.

  There is also a USE_PYTHON=flavors for ports that do not use distutils
  but need FLAVORS to be set.  A USE_PYTHON=noflavors can be set if
  using distutils but flavors are not wanted.

  A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been
  added to cope with Python ports that did not have the Python
  PKGNAMEPREFIX but are flavored.

  USES=python now also exports a PY_FLAVOR variable that contains the
  current python flavor.  It can be used in dependency lines when the
  port itself is not python flavored.  For example, deskutils/calibre.

  By default, all the flavors are generated.  To only generate flavors
  for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define
  BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf.

  In all the ports with Python dependencies, the *_DEPENDS entries MUST
  end with the flavor so that the framework knows which to build/use.
  This is done by appending '@${PY_FLAVOR}' after the origin (or
  @${FLAVOR} if in a Python module with Python flavors, as the content
  will be the same).  For example:

    RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}

PR:		223071
Reviewed by:	portmgr, python
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D12464
2017-11-30 15:50:30 +00:00
Mark Linimon
bf43557044 For ports that are marked BROKEN on armv6, and also fail to build on
armv7, mark them so.

This is part two of a multipart commit to bring armv7 ports to parity
with armv6.

Approved by:	portmgr (tier-2 blanket)
Obtained from:	lonesome.com -exp run
2017-11-30 06:13:34 +00:00
Dmitry Marakasov
0dd17df2f4 - Switch to USES=localbase
- Update WWW

Approved by:	portmgr blanket
2017-11-28 11:47:42 +00:00
Alexey Dokuchaev
97dcc0f3cc Remove `groff' from USES.
It was recently killed in the base system and consumers have to use
`textproc/groff' port now, which is a real PITA: it pulls in some
obscure dependencies like `print/psutils', `graphics/netpbm', but
most importantly, `ghostscript' (unconditionally), which is a huge
abomination of its own, pulling another round of dependencies, some
of which are as crazy as `graphics/svgalib' (sic).  Trying to reset
all offered knobs to `off' results in unbuildable package.

Pass NROFF as mere `echo' and be done with it.  Generated manpages
remain identical.
2017-11-22 11:06:43 +00:00
Rene Ladan
7fc25c874c Remove expired ports:
2017-11-20 news/brag: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 textproc/srilm: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 x11-toolkits/tk84: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 devel/tkinspect: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 games/bogged: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 games/ttraffic: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 games/ifm: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 games/tksol: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 lang/tcl84: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 mail/tkrat2: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 multimedia/dtv: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 net-mgmt/netwag: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-21 18:50:58 +00:00
Sunpoet Po-Chuan Hsieh
6d2a05b5d2 Update to 3.2.1
Changes:	https://github.com/ruby-gnome2/ruby-gnome2/blob/master/NEWS
2017-11-21 18:15:58 +00:00