aboutsummaryrefslogtreecommitdiff
path: root/sysutils/synergy
Commit message (Collapse)AuthorAgeFilesLines
* sysutils/synergy: Fix build sysutils/synergy without AVAHI_LIBDNS optionml@netfence.it2022-10-141-2/+1
| | | | PR: 267019
* Mk/Uses: always use colon for build/run suffixFelix Palmen2022-09-111-1/+1
| | | | | | | | | | | | Most USES use a colon for build/run(/test) suffixes. Change kde.mk, qt.mk and pyqt.mk to do the same, and update all ports using that. Document in CHANGES. PR: 266034 Exp-run by: antoine Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D36349
* Remove WWW entries moved into port MakefilesStefan Eßer2022-09-071-2/+0
| | | | | | | | | | Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
* sysutils/synergy: Add back PORTEPOCHYuri Victorovich2022-07-141-0/+1
| | | | Reported by: ler@
* sysutils/synergy: Update 1.14.0.4 -> 1.14.5.14Yuri Victorovich2022-07-142-10/+18
| | | | Reported by: portscout
* devel/cmake: Update to 3.23.0Loïc Bartoletti2022-05-162-3/+3
| | | | | | | | | | | Update to 3.23.0. Fix pkg-plist: using the default share/man location Release Notes: https://cmake.org/cmake/help/v3.23/release/3.23.html PR: 262886 Exp-run by: antoine
* sysutils/synergy: Update 1.13.1.41 -> 1.14.0.4Yuri Victorovich2021-06-112-5/+5
| | | | Reported by: portscout
* sysutils/synergy: Add LEGACY option; Add test target; Install syntool.Yuri Victorovich2021-05-252-2/+24
| | | | | LEGACY option enables GUI, synergyd, installer that the project can build optionally.
* 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
|
* sysutils/synergy: Remove unnecessary CONFLICTS statement.Yuri Victorovich2021-03-091-2/+0
| | | | Notes: svn path=/head/; revision=567956
* sysutils/synergy: Correct version confusion: current version is 1.x.x, not 2.x.xYuri Victorovich2021-03-031-1/+1
| | | | | | | | | | | Therefore sysutils/synergy-1 is removed, and sysutils/synergy PORTEPOCH is bumped because the prevuous commit went backwards 2.x.x -> 1.x.x Reference: https://github.com/symless/synergy-core/issues/6850#issuecomment-732045154 Reported by: Aleksander Matveev <timon@timon.net.nz> Notes: svn path=/head/; revision=567250
* sysutils/synergy: Update 1.13.0 -> 1.13.1.41Yuri Victorovich2021-03-032-7/+5
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=567028
* sysutils/synergy: Optionalize libdns dependency, make avahi-based libdns ↵Yuri Victorovich2021-01-111-9/+13
| | | | | | | | | default to prevent conflicts with KDE/Gnome that use avahi for libdns Reported by: tcberner Notes: svn path=/head/; revision=561260
* sysutils/synergy: Update 2.0.0 -> 1.13.0Yuri Victorovich2020-12-306-46/+19
| | | | Notes: svn path=/head/; revision=559686
* Add USES=xorg USES=gl, ports categories sNiclas Zeising2019-11-071-1/+1
| | | | | | | | Add USES=xorg and USES=gl to ports in categories starting with 's' While here, try to sprinkle other USES (mostly gnome and sdl) as needed. Notes: svn path=/head/; revision=516988
* 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
* 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
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-1/+1
| | | | | | | | | | | | | | | | | | defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 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, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590 Notes: svn path=/head/; revision=487272
* New port: sysutils/synergy-1: Mouse and keyboard sharing utilityYuri Victorovich2018-11-061-0/+2
| | | | | | | | | | Version 1.X based on the user's request. PR: 231281 Submitted by: Yoshiaki Kasahara <ykasap@gmail.com> Notes: svn path=/head/; revision=484275
* sysutils/synergy: Install config file under ${PREFIX}/etcYuri Victorovich2018-03-292-3/+14
| | | | | | | | | | Also move plist to pkg-plist. PR: 227095 Submitted by: Vidar Karlsen <vidar@karlsen.tech> Notes: svn path=/head/; revision=465935
* sysutils/synergy: Add USES=compiler:c++14-lang because powerpc build was ↵Yuri Victorovich2018-03-051-1/+2
| | | | | | | | | | | failing without it PR: 226371 Reported by: jhibbits Approved by: tcberner (mentor, implicit) Notes: svn path=/head/; revision=463668
* sysutils/synergy: Unbreak with libressl.Yuri Victorovich2018-03-011-0/+11
| | | | | | | | | | | New patch does it. PR: 226202 Submitted by: w.schwarzenfeld@utanet.at Approved by: tcberner (mentor, implicit) Notes: svn path=/head/; revision=463351
* sysutils/synergy: Take maintainershipYuri Victorovich2018-02-261-1/+1
| | | | | | | Approved by: tcberner (mentor, implicit) Notes: svn path=/head/; revision=463005
* sysutils/synergy: Update to 2.0.0Yuri Victorovich2018-02-258-81/+35
| | | | | | | | | | | | | | | | | | | | | Changelog (incomplete): https://github.com/symless/synergy-core/blob/master/ChangeLog Additional port changes: * Changed to DISTVERSION * USES=cmake:outsource * Added SYNERGY_REVISION cmake variable with fake 7-digit hash that it now expects * Updated PLIST_FILES * Updated do-install * Split out do-install-EXAMPLES-on * Removed post-extract with gtest extraction (not needed) * Updated WWW * Updated patches, deleted unnecessary ones. Approved by: tcberner (mentor, implicit) Notes: svn path=/head/; revision=462893
* Fix nullptr definition buildfailure on current with clang6Sean Bruno2018-01-311-0/+11
| | | | | | | | | PR: 225549 Submitted by: jhb Differential Revision: https://reviews.freebsd.org/D14131 Notes: svn path=/head/; revision=460499
* Return kevlo's ports to the pool, he handed in his commit bit.Rene Ladan2018-01-121-1/+1
| | | | | | | With hat: portmgr-secretary Notes: svn path=/head/; revision=458818
* For the ports under `sysutils' category: remove superfluous linefeeds.Alexey Dokuchaev2018-01-091-1/+0
| | | | Notes: svn path=/head/; revision=458561
* Remove BROKEN_sparc64 statement: it builds fine now on 10.4-STABLE runningAlexey Dokuchaev2017-12-311-2/+0
| | | | | | | under QEMU 2.9.0. Notes: svn path=/head/; revision=457710
* sysutils/synergy: fix fetchSteve Wills2017-12-152-3/+4
| | | | | | | | PR: 223948 Approved by: kevlo (maintainer timeout, >2 weeks) Notes: svn path=/head/; revision=456381
* Update to 1.8.8Kevin Lo2017-08-183-26/+13
| | | | | | | | PR: 221521 Submitted by: ehaupt Notes: svn path=/head/; revision=448209
* Update to 1.8.7Kevin Lo2017-01-242-4/+4
| | | | Notes: svn path=/head/; revision=432310
* Update to 1.8.5Kevin Lo2016-11-052-4/+4
| | | | | | | | Submitted by: garga Differential Revision: https://reviews.freebsd.org/D8435 Notes: svn path=/head/; revision=425394
* Update to 1.8.4Kevin Lo2016-10-142-4/+4
| | | | Notes: svn path=/head/; revision=423945
* Unmark broken on powerpc64Steve Wills2016-09-151-2/+0
| | | | | | | These ports built successfully Notes: svn path=/head/; revision=422175
* Update to 1.8.2Kevin Lo2016-08-262-3/+8
| | | | | | | | PR: 212163 Submitted by: jhb Notes: svn path=/head/; revision=420885
* Update to upstream 1.7.6Sean Bruno2016-06-032-4/+5
| | | | | | | | | | Change upstream location and add XORG depenencies. Reviewed by: kevlo Differential Revision: https://reviews.freebsd.org/D6692 Notes: svn path=/head/; revision=416322
* many ports: mark broken on powerpc64Steve Wills2016-04-211-0/+2
| | | | Notes: svn path=/head/; revision=413746
* Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412349
* Update to 1.7.5Kevin Lo2016-01-153-7/+7
| | | | | | | | PR: 206136 Submitted by: jhb Notes: svn path=/head/; revision=406147
* Mark as broken on sparc64: fails to build (C++ code errors).Mark Linimon2015-09-261-0/+2
| | | | | | | Approved by: portmgr (sparc64 blanket) Notes: svn path=/head/; revision=398002
* Update to 1.7.4Kevin Lo2015-08-136-28/+56
| | | | Notes: svn path=/head/; revision=394053
* Update to 1.7.3Kevin Lo2015-07-146-48/+37
| | | | | | | | Differential Revision: https://reviews.freebsd.org/D3048 Submitted by: jonathan Notes: svn path=/head/; revision=391971
* Replace most occurences of github.com in MASTER_SITES with USE_GITHUB usage.Mathieu Arnold2015-05-182-5/+3
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386691
* - Add CPE infoDmitry Marakasov2015-05-171-1/+2
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=386590
* Update to 1.6.2Kevin Lo2014-12-242-8/+7
| | | | Notes: svn path=/head/; revision=375384
* Update to 1.5.1Kevin Lo2014-09-052-4/+4
| | | | Notes: svn path=/head/; revision=367320
* Remove NOPORTDOCS and NOPORTEXAMPLES.Adam Weinberger2014-07-041-2/+2
| | | | Notes: svn path=/head/; revision=360673
* Commit correct patch.Kevin Lo2014-05-311-8/+21
| | | | | | | Reported by: sbruno Notes: svn path=/head/; revision=355994