aboutsummaryrefslogtreecommitdiff
path: root/x11-toolkits
Commit message (Collapse)AuthorAgeFilesLines
* Remove expat dependency.Tijl Coosemans2016-11-062-4/+4
| | | | Notes: svn path=/head/; revision=425489
* x11-toolkits/scintilla, editors/scite: update to 3.7.0Jan Beich2016-11-062-4/+4
| | | | | | | | | Changes: http://www.scintilla.org/ScintillaHistory.html PR: 213556 Submitted by: Naram Qashat <cyberbotx@cyberbotx.com> (maintainer) Notes: svn path=/head/; revision=425459
* Add linux-c7-harfbuzz and linux-c7-graphite2, needed by linux-c7-pango.Tijl Coosemans2016-11-052-2/+3
| | | | | | | PR: 214232 Notes: svn path=/head/; revision=425389
* Bump PORTREVISION to regenerate immodules cache after fixing linux-c7-cairo.Tijl Coosemans2016-11-051-0/+1
| | | | Notes: svn path=/head/; revision=425388
* x11-toolkits/nucleo: oops, restore size check after r425305Jan Beich2016-11-042-2/+2
| | | | | | | PR: 207547 Notes: svn path=/head/; revision=425324
* x11-toolkits/nucleo: unbreak build with ffmpeg 3.xJan Beich2016-11-044-13/+134
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In file included from nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:14: nucleo/plugins/ffmpeg/ffmpegImageSink.H:39:10: error: ISO C++ forbids forward references to 'enum' types enum PixelFormat srcEncoding ; ^ nucleo/plugins/ffmpeg/ffmpegImageSink.H:39:22: error: field has incomplete type 'enum PixelFormat' enum PixelFormat srcEncoding ; ^ nucleo/plugins/ffmpeg/ffmpegImageSink.H:39:10: note: forward declaration of 'nucleo::PixelFormat' enum PixelFormat srcEncoding ; ^ nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:131:44: error: use of undeclared identifier 'CODEC_ID_NONE'; did you mean 'AV_CODEC_ID_NONE'? else if (output_format->video_codec == CODEC_ID_NONE) { ^~~~~~~~~~~~~ AV_CODEC_ID_NONE /usr/local/include/libavcodec/avcodec.h:192:5: note: 'AV_CODEC_ID_NONE' declared here AV_CODEC_ID_NONE, ^ nucleo/plugins/ffmpeg/ffmpegImageSource.cxx:132:8: error: use of undeclared identifier 'PIX_FMT_GRAY8'; did you mean 'AV_PIX_FMT_GRAY8'? case PIX_FMT_GRAY8: ^~~~~~~~~~~~~ AV_PIX_FMT_GRAY8 /usr/local/include/libavutil/pixfmt.h:70:5: note: 'AV_PIX_FMT_GRAY8' declared here AV_PIX_FMT_GRAY8, ///< Y , 8bpp ^ nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:265:34: error: use of undeclared identifier 'PIX_FMT_GRAY8'; did you mean 'AV_PIX_FMT_GRAY8'? case Image::L: srcEncoding = PIX_FMT_GRAY8 ; break ; ^~~~~~~~~~~~~ AV_PIX_FMT_GRAY8 /usr/local/include/libavutil/pixfmt.h:70:5: note: 'AV_PIX_FMT_GRAY8' declared here AV_PIX_FMT_GRAY8, ///< Y , 8bpp ^ nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:266:42: error: use of undeclared identifier 'PIX_FMT_YUV420P'; did you mean 'AV_PIX_FMT_YUV420P'? case Image::YpCbCr420: srcEncoding = PIX_FMT_YUV420P ; break ; ^~~~~~~~~~~~~~~ AV_PIX_FMT_YUV420P /usr/local/include/libavutil/pixfmt.h:62:5: note: 'AV_PIX_FMT_YUV420P' declared here AV_PIX_FMT_YUV420P, ///< planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples) ^ nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:267:28: error: use of undeclared identifier 'PIX_FMT_RGB24'; did you mean 'AV_PIX_FMT_RGB24'? default: srcEncoding = PIX_FMT_RGB24 ; break ; ^~~~~~~~~~~~~ AV_PIX_FMT_RGB24 /usr/local/include/libavutil/pixfmt.h:64:5: note: 'AV_PIX_FMT_RGB24' declared here AV_PIX_FMT_RGB24, ///< packed RGB 8:8:8, 24bpp, RGBRGB... ^ nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:270:5: error: use of undeclared identifier 'avcodec_get_frame_defaults' avcodec_get_frame_defaults(&srcPic) ; ^ nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:274:3: error: use of undeclared identifier 'avcodec_get_frame_defaults' avcodec_get_frame_defaults(&convPic) ; ^ nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:303:22: error: use of undeclared identifier 'PIX_FMT_RGB24'; did you mean 'AV_PIX_FMT_RGB24'? if (srcEncoding==PIX_FMT_RGB24) convertImage(img, Image::RGB) ; ^~~~~~~~~~~~~ AV_PIX_FMT_RGB24 /usr/local/include/libavutil/pixfmt.h:64:5: note: 'AV_PIX_FMT_RGB24' declared here AV_PIX_FMT_RGB24, ///< packed RGB 8:8:8, 24bpp, RGBRGB... ^ nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:329:20: error: use of undeclared identifier 'avcodec_encode_video'; did you mean 'avcodec_encode_video2'? int out_size = avcodec_encode_video(cctx, video_outbuf, video_outbuf_size, picture) ; ^~~~~~~~~~~~~~~~~~~~ avcodec_encode_video2 /usr/local/include/libavcodec/avcodec.h:5322:5: note: 'avcodec_encode_video2' declared here int avcodec_encode_video2(AVCodecContext *avctx, AVPacket *avpkt, ^ nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:329:47: error: cannot initialize a parameter of type 'AVPacket *' with an lvalue of type 'uint8_t *' (aka 'unsigned char *') int out_size = avcodec_encode_video(cctx, video_outbuf, video_outbuf_size, picture) ; ^~~~~~~~~~~~ /usr/local/include/libavcodec/avcodec.h:5322:60: note: passing argument to parameter 'avpkt' here int avcodec_encode_video2(AVCodecContext *avctx, AVPacket *avpkt, ^ PR: 207547 Notes: svn path=/head/; revision=425305
* Remove NVIDIA option from Linux ports now that the nvidia-driver can beTijl Coosemans2016-11-032-15/+4
| | | | | | | installed later. Notes: svn path=/head/; revision=425274
* Cleanup no longer needed CHMOD usage after r424898.Mathieu Arnold2016-11-021-3/+0
| | | | | | | | | | PR: 213743 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Notes: svn path=/head/; revision=425174
* Remove expired ports:Rene Ladan2016-11-0110-150/+0
| | | | | | | | | | | | | | | | | | | | | 2016-11-01 math/octave-forge-octgpr: Broken for more than 6 months 2016-11-01 math/octave-forge-spline-gcvspl: Broken for more than 6 months 2016-11-01 www/pear-Services_SharedBook: Broken for more than 6 months 2016-11-01 devel/py-snackwich: Depends on broken and expiring devel/py-snack 2016-11-01 math/octave-forge-ad: Broken for more than 6 months 2016-11-01 math/octave-forge-xraylib: Broken for more than 6 months 2016-11-01 x11-toolkits/py-traitsbackendwx: Broken for more than 6 months 2016-11-01 x11-toolkits/py-traitsgui: Depends on broken and expiring x11-toolkits/py-traitsbackendwx 2016-11-01 security/lsh: Broken for more than 6 months 2016-11-01 devel/py-snack: Broken for more than 6 months 2016-11-01 security/massh: Broken for more than 6 months 2016-11-01 www/hydra: Broken for more than 6 months 2016-11-01 math/py-pyfst: Broken for more than 6 months 2016-11-01 archivers/ruby-zip: Broken will all supported versions of Ruby 2016-11-01 devel/ruby-langscan: Broken will all supported versions of Ruby Notes: svn path=/head/; revision=425096
* lang/mono: update to 4.6.1.5.David Naylor2016-10-313-9/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | USES=mono: add nuget argument The nuget argument adds support for nuget packages. The nuget packages must be specified in the NUGET_DEPENDS variable. devel/monodevelop: update to 6.1.1.15 - Switch to github. The other official source is quite a few versions behind. - Add missing dependencies (fsharp, ssl2, curl) - Add required nuget packages - Add required external repositories - Drop options. Although ./configure offers these flags, there is no functional change (i.e. no-op) - All patches have been upstreamed (and the one we need is from upstream). lang/fsharp: update to 4.0.1.15 - convert to use the nuget argument. ChangeLog: - Fix null condition in Fsc task lang/mono-devel: update to 4.6 - switch to new test target (currently tests the port to be installed) www/gecko-sharp20: depreciate: broken and no-upstream - Give 1 month for anyone to complain that this port is being removed. x11-toolkits/gtk-sharp30: bump PORTREVISION - Add LICENSE information - Add missing dependencies (per stage-qa) x11-toolkits/gtk-sharp20: update to 2.12.40. - Add LICENSE information - Add missing dependencies (per stage-qa) - Change download location per Mono's Gtk# website. PR: 213484 PR: 213796 Reviewed by: mat, romain Differential Revision: https://reviews.freebsd.org/D8339 Notes: svn path=/head/; revision=424974
* Update Qt to 5.6.2 [1,2]Tobias C. Berner2016-10-282-0/+24
| | | | | | | | | | | | | | | | | | | | | | Thanks to the upstream work of Marie Loise Nolden, we could get rid of a handful of patches, as they have been properly upstreamed. The rest of the work is just some minor plist changes. I would like to thank Loise <nolden@kde.org> for the upstream work, and Adriaan <groot@kde.org> for getting the update into shape. [1] http://blog.qt.io/blog/2016/10/12/qt-5-6-2-released/ [2] http://wiki.qt.io/Qt_5.6.2_Change_Files PR: 213530 Exp-run by: antoine Submitted by: Adriaan de Groot <groot@kde.org> Reviewed by: rakuco, mat, tcberner Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D8228 Notes: svn path=/head/; revision=424842
* Remove CONFIGURE_ENV already set by python.mkAntoine Brodin2016-10-251-1/+0
| | | | Notes: svn path=/head/; revision=424638
* OPTIONS_SET/OPTIONS_UNSET are global variables, they cannot be used in ports ↵Mathieu Arnold2016-10-241-1/+1
| | | | | | | | | | | | | | | Makefiles. So, replace them with OPTIONS_SLAVE, OPTIONS_EXCLUDE, OPTIONS_DEFAULT, where appropriate. The ghostscript ports are doing something nasty that is certainly wrong, but I don't want to try to understand it. Sponsored by: Absolight Notes: svn path=/head/; revision=424560
* Use USES=pathfix where applicable.Mathieu Arnold2016-10-213-10/+8
| | | | | | | | | | | PR: 213195 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D8093 Notes: svn path=/head/; revision=424427
* ${RM} already has -f.Mathieu Arnold2016-10-219-12/+12
| | | | | | | | | | PR: 213570 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Notes: svn path=/head/; revision=424411
* Add patch to disable optimizations on a keyboard input functionGuido Falsi2016-10-213-6/+36
| | | | | | | | | | | | | | | | when using the clang compiler. This allows removing the requirement on gcc. Patch based on suggestion from Ivan <bsd@abinet.ru>. Bug has been reported upstream. PR: 213595 Submitted by: Michael Danilov <mike.d.ft402@gmail.com> MFH: 2016Q4 Notes: svn path=/head/; revision=424401
* Reassign makc's ports back to the pool.Raphael Kubo da Costa2016-10-204-4/+4
| | | | | | | | | | | | See "Maintainer Reset" in https://www.freebsd.org/portmgr/policies_contributors.html. makc's last commit was in March 31st (r412218), and his ports have been timing out since at least July (r418155). I also emailed him 2 weeks ago and have received no response so far. Notes: svn path=/head/; revision=424339
* - Add GCC option, turned on by default, to force compilation usingGuido Falsi2016-10-191-5/+14
| | | | | | | | | | | | | | | | | GCC, this fixes a problem in zathura which shows up only when girara is compiled wth clang [1] - Make the port use gnu99 C standard to allow it to compile with the default gcc 4.8 - Remove USES=compiler since it's not needed anymore - Small cosmetic change to the REINPLACE_CMD lines - While here, make the build verbose PR: 213595 Submitted by: Michael Danilov <mike.d.ft402@gmail.com> MFH: 2016Q4 Notes: svn path=/head/; revision=424292
* x11-toolkits/qtermwidget: Adjust CFLAGS to support DragonFlyJohn Marino2016-10-191-3/+7
| | | | | | | | | | The HAVE_UTEMPTER flag is FreeBSD-specific and breaks the build on DragonFly, so make it conditional based on OPSYS. Approved by: DF blanket Notes: svn path=/head/; revision=424270
* Add Linux CentOS 7 infrastructure ports.Tijl Coosemans2016-10-1927-0/+1450
| | | | | | | | | | | | | Mk/Uses/linux.mk changes: - Add support for architecture neutral (noarch) distfiles. - Add support for 64-bit only ports: set IGNORE on i386 and don't install 32-bit compat libraries on amd64. Submitted by: Piotr Kubaj <pkubaj@anongoth.pl> Differential Revision: https://reviews.freebsd.org/D7886 Notes: svn path=/head/; revision=424259
* Fix configure with CUPS 2.2.x.Tijl Coosemans2016-10-171-3/+12
| | | | | | | Reported by: antoine Notes: svn path=/head/; revision=424143
* - Fix LICENSEDmitry Marakasov2016-10-141-20/+5
| | | | | | | - Switch to USES=waf, simplifying the port Notes: svn path=/head/; revision=423973
* Fix build.Mathieu Arnold2016-10-121-11/+0
| | | | | | | | Reported by: pkg-fallout Sponsored by: Absolight Notes: svn path=/head/; revision=423847
* Update to 1.49.Adam Weinberger2016-10-115-11/+22
| | | | | | | Changes: https://metacpan.org/changes/distribution/Prima Notes: svn path=/head/; revision=423763
* graphics/opencv: add suffix to make room for 3.x seriesJan Beich2016-10-031-1/+2
| | | | | | | | | | | | To avoid confusion, the main port is to track the latest release. Whether to rename includes/libraries as well making it possible to install 2.x and 3.x side-by-side remains to be investigated. PR: 210505 (for tracking) Inspired by: PkgSrc Notes: svn path=/head/; revision=423216
* Deprecate ports broken for more than 6 monthsAntoine Brodin2016-10-012-0/+5
| | | | Notes: svn path=/head/; revision=423051
* - Update devel/efl to 1.18.1Grzegorz Blach2016-09-275-1262/+0
| | | | | | | | | | | | | | - Update devel/py-efl to 1.18.0 - Update multimedia/rage to 0.2.1 - Update x11-wm/enligtenment to 0.21.2 - Bump PORTREVISION in graphics/edje_viewer - Bump PORTREVISION in x11/terminology - Merge graphics/evas_generic_loaders* into devel/efl - Merge multimedia/emotion_generic_players-vlc into devel/efl - Merge x11-toolkits/elementary into devel/efl Notes: svn path=/head/; revision=422814
* - Update devel/icu to 57.1.Tijl Coosemans2016-09-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Clean up the Makefile. - Follow some upstream recommendations (--with-data-packaging=archive, --disable-renaming, -DICU_NO_USER_DATA_OVERRIDE). - Patch makefiles to install static libraries with INSTALL_DATA so they aren't stripped. - Patch config/mh-bsd-gcc to sync with config/mh-linux-gcc. - Fix endianness detection in ICU. The code wanted to use BYTE_ORDER defined in machine/endian.h, but this isn't visible because ICU is compiled with _XOPEN_SOURCE. Patch the code to use _BYTE_ORDER instead. - Compile ICU with C++11 compiler to enable move constructors. - Patch ICU to fix a problem with atomics in the case of a C++11 compiler without C++11 header <atomic> (like Clang on FreeBSD 9). - Bump all ports that depend on it due to library version change. - Add USES=compiler:c++0x to some ports that pick up -std=c++0x from ICU pkgconfig files. - Add USES=compiler:c++11-lib to graphics/libcdr01 because it also needs a C++11 runtime library now. Add this to all ports that depend on it so their executables load the right libstdc++.so on FreeBSD 9. PR: 205120 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=422711
* Fix runtime.Mathieu Arnold2016-09-231-0/+2
| | | | | | | Sponsored by: Absolight Notes: svn path=/head/; revision=422662
* x11-toolkits/py-wxPython30: install header filesRuslan Makhmatkhanov2016-09-231-1/+1
| | | | | | | | | | | These headers are required to build some ports. PR: 211310 Reported by: yuan.mei@gmail.com With hat: python Notes: svn path=/head/; revision=422657
* Fix PKGNAMEAntoine Brodin2016-09-221-0/+1
| | | | | | | Reported by: pkg-fallout Notes: svn path=/head/; revision=422590
* - Update to 0.17Dmitry Marakasov2016-09-214-27/+26
| | | | | | | | | | | | | - Pass maintainership to submitter - Add LICENSE - Add NO_ARCH PR: 212409 Submitted by: fax@nohik.ee Approved by: mwm@mired.org (maintainer) Notes: svn path=/head/; revision=422563
* graphics/squish: new fedora MASTER_SITES to unbreakJohn Marino2016-09-201-3/+1
| | | | Notes: svn path=/head/; revision=422527
* Update the Qt5 ports to 5.6.1.Raphael Kubo da Costa2016-09-1718-94/+424
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This took longer than expected, but there are quite a few changes to the existing ports and a few new ones. General upstream changes: - Starting with Qt 5.6.2, Qt will fail at configuration time if LibreSSL is being used. According to the discussion here: https://codereview.qt-project.org/#/c/154800/ The Qt project is not opposed to LibreSSL, but does not want to mix support for it into the OpenSSL backend code, especially as they move towards supporting OpenSSL 1.1. People interested in LibreSSL support are welcome to submit a separate backend upstream, but are expected to maintain it. We (kde@) are not opposed to carrying some patches authored by others in the future, as long as they are not huge and destabilizing. - When Qt detects the compiler supports C++11, it will pass -std=gnu++11 by default (this is an upstream change). You can add "CONFIG -= c++11" to your .pro. Qt 5.7 will require C++11. - www/webkit-qt5: The QtWebKit module is deprecated upstream, and is shipped separately as a community release tarball. kde@ does not have an ETA for a qt5-webengine port, as it requires a huge effort (and number of patches) similar to maintaining www/chromium itself. - x11-toolkits/qt5-declarative has been deprecated upstream. The last release is 5.5.1. Relevant changes: - devel/qmake5: The freebsd-clang mkspec has become the default mkspec on FreeBSD, replacing the outdated freebsd-g++ one that was moved to unsupported/ (it still works though). - devel/qt5-qdoc: qdoc was moved to qttools upstream, but its data files are still in qtbase. The data files are now in the qt5-qdoc-data port. - misc/qt5-doc: Clean up and stop requiring a compiler and fumbling with mkspecs. Instead of running the `configure' script, which requires a compiler and adjustments to the mkspecs files and also ends up building a new qmake binary, we now leverage USES=qmake to generate all the Makefiles from the top-level qt.pro. Getting this to work requires some tricks, though, and qt.conf.in has a longer explanation of what's being done. Switch to USES=gmake to be able to drop MAKE_JOBS_UNSAFE=yes. New ports: - comms/qt5-serialbus - devel/qt5-qdoc-data - x11-toolkits/qt5-quickcontrols2 Big thanks to Adriaan de Groot (groot@kde.org), tcberner@ and Loise Nolden (nolden@kde.org) for the huge amount of work they put into this patch. Loise in particular also sent quite a few changes upstream that were essential for this update to work. PR: 211916 Notes: svn path=/head/; revision=422306
* GOOGLE_CODE has gone away.Mathieu Arnold2016-09-141-0/+2
| | | | | | | | | | | | | - If a port has another upstream, remove GOOGLE_CODE - If a port only has GOOGLE_CODE mark it BROKEN Some ports have a local mirror configured but for security reasons, it is not considered upstream. Sponsored by: Absolight Notes: svn path=/head/; revision=422140
* Remove expired ports:Rene Ladan2016-09-135-499/+0
| | | | | | | | | | | | 2016-08-23 www/mediawiki124: EOL upstream 2016-08-23 sysutils/rsyslog7: Upgrade to rsyslog 8 2016-08-24 www/moodle28: EOL upstream 2016-08-31 devel/php5-msgpack: This is an older version of the software, please use devel/pecl-msgpack. 2016-09-02 textproc/asciinema: use textproc/py3-asciinema instead 2016-09-09 x11-toolkits/qtada: No development since 2012, usefulness unclear Notes: svn path=/head/; revision=422054
* - Fix build on 11.x+Dmitry Marakasov2016-09-111-0/+20
| | | | Notes: svn path=/head/; revision=421861
* - Update to 3.6.7 (changes: http://www.scintilla.org/ScintillaHistory.html)Dmitry Marakasov2016-09-074-45/+43
| | | | | | | | | | | | - Silence mkdir - Add "-soname" linker option to create SONAME for scintilla libraries (fixes stage-qa) PR: 212404 Submitted by: lightside@gmx.com Approved by: cyberbotx@cyberbotx.com (maintainer) Notes: svn path=/head/; revision=421511
* - In Uses/linux.mk use the loop variable directly when appending toTijl Coosemans2016-09-077-6/+7
| | | | | | | | | | | | *_DEPENDS. Helper variables derived from the loop variable aren't expanded causing *_DEPENDS to be incorrect. - Bump all ports with more than one value in USE_LINUX. PR: 211645 Reported by: jkim Notes: svn path=/head/; revision=421496
* Use infrastructure to depend on Linux libGLU.Tijl Coosemans2016-09-061-2/+2
| | | | | | | | PR: 209163 Submitted by: marc.priggemeyer@gmail.com Notes: svn path=/head/; revision=421428
* Chase update of Poppler after revision r421386Olivier Duchateau2016-09-051-0/+1
| | | | Notes: svn path=/head/; revision=421390
* - Replace Mk/bsd.linux-apps.mk and Mk/bsd.linux-rpm.mk withTijl Coosemans2016-09-0517-428/+399
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Mk/Uses/linux.mk. - Replace USE_LINUX=yes with USES+=linux and USE_LINUX=(.*) with USES+=linux:\1 in all ports. - Replace USE_LINUX_APPS with USE_LINUX in all ports. - Use INSTALL_SCRIPT instead of INSTALL_PROGRAM to install scripts in some ports. - When USE_LINUX_RPM is defined, simplify the way DISTFILES and EXTRACT_ONLY are defined. - Remove BRANDELF_DIRS and BRANDELF_FILES handling. In the very rare cases that it is still necessary ports can run ${BRANDELF} from post-patch. - Remove AUTOMATIC_PLIST handling. Only one port used it. - Fix Linux MASTER_SITES. - Replace OVERRIDE_LINUX_BASE_PORT and OVERRIDE_LINUX_NONBASE_PORTS with default versions framework. - bsd.port.mk: - Move Linux related bits to Uses/linux.mk, except USE_LINUX_PREFIX. - Put USE_LINUX_PREFIX handling after USES processing. - Define DOCSDIR, DATADIR, etc. after handling USE_LINUX_PREFIX so it can give these variables a different default value. - When a package needs to run Linux ldconfig check before installation if Linux support is enabled. - emulators/linux_base-*: - Use USES=linux and remove duplication. - Remove files/lp. FreeBSD or CUPS lp(1) should work. - Remove files/yp.conf. No longer seems to be used. - Remove pkg-deinstall and move pkg-install into pkg-plist. - Update pkg-descr and pkg-message. - Fix handling of ldconfig cache in pkg-plist. - devel/fb-adb: Use a Linux shell to run a Linux script but patch the script to use FreeBSD mkdir so mkdir -p $path creates $path and not /compat/linux/$path. PR: 211645 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=421387
* QTermWidget is an opensource project originally based on KDE4 KonsoleOlivier Duchateau2016-08-236-0/+80
| | | | | | | | | | | | | | application. The main goal of this project is to provide unicode-enabled, embeddable Qt widget for using as a built-in console (or terminal emulation widget). WWW: https://github.com/lxde/qtermwidget PR: 210387 Submitted by: Jason Bacon Notes: svn path=/head/; revision=420694
* Update to version 1.8.4Pawel Pekala2016-08-162-3/+4
| | | | | | | | PR: 211859 Submitted by: Jochen Neumeister Notes: svn path=/head/; revision=420304
* Update to 4.2.Romain Tartière2016-08-083-211/+4
| | | | Notes: svn path=/head/; revision=419881
* Update to 0.4.0.1Olivier Duchateau2016-08-082-6/+6
| | | | Notes: svn path=/head/; revision=419867
* Add standard immodules and generate immodules.cache on package installation.Tijl Coosemans2016-08-045-26/+50
| | | | Notes: svn path=/head/; revision=419658
* - Move some dependencies from linux-c6-gtk2 to linux-c6-gdk-pixbuf2.Tijl Coosemans2016-08-043-20/+4
| | | | | | | - Remove pixman distfiles from linux-c6-gtk2. Nothing there needs it. Notes: svn path=/head/; revision=419635
* - Depend on libthai.Tijl Coosemans2016-08-023-6/+9
| | | | | | | - Generate pango.modules on installation. Notes: svn path=/head/; revision=419475
* x11-toolkits/tk86: fix PLIST for non-default optionsPietro Cerutti2016-08-021-1/+0
| | | | | | | Reported by: pi Notes: svn path=/head/; revision=419467