aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt/p5-jmx4perl
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
|
* net-mgmt/p5-jmx4perl: Use @sample instead of custom reimplementationTobias Kortkamp2019-12-204-43/+10
| | | | Notes: svn path=/head/; revision=520469
* Return tj's ports to the pool after his commit bit got safekept.Rene Ladan2018-11-061-1/+1
| | | | Notes: svn path=/head/; revision=484353
* Remove all := from BUILD_DEPENDS, here are never needed.Mathieu Arnold2018-07-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | While there, cleanup, and sort depends. When build and run dependencies are the same, there are three ways to avoid duplicating the list while not adding the framework added BUILD_DEPENDS to the RUN_DEPENDS. In order of preference, they are: 1) use RUN_DEPENDS to set BUILD_DEPENDS: BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= foo:bar/baz 2) create another variable and use it: MY_DEPENDS= foo:bar/baz BUILD_DEPENDS= ${MY_DEPENDS} RUN_DEPENDS= ${MY_DEPENDS} 3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation: BUILD_DEPENDS= foo:bar/baz RUN_DEPENDS:= ${BUILD_DEPENDS} Sponsored by: Absolight Notes: svn path=/head/; revision=474242
* Update WWWSunpoet Po-Chuan Hsieh2018-05-271-1/+1
| | | | | | | | | | search.cpan.org is shutting down. It will redirect to metacpan.org after June 25, 2018. With hat: perl Notes: svn path=/head/; revision=470993
* Remove Perl core modulesSunpoet Po-Chuan Hsieh2017-06-211-7/+2
| | | | | | | | | | - While I'm here, add NO_ARCH - Bump PORTREVISION for dependency change With hat: perl Notes: svn path=/head/; revision=444067
* Bump PORTREVISION for ports affected by the fix the last commit.Mathieu Arnold2017-01-311-1/+1
| | | | | | | | Done with: Tools/scripts/bump-revision.sh Sponsored by: Absolight Notes: svn path=/head/; revision=432932
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-24/+24
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* Cleanup dependencies on lang/p5-Scalar-List-Utils.Mathieu Arnold2016-03-311-3/+2
| | | | | | | | | | | | | | | | | | The different cases are: - Only bring it if the one bundled with Perl is outdated. - The version bundled with all our Perl is sufficient. - Scalar-List-Util is not really needed by the port. (looking for /(Sub|Scalar|List)::Util/ returns nothing.) While there, do some minor cleanup that caught my eye. PR: 208378 With hat: perl@ Sponsored by: Absolight Notes: svn path=/head/; revision=412231
* Make it so that the default Perl is always called perl5.Mathieu Arnold2015-09-141-5/+5
| | | | | | | | | | | | | | | | | | | - Move Perl's man1 files along with its man3 files. - Move where Perl installs its modules man1 pages. - Convert the ports installing man1 pages. - Make different Perl versions installable at the same time. Though you should note that only the default version can be used to install Perl modules, and the non default Perl versions cannot use the modules installed via ports if they contain .so as they are installed in a version specific directory. Reviewed by: bapt (the Mk bits) Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3542 Notes: svn path=/head/; revision=396892
* MASTER_SITES cleanup.Mathieu Arnold2015-05-141-2/+2
| | | | | | | | | | | | | | | | | | | | | | - 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
* - Drop @dirrm* from and add empty directories to pkg-plistsDmitry Marakasov2015-02-011-1/+0
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=378258
* Update to 1.11.Tom Judge2015-01-303-32/+35
| | | | | | | Changes: http://cpansearch.perl.org/src/ROLAND/jmx4perl-1.11/CHANGES Notes: svn path=/head/; revision=378169
* Change the way Perl modules are installed, update the default Perl to 5.18.Mathieu Arnold2014-11-262-11/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before, we had: site_perl : lib/perl5/site_perl/5.18 site_perl/perl_arch : lib/perl5/site_perl/5.18/mach perl_man3 : lib/perl5/5.18/man/man3 Now we have: site_perl : lib/perl5/site_perl site_arch : lib/perl5/site_perl/mach/5.18 perl_man3 : lib/perl5/site_perl/man/man3 Modules without any .so will be installed at the same place regardless of the Perl version, minimizing the upgrade when the major Perl version is changed. It uses a version dependent directory for modules with compiled bits. As PERL_ARCH is no longer needed in plists, it has been removed from PLIST_SUB. The USE_PERL5=fixpacklist keyword is removed, the .packlist file is now always removed, as is perllocal.pod. The old site_perl and site_perl/arch directories have been kept in the default Perl @INC for all Perl ports, and will be phased out as these old Perl versions expire. PR: 194969 Differential Revision: https://reviews.freebsd.org/D1019 Exp-run by: antoine Reviewed by: perl@ Approved by: portmgr Notes: svn path=/head/; revision=373448
* Support staging.Emanuel Haupt2014-02-063-59/+56
| | | | Notes: svn path=/head/; revision=343066
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | net-mgmt) Notes: svn path=/head/; revision=327757
* - convert to the new perl5 frameworkAndrej Zverev2013-09-041-1/+2
| | | | | | | Approved by: portmgr (bapt@, blanket) Notes: svn path=/head/; revision=326245
* - Add dependency for devel/p5-Sys-SigAction to allow Jmx4Perl::Agent timeout ↵Ryan Steinmetz2013-07-021-0/+2
| | | | | | | | | | | to function - Bump PORTREVISION Approved by: tj@ Notes: svn path=/head/; revision=322206
* Upgrade to 1.07.Tom Judge2013-05-202-4/+3
| | | | | | | Changes: http://cpansearch.perl.org/src/ROLAND/jmx4perl-1.07/CHANGES Notes: svn path=/head/; revision=318630
* Fix minor nit: use the canconical FreeBSD.org form for email addresses.Eitan Adler2013-03-171-2/+1
| | | | | | | | | | | | This was causing me issues when attempting to gather certain statistics. While here trim header Approved by: miwi, adrian, tj No objection from: db, bjk, cperciva, scheidell, osa Notes: svn path=/head/; revision=314460
* * Remove interacitve questions in build processTom Judge2012-12-065-0/+98
| | | | | | | | | | * Install bundled config files Feature safe: yes Approved by: db, eadler (mentors, implicit) Notes: svn path=/head/; revision=308361
* Jmx4Perl is here to connect the Java and Perl Enterprise world by providingTom Judge2012-12-054-0/+170
transparent access to the Java Management Extensions (JMX) from the perl side. It uses a traditional request-response paradigma for performing JMX operations on a remote Java Virtual machine. WWW: http://search.cpan.org/dist/jmx4perl/ Feature safe: yes Approved by: eadler, db (mentors, implicit) Notes: svn path=/head/; revision=308353