aboutsummaryrefslogtreecommitdiff
path: root/net-im/ktp-send-file/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Update KDE Applications to latest upstream release, 19.08Adriaan de Groot2019-08-151-1/+0
| | | | | | | | | | Release announcement https://kde.org/announcements/announce-applications-19.08.0.php Thanks to tcberner for doing most of the prep-work. Notes: svn path=/head/; revision=509000
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-1/+1
| | | | | | | | | | | | | | | | | | as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. 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, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330 Notes: svn path=/head/; revision=507372
* KDE Applications: complete dependency listsTobias C. Berner2019-06-231-1/+2
| | | | | | | | | | This has been on the TODO list for forever... PR: 238764 Reported by: yuri Notes: svn path=/head/; revision=504959
* - Add LICENSEDmitry Marakasov2019-05-151-0/+3
| | | | | | | | | - Update WWW Approved by: portmgr blanket Notes: svn path=/head/; revision=501699
* Update KDE Applications to 19.04.0Tobias C. Berner2019-04-181-1/+0
| | | | | | | | | | The changelog can be found here: - https://kde.org/announcements/announce-applications-19.04.0.php Due to crashes on start, multimedia/kdenlive was kept at 18.12.3 for now. Notes: svn path=/head/; revision=499277
* net-im/telepathy-qt: remove flavors (Qt4 deprecation)Tobias C. Berner2019-03-161-1/+2
| | | | Notes: svn path=/head/; revision=495946
* Update KDE Applications to 18.12.2Tobias C. Berner2019-02-081-1/+0
| | | | | | | | [1] https://www.kde.org/announcements/announce-applications-18.12.2.php [2] https://www.kde.org/announcements/fulllog_applications-aether.php?version=18.12.2 Notes: svn path=/head/; revision=492409
* Fix Qt5 symbol version scripts to put the catch-all clause first. WhenTijl Coosemans2019-01-161-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a symbol matches multiple clauses the last one takes precedence. If the catch-all is last it captures everything. In the case of Qt5 libraries this caused all symbols to have a Qt_5 label while some should have Qt_5_PRIVATE_API. This only affects lld because GNU ld always gives the catch-all lowest priority. Older versions of Qt5Webengine exported some memory allocation symbols from the bundled Chromium. Version 5.9 stopped exporting these [1] but the symbols were kept as weak wrappers for the standard allocation functions to maintain binary compatibility. [2][3] The problem is that the call to the standard function in these weak wrappers is only resolved to the standard function if there's a call to this standard function in other parts of Qt5Webengine, because only then is there a non-weak symbol that takes precedence over the weak one. If there's no such non-weak symbol the call in the weak wrapper resolves to the weak wrapper itself creating an infinite call loop that overflows the stack and causes a crash. Some of the allocation functions are variants of C++ new and delete and it probably depends on the compiler whether these variants are used in other parts of Qt5Webengine. Remove the weak wrappers (make them Linux specific). This isn't binary compatible but we are already breaking that with the changes to the symbol versions. [1] https://github.com/qt/qtwebengine/commit/5c2cbfccf9aafb547b0b30914c4056abd25942a4 [2] https://github.com/qt/qtwebengine/commit/2ed5054e3a800fa97c2c9e920ba1e6ea4b6ef2a5 [3] https://github.com/qt/qtwebengine/commit/009f5ebb4bd6e50188671e0815a5dae6afe39db5 Bump all ports that depend on Qt5. PR: 234070 Exp-run by: antoine Approved by: kde (adridg) Notes: svn path=/head/; revision=490472
* Change cmake default behaviour to outsource.Tobias C. Berner2018-12-251-1/+1
| | | | | | | | | | | | | | Ports that build out of source now simply can use "USES=cmake" instead of "USES=cmake:outsource". Ports that fail to build out of source now need to specify "USES=cmake:insource". I tried to only set insource where explictely needed. PR: 232038 Exp-run by: antoine Notes: svn path=/head/; revision=488341
* Set c++11 on some more kde@ ports.Tobias C. Berner2018-12-161-1/+1
| | | | | | | | PR: 234060 Submitted by: Piotr Kubaj <pkubaj@anongoth.pl> Notes: svn path=/head/; revision=487624
* net-im/telepathy-qt[45]: falvorizeTobias C. Berner2018-10-071-1/+1
| | | | | | | | | | | | | | Flavorize the ports: * telepathy-qt4 -> telepathy-qt@qt4 * telepathy-qt5 -> telepathy-qt@qt5 While here, also clean up the Makefile a bit. Approved by: portmgr (mat) Differential Revision: https://reviews.freebsd.org/D17445 Notes: svn path=/head/; revision=481446
* Add DOCS options to ports that should have one.Mathieu Arnold2018-09-101-0/+2
| | | | | | | | | | | Also various fixes related to said option. PR: 230864 Submitted by: mat exp-runs by: antoine Notes: svn path=/head/; revision=479406
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mkTobias C. Berner2018-06-281-2/+2
| | | | | | | | | | | | | | | | | | From now on, ports that depend on Qt4 will have to set USES= qt:4 USE_QT= foo bar ports depending on Qt5 will use USES= qt:5 USE_QT= foo bar PR: 229225 Exp-run by: antoine Reviewed by: mat Approved by: portmgr (antoine) Differential Revision: →https://reviews.freebsd.org/D15540 Notes: svn path=/head/; revision=473503
* New ports: KDE Applications net-im/Tobias C. Berner2018-04-101-0/+22
| | | | | | | | | | | | | | | | | | | | | | | | * net-im/kaccounts-integration * net-im/kaccounts-providers * net-im/ktp-accounts-kcm * net-im/ktp-approver * net-im/ktp-auth-handler * net-im/ktp-call-ui * net-im/ktp-common-internals * net-im/ktp-contact-list * net-im/ktp-contact-runner * net-im/ktp-desktop-applets * net-im/ktp-filetransfer-handler * net-im/ktp-kded-module * net-im/ktp-send-file * net-im/ktp-text-ui * net-im/telepathy-logger-qt5 This is the current version of KDE Applications <foo>. Note that users of KDE SC4 should stick with <foo>-kde4. Notes: svn path=/head/; revision=466968
* Shuffle the KDE ktp-* and related ports into a -kde4 suffix.Adriaan de Groot2018-03-231-21/+0
| | | | | | | | | | | | This is consistent with r462619, which moved most (but not all, hence this commit) of the KDE4-era ports out of the way for newer generation KDE. Approved by: tcberner (mentor, implicit) Differential Revision: https://reviews.freebsd.org/D14775 Notes: svn path=/head/; revision=465343
* Rename KDE4 meta portsTobias C. Berner2018-02-101-1/+1
| | | | | | | | | | | | | | 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
* Chase ffmpeg 3.3 update (ABI changes)Thomas Zander2017-04-251-0/+1
| | | | | | | | PR: 218658 Submitted by: riggs Notes: svn path=/head/; revision=439367
* Replace Mk/bsd.kde4.mk by Mk/Uses/kde.mk in preparation for KDE Frameworks andTobias C. Berner2016-08-241-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Plasma5 ports At the moment KDE ports use bsd.kde4.mk to handle their dependencies. When working on the ports for KDE Frameworks and Plasma5 it seemed to be more reasonable to create a new kde.mk instead of adding an bsd.kde5.mk. The kde.mk in this review is a stripped down version of the one we are using in the KDE Test repositories plasma5 branch [1] to only contain the parts relevant to the current KDE4 ports in the portstree [2]. Changes to the KDE Ports needed by this: Replace USE_KDE4 by USE_KDE [3] Add USES=kde:4 [4] [1] http://src.mouf.net/area51/view/branches/plasma5/KDE/Mk/Uses/kde.mk [2] The version in the plasma5 branch also handles frameworks/plasma5 and handles MASTER_SITES via a KDE_DIST variable similar to bsd.qt.mk for Qt Ports -- I chose to leave this out for now, as the diff is already large enough. [3] I chose USE_KDE instead of USE_KDE4, USE_KDE5, USE_KDEX as the version we want is already specified as argument to kde:<arg> [4] For KDE Frameworks and Plasma5 ports this would be kde:5 PR: 210667 Approved by: portmgr, mat (mentor), rakuco (mentor) Reviewed by: mat, rakuco Differential Revision: https://reviews.freebsd.org/D6961 Notes: svn path=/head/; revision=420774
* Remove expired misc/kdehier4 and update all of its consumers to not ↵Rene Ladan2016-05-251-1/+1
| | | | | | | | | | | | | | | | reference it any longer. This is a no-op because KDE4_PREFIX is equal to LOCALBASE Fix up properties for misc/kde4-l10n/files/bsd.l10n.mk to make svn happy. PR: 209014 (partial) Submitted by: myself Approved by: portmgr (bapt) Differential Revision: https://reviews.freebsd.org/D6542 Notes: svn path=/head/; revision=415864
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-4/+4
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* MASTER_SITES cleanup.Mathieu Arnold2015-05-141-2/+1
| | | | | | | | | | | | | | | | | | | | | | - Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386312
* Pass maintainership of KDE Telepathy ports to kde@.Raphael Kubo da Costa2015-01-051-1/+1
| | | | | | | | | | Those ports are already maintained by the whole team, so formally adapt the ports from avilla@. Approved by: avilla Notes: svn path=/head/; revision=376312
* Update telepathy to 0.8.0Alonso Schaich2014-12-161-2/+1
| | | | | | | | | | | | | | | | Merge area51's commits 10180, 10181, 10314, 10315, 10485, 10491, 10492, 10500, 10502, 10503 and 10504. Individual revisions can be reviewed at http://src.mouf.net/area51/log This commit is based on a patch originally sent to the kde@ mailing list by T.C.Berner <tcberner@gmail.com>, and introduces a new port for ktp-desktop-applets. Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D1264 Notes: svn path=/head/; revision=374791
* Update the default version of GCC in the Ports Collection from GCC 4.7.4Gerald Pfeifer2014-09-101-1/+1
| | | | | | | | | | | | | to GCC 4.8.3. Part II, Bump PORTREVISIONs. PR: 192025 Tested by: antoine (-exp runs) Approved by: portmgr (implicit) Notes: svn path=/head/; revision=367888
* Upgrade OpenEXR and ilmbase to 2.2.0.Matthias Andree2014-08-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | GCC 4.2 in FreeBSD 8.X/9.X base is now too old to compile OpenEXR, so GCC-based systems will upgrade to the default ports compiler (GCC 4.7 currently.) Add two patches to OpenEXR to permit building it in a live system with the older OpenEXR version installed. Bug report filed to upstream Github at https://github.com/openexr/openexr/issues/130 Couple OpenEXR more tightly to ilmbase and require its exact .so version. Add UPDATING note, and bump PORTREVISION of all dependent ports. Proto-STAGE hugin-devel, and mark it IGNORE because hugin is newer. Approved by: portmgr (implicit for bumping PORTREVISION on unstaged ports) Notes: svn path=/head/; revision=365038
* Convert a bunch of USE_BZIP2 to USES=tar:bzip2Adam Weinberger2014-07-291-2/+1
| | | | | | | Approved by: portmgr (not really, but touches unstaged ports) Notes: svn path=/head/; revision=363371
* Modernize LIB_DEPENDSBaptiste Daroussin2014-07-141-2/+2
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=361812
* - Bump PORTREVISION after KDE4_PREFIX changeMax Brazhnikov2014-02-181-0/+1
| | | | Notes: svn path=/head/; revision=344898
* Support stagingRaphael Kubo da Costa2014-01-051-1/+0
| | | | Notes: svn path=/head/; revision=338828
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | net-im) Notes: svn path=/head/; revision=327756
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* - Add ports for KDE Telepathy modules.Alberto Villa2013-05-021-0/+23
None of these ports is supposed to be installed by hand. A metaport is coming in my next commit. Notes: svn path=/head/; revision=317154