aboutsummaryrefslogtreecommitdiff
path: root/accessibility
Commit message (Collapse)AuthorAgeFilesLines
* Reduce dependency on the python2 metaportAntoine Brodin2018-02-192-3/+4
| | | | | | | | PR: 225752 Submitted by: Yasuhiro KIMURA Notes: svn path=/head/; revision=462307
* - Add LICENSEDmitry Marakasov2018-02-141-3/+4
| | | | | | | | | - Switch to USES=localbase Approved by: portmgr blanket Notes: svn path=/head/; revision=461811
* Follow up to r461375Tobias C. Berner2018-02-102-36/+0
| | | | | | | | | | | | | * Remove the (origins of the) copied ports manually (as the new ones are repo-copies of these, no history is lost). * Fixup index in games/Makefile Sorry for the breakage. Pointy hat: tcberner Notes: svn path=/head/; revision=461387
* Rename KDE4 meta portsTobias C. Berner2018-02-108-6/+43
| | | | | | | | | | | | | | This is done for * consistency, * and to simplify the import of the newer KDE Plasma5 desktop and KDE applications Bumps the dependencies. Reviewed by: adridg Differential Revision: https://reviews.freebsd.org/D12979 Notes: svn path=/head/; revision=461375
* - Fix shebangs for py-speech-dispatcherDmitry Marakasov2018-02-032-2/+3
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=460827
* Do not use %%PYTHON_PYOEXTENSION%% in python2 plistsAntoine Brodin2018-01-201-24/+24
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=459549
* This is a port of sct, a simple command-line utility written by Ted Unangst,Mark Felder2018-01-164-0/+40
| | | | | | | | | | | | | | | | | | | which can be used to control screen temperature. It exceeds at being much more lightweight than similar software solutions like Redshift and f.lux. At the same time it is easier to use than xrandr. Sct takes temperature values in range 1000 to 10000, where 6500 is the default value. Here are some usage examples: * Campfire style: `sct 4500` * Dust storm on Mars style: `sct 2000` * Coffee free all nighter style: `sct 8000` * Default style: `sct` WWW: https://www.tedunangst.com/flak/post/sct-set-color-temperature Notes: svn path=/head/; revision=459211
* accessiblity/qt4-accessbile, fix build with clang6Tobias C. Berner2018-01-061-1/+2
| | | | | | | | PR: 224945 Reported by: jbeich Notes: svn path=/head/; revision=458296
* Update Qt5 ports to 5.9.3.Raphael Kubo da Costa2018-01-063-0/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=458293
* Cleanup Mk/Uses/gnome.mk.Mathieu Arnold2018-01-033-6/+2
| | | | | | | | | | | | | | | | | - Remove the use of comp_DETECT. - Remove all comp_DETECT variables. - Remove a use of comp_DETECT outside of gnome.mk - Remove py3gobject3. - Have ports depending directly on devel/py-gobject3 use gnome to do it. PR: 224618 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D13550 Notes: svn path=/head/; revision=457964
* Convert Python ports to FLAVORS.Mathieu Arnold2017-11-3013-56/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=455210
* Update to 3.2.1Sunpoet Po-Chuan Hsieh2017-11-212-4/+4
| | | | | | | Changes: https://github.com/ruby-gnome2/ruby-gnome2/blob/master/NEWS Notes: svn path=/head/; revision=454624
* Update to 3.2.0Sunpoet Po-Chuan Hsieh2017-11-092-4/+4
| | | | | | | Changes: https://github.com/ruby-gnome2/ruby-gnome2/blob/master/NEWS Notes: svn path=/head/; revision=453824
* Fix pkg-plist.Tijl Coosemans2017-10-291-1/+0
| | | | Notes: svn path=/head/; revision=453105
* Update Linux CentOS 7 ports to 7.4.1708.Tijl Coosemans2017-10-264-14/+16
| | | | Notes: svn path=/head/; revision=452945
* Update to 3.1.9Sunpoet Po-Chuan Hsieh2017-10-192-4/+4
| | | | | | | Changes: https://github.com/ruby-gnome2/ruby-gnome2/blob/master/NEWS Notes: svn path=/head/; revision=452430
* the WWW link is 404Baptiste Daroussin2017-10-121-2/+0
| | | | Notes: svn path=/head/; revision=451837
* - Fix LICENSEDmitry Marakasov2017-09-192-3/+4
| | | | | | | | | | | - Add LICENSE_FILE - Update WWW - Pet portlint Approved by: portmgr blanket Notes: svn path=/head/; revision=450107
* - Fix LICENSEDmitry Marakasov2017-09-162-5/+4
| | | | | | | | | | | - Add LICENSE_FILE - Switch to USES=localbase - Update WWW Approved by: portmgr blanket Notes: svn path=/head/; revision=449958
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2017-09-101-0/+1
| | | | | | | | | | | | | | | | | (via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275 Notes: svn path=/head/; revision=449591
* Update to 3.1.8Sunpoet Po-Chuan Hsieh2017-07-153-5/+5
| | | | | | | | | - Update WWW Changes: https://github.com/ruby-gnome2/ruby-gnome2/blob/master/NEWS Notes: svn path=/head/; revision=445934
* Update to 3.1.7Sunpoet Po-Chuan Hsieh2017-07-142-4/+4
| | | | | | | Changes: https://github.com/ruby-gnome2/ruby-gnome2/blob/master/NEWS Notes: svn path=/head/; revision=445767
* Update to 3.1.6Sunpoet Po-Chuan Hsieh2017-07-092-4/+4
| | | | | | | Changes: https://github.com/ruby-gnome2/ruby-gnome2/blob/master/NEWS Notes: svn path=/head/; revision=445370
* accessibility/redshift: fix shebangsMark Felder2017-06-091-2/+6
| | | | | | | | | | - Also add LICENSE and LICENSE_FILE PR: 219526 MFH: 2017Q2 Notes: svn path=/head/; revision=443042
* Fix qt4 ports on armv6.Tobias C. Berner2017-06-061-1/+1
| | | | | | | | | | | | | | | Due to a misspelling in GCC [1] (probably) the check for the ARMv6KZ platform used ARM_ARCH_6ZK instead of ARM_ARCH_6KZ. [1] https://gcc.gnu.org/ml/gcc-patches/2015-06/msg01679.html PR: 210027 Submitted by: Mikaƫl Urankar <mikael.urankar@gmail.com> Reviewed by: rakuco Differential Revision: https://reviews.freebsd.org/D8322 Notes: svn path=/head/; revision=442740
* Update to 3.1.4Sunpoet Po-Chuan Hsieh2017-05-312-4/+4
| | | | | | | Changes: https://github.com/ruby-gnome2/ruby-gnome2/blob/master/NEWS Notes: svn path=/head/; revision=442190
* Introduce Perl 5.26.Mathieu Arnold2017-05-311-0/+1
| | | | | | | | | | | | | | | | A few important changes: - '.' is no longer in @INC. - "do" now gives a deprecation warning when it fails to load a file which it would have loaded had "." been in @INC. - In regular expression patterns, a literal left brace "{" should be escaped. Changes: https://metacpan.org/pod/release/XSAWYERX/perl-5.26.0/pod/perldelta.pod Sponsored by: Absolight Notes: svn path=/head/; revision=442144
* Revision bump of all ports with USE_GL after consolidation of mesa-libsMatthew Rezny2017-05-231-1/+1
| | | | | | | | Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D10845 Notes: svn path=/head/; revision=441503
* Sprinkle some fixes to make these ports build on ARCH's that don'tKoop Mast2017-05-061-1/+2
| | | | | | | | | | have clang as the default compiler. Submitted by: jhibbits@ Differential Revision: https://reviews.freebsd.org/D10628 Notes: svn path=/head/; revision=440288
* Update to 3.1.3Sunpoet Po-Chuan Hsieh2017-04-282-5/+7
| | | | | | | | | | | - Add BUILD_DEPENDS - Add NO_ARCH - Add USES=gnome Changes: https://github.com/ruby-gnome2/ruby-gnome2/blob/master/NEWS Notes: svn path=/head/; revision=439651
* Chase ffmpeg 3.3 update (ABI changes)Thomas Zander2017-04-256-0/+6
| | | | | | | | PR: 218658 Submitted by: riggs Notes: svn path=/head/; revision=439367
* Fix plist with non-default versions of python3Antoine Brodin2017-04-011-48/+48
| | | | Notes: svn path=/head/; revision=437493
* Update to 2.24Baptiste Daroussin2017-04-016-87/+89
| | | | Notes: svn path=/head/; revision=437483
* Update to 2.24.2Baptiste Daroussin2017-04-013-7/+9
| | | | Notes: svn path=/head/; revision=437482
* Update to 0.4.21Baptiste Daroussin2017-04-013-3/+8
| | | | Notes: svn path=/head/; revision=437471
* Really remove at-spiBaptiste Daroussin2017-04-015-242/+0
| | | | Notes: svn path=/head/; revision=437470
* Remove some old gnome2 ports not depend on anymore and not maintained upstreamBaptiste Daroussin2017-04-0121-1701/+0
| | | | Notes: svn path=/head/; revision=437468
* remove gnome-mag: remnant from gnome2 not used anymoreBaptiste Daroussin2017-04-016-165/+0
| | | | Notes: svn path=/head/; revision=437467
* Update to 2.24.0Baptiste Daroussin2017-04-013-7/+11
| | | | | | | | Move the default config file to share/default like upstream expects, the one in sysconfdir will be still looked at Notes: svn path=/head/; revision=437465
* Update to 2.24.0Baptiste Daroussin2017-04-012-3/+4
| | | | Notes: svn path=/head/; revision=437464
* Actually the license if LGPL21Baptiste Daroussin2017-04-011-1/+1
| | | | Notes: svn path=/head/; revision=437463
* Update to 2.24.0Baptiste Daroussin2017-04-013-5/+10
| | | | | | | Add license Notes: svn path=/head/; revision=437462
* x11/rubygem-gnome2: update to 3.1.1Steve Wills2017-03-102-4/+4
| | | | | | | Update x11/rubygem-gnome2 and friends to 3.1.1 Notes: svn path=/head/; revision=435846
* Update Qt5 to 5.7.1, and unify the Qt4 and Qt5 ports some moreTobias C. Berner2017-02-181-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Update Qt5 to 5.7.1 * Move Qt4 binaries to lib/qt4/bin * Move Qt5 libraries to lib/qt5/lib By moving the libraries we should finally be able to get rid of the inplace upgrade bug (see ports bugs 194088, 195105 and 198720): when Qt5's libraries were lying in /usr/local/lib, which would often get added by pkgconfig to the linker paths via dependencies, the already installed libraries were linked against, instead of the ones that were being built. This forced us to make sure, that -L${WRKSRC}/lib was always coming before -L/usr/local/lib in the linker flags. With this change this should no longer be the case. * Rename some ports to match the rest (foo-qtX -> qtX-foo) * Depend on new port misc/qtchooser [see UPDATING & CHANGES] There are several new Qt5 ports which all have been created by Marie Loise Nolden <nolden@kde.org>. Thanks again. PR: 216797 Exp-Run by: antoine Reviewed by: rakuco, mat, groot_kde.org Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D9213 Notes: svn path=/head/; revision=434380
* - Add LICENSEDmitry Marakasov2017-02-051-4/+7
| | | | | | | | - Switch to options helpers - Pet portlint Notes: svn path=/head/; revision=433399
* Enable i386 support to Linux CentOS 7 ports.Tijl Coosemans2017-01-311-0/+104
| | | | | | | PR: 216646 Notes: svn path=/head/; revision=432953
* - Autodetect the installed linux_base port and use LINUX_DEFAULT only asTijl Coosemans2017-01-3112-331/+323
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a last resort. - Construct a list of DISTFILES for every architecture (amd64, i386). Select one list for regular make and all lists for make makesum so linux ports can have one combined distinfo file. - Set DIST_SUBDIR?=centos so there's only one copy of common distfiles. - Use MASTER_SITES and DISTFILES groups so make fetch is a bit smarter. - Regenerate all distinfo files. - For linux_base-c6 (just like linux_base-c7 already does) turn bin, lib, lib64 and sbin into symbolic links to the same directory under usr. This fixes the problem where some programs/libraries exist under / on FreeBSD and /usr on Linux or vice versa and then depending on the order of search paths Linux programs may run/load FreeBSD programs/libraries and fail. - Turn usr/share/icons into a symbolic link to LOCALBASE/share/icons so Linux programs can find desktop theme icons. This eliminates the need for x11-themes/linux*-hicolor-icon-theme. - Rename pkg-plist.x86_64 to pkg-plist.amd64. - Regenerate all pkg-plist files. - Add @preexec to linux_base pkg-plist that moves existing files in bin, lib, lib64, sbin and icons to the new destination before the directories are turned into symbolic links. - Remove several empty directories from linux_base ports. - Sweep over all linux ports: use consistent style, remove old CONFLICTS, remove unused pkg-descr files, add NLS option,... - Remove old linux arts, esound and openssl-compat ports. Notes: svn path=/head/; revision=432937
* Reset mva@'s ports, he handed in his ports bit.Rene Ladan2017-01-221-1/+1
| | | | Notes: svn path=/head/; revision=432169
* Update Linux CentOS 7 ports to 7.3.1611. While 7.2 had semi-official i386Tijl Coosemans2017-01-194-117/+9
| | | | | | | | | | | | | | | packages there are no such packages for 7.3 yet so i386 support has been marked IGNORE for now. Change DIST_SUBDIR to just "centos" so distfiles that remain the same between major versions don't have to be redownloaded. Remove fmake hacks from linux.mk. Submitted by: Piotr Kubaj <pkubaj@anongoth.pl> Notes: svn path=/head/; revision=431882
* Make 64 bit Linux packages the default on amd64.Tijl Coosemans2017-01-121-0/+1
| | | | Notes: svn path=/head/; revision=431245