aboutsummaryrefslogtreecommitdiff
path: root/sysutils/fswatch-mon
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-0/+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
* sysutils/fswatch-mon: Update to 1.13.0Mateusz Piotrowski2018-11-234-24/+19
| | | | | | | | | | | | | | | | | | | | | | - Update to 1.13.0 - Changelogs: - https://github.com/emcrisostomo/fswatch/releases/tag/1.11.3 - https://github.com/emcrisostomo/fswatch/releases/tag/1.12.0 - https://github.com/emcrisostomo/fswatch/releases/tag/1.13.0 - Do not use GH_* variables as USE_GITHUB is not set - Use DISTVERSION instead of PORTVERSION - Set LICENSE_FILE - Fix the order of variables - Use INSTALL_TARGET=install-strip instead of STRIP_CMD in post-install - Remove trailing whitespace from pkg-descr PR: 232556 Reviewed by: krion, mat Approved by: krion (mentor), mat (mentor), maintainer (timeout) Differential Revision: https://reviews.freebsd.org/D17666 Notes: svn path=/head/; revision=485673
* Install texinfo files (GNU info) into ${PREFIX}/share/infoBaptiste Daroussin2018-11-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | After a discussion on the mailing list on moving manpages to ${PREFIX}/share/man for consistency with base where it is installed in usr/share/man, it appeared the same should happen to GNU info files which were installed under share in base and not in ports. Now texinfo is not in base on any of the supported version of FreeBSD it is possible to proceed to this move and it is easier to do than the manpage change. Other benefit than consistency are less patching: all build tools but cmake are expecting info files to be under share/info and cmake (patched here) was having an exception for BSD so the patch makes FreeBSD case less specific for them Bump revision of all impacted ports PR: 232907 exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D17816 Notes: svn path=/head/; revision=484628
* Add DOCS options to ports that should have one.Mathieu Arnold2018-09-101-1/+1
| | | | | | | | | | | Also various fixes related to said option. PR: 230864 Submitted by: mat exp-runs by: antoine Notes: svn path=/head/; revision=479406
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-07-291-0/+1
| | | | | | | | | | | | | | | | | in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542 Notes: svn path=/head/; revision=475857
* Adjust USES to fix building on gcc-based archs (in particular, powerpc64).Mark Linimon2018-06-021-3/+1
| | | | | | | | | | | | | | | On the clang architectures, these changes have no effect: the baser compiler already includes the needed features. While here, remove now-redundant CXXFLAGS statements and pet portlint (no other content change). Tested on both powerpc64 and amd64. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471400
* Update to 1.11.2 and conditionally uses NLSOlivier Cochard2017-11-013-20/+14
| | | | | | | | PR: 219731 Submitted by: Enrico M. Crisostomo <enrico.m.crisostomo@gmail.com> (maintainer) Notes: svn path=/head/; revision=453268
* Mark some ports failing on power64. In cases where the error messageMark Linimon2017-05-131-0/+2
| | | | | | | | | | | was a stub, provide a real one. While here, pet portlint. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=440860
* sysutils/fswatch-mon: fix spelling on CONFLICTS_INSTALLJason Unovitch2017-01-101-1/+1
| | | | | | | PR: 200552 Notes: svn path=/head/; revision=431056
* fswatch is a file change monitor that receives notifications when the contentsMark Felder2017-01-094-0/+107
of the specified files or directories are modified. fswatch implements four kinds of monitors: * A monitor based on the File System Events API of Apple OS X. * A monitor based on kqueue, an event notification interface introduced in FreeBSD 4.1 and supported on most *BSD systems (including OS X). * A monitor based on inotify, a Linux kernel subsystem that reports file system changes to applications. * A monitor which periodically stats the file system, saves file modification times in memory and manually calculates file system changes, which can work on any operating system where stat (2) can be used. fswatch should build and work correctly on any system shipping either of the aforementioned APIs. WWW: https://github.com/emcrisostomo/fswatch PR: 200552 Submitted by: Enrico M. Crisostomo <enrico.m.crisostomo@gmail.com> Notes: svn path=/head/; revision=431040