aboutsummaryrefslogtreecommitdiff
path: root/java/sigar/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Remove ${PORTSDIR}/ from dependencies, categories h, i, j, k, and l.Mathieu Arnold2016-04-011-2/+2
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412347
* - Disable ccache for this port: it fails to build by not respecting the ↵Dmitry Marakasov2016-02-041-0/+2
| | | | | | | | | | | environment: [cc] ccache: error: Failed to create directory /nonexistent/.ccache/tmp: Permission denied Approved by: portmgr blanket Notes: svn path=/head/; revision=408079
* java/sigar: Fix typo from previous commit (LATFORM => PLATFORM)John Marino2015-10-301-2/+2
| | | | | | | | | | While here, replace "freebsd" in LIBNAME with ${OPSYS:tl} to facilitate DragonFly support. Approved by: Just fix it Notes: svn path=/head/; revision=400497
* Drop 8 support.Mathieu Arnold2015-10-151-4/+2
| | | | | | | | | With hat: portmgr Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3694 Notes: svn path=/head/; revision=399346
* Update ports in the [i-m]* category to not use GH_COMMIT.Mathieu Arnold2015-05-071-5/+1
| | | | | | | | | | With minor cleanups to make things simpler. With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=385637
* Remove OSVERSION checks that do not make sense any more.Mathieu Arnold2015-04-031-7/+1
| | | | | | | | | | | | | For example (${OSVERSION} >= 900000 && ${OSVERSION} < 900021) is always true, as is (${OSVERSION} > 900002 || ${OSVERSION} < 900000 && ${OSVERSION} > 800107). Regarding patches, when an EXTRA_PATCHES is no longer needed, I remove it, when it is always needed, I renamed it, in one case, I merged two patches. Differential Revision: https://reviews.freebsd.org/D2209 Notes: svn path=/head/; revision=383107
* Update USE_GITHUB so it does not require GH_COMMIT.Bryan Drewery2015-03-191-1/+1
| | | | | | | | | | | | | | | | | | | | Using this new scheme allows only setting the _tag_ or _commit hash_ in GH_TAGNAME and not having to know the hash for a tag. This scheme will download a tarball that has a different checksum than before due to a changed directory name for extraction. The following MASTER_SITES are provided to retain the old checksum and directory structure (that require GH_COMMIT): GH -> GHL GITHUB -> GITHUB_LEGACY Differential Revision: https://reviews.freebsd.org/D748 Submitted by: amdmi3 Reviewed by: mat, swills, antoine, bdrewery With hat: portmgr Notes: svn path=/head/; revision=381618
* java/sigar: Check OSVERSION with OPSYS and break non-FreeBSD platformsJohn Marino2014-11-221-6/+11
| | | | Notes: svn path=/head/; revision=373058
* Fix to use new build process and link against main libsigar.so.Tom Judge2014-11-171-3/+5
| | | | Notes: svn path=/head/; revision=372697
* New port: java/sigarTom Judge2014-11-141-0/+70
The Sigar API provides a portable interface for gathering system information such as: * System memory, swap, cpu, load average, uptime, loginsi * Per-process memory, cpu, credential info, state, arguments, environment, open files * File system detection and metrics * Network interface detection, configuration info and metrics * TCP and UDP connection tables * Network route table This information is available in most operating systems, but each OS has their own way(s) providing it. SIGAR provides developers with one API to access this information regardless of the underlying platform. The core API is implemented in pure C with bindings currently implemented for Java, Perl, Ruby, Python, Erlang, PHP and C#. This port provides the Java bindings. WWW: https://support.hyperic.com/display/SIGAR/Home Notes: svn path=/head/; revision=372561