aboutsummaryrefslogtreecommitdiff
path: root/shells/p5-Bash-Completion
Commit message (Collapse)AuthorAgeFilesLines
* Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.Mathieu Arnold2016-04-011-3/+3
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412349
* - Add LICENSE_FILESunpoet Po-Chuan Hsieh2015-11-151-0/+1
| | | | Notes: svn path=/head/; revision=401652
* - Add NO_ARCHSunpoet Po-Chuan Hsieh2015-09-172-2/+3
| | | | | | | - Sort PLIST Notes: svn path=/head/; revision=397167
* Make it so that the default Perl is always called perl5.Mathieu Arnold2015-09-141-2/+2
| | | | | | | | | | | | | | | | | | | - 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
* Change the way Perl modules are installed, update the default Perl to 5.18.Mathieu Arnold2014-11-262-7/+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
* - Remove outdated PERL_LEVEL checkSunpoet Po-Chuan Hsieh2014-02-281-7/+1
| | | | Notes: svn path=/head/; revision=346424
* - Support STAGEDIRSunpoet Po-Chuan Hsieh2013-09-302-11/+9
| | | | Notes: svn path=/head/; revision=328874
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | shells) Notes: svn path=/head/; revision=327770
* - Convert to new perl frameworkSunpoet Po-Chuan Hsieh2013-08-211-1/+2
| | | | Notes: svn path=/head/; revision=325134
* - Add LICENSESunpoet Po-Chuan Hsieh2013-06-221-8/+4
| | | | | | | - Cleanup Makefile header Notes: svn path=/head/; revision=321545
* - Cleanup outdated checks. (PERL_LEVEL < 5.12)Andrej Zverev2013-06-181-4/+0
| | | | | | | | | - Assign some p5- ports under perl@ maintainership. Approved by: portmgr@ (bapt@) Notes: svn path=/head/; revision=321187
* - Revert ports/165605 as requested by portmgr@Philip M. Gollucci2012-03-131-0/+4
| | | | | | | | | | | | Note: devel/p5-B-Size and devel/p5-Devel-Arena where intentionally not restored. PR: ports/165605 Approved by: portmgr (bapt) Feature safe: yes (I sure hope so) Notes: svn path=/head/; revision=293247
* - Remove ports that only work with < perl 5.12 (devel/p5-B-Size, ↵Philip M. Gollucci2012-03-081-4/+0
| | | | | | | | | | | | | | | | | | devel/p5-Devel-Arena) - Remove conditionals for PERL_LEVEL < 501200 - Remove regression-test targets b/c this will be centralized in Mk/bsd.perl.mk - Other minor cleanups RUN_DEPENDS = ${BUILD_DEPENDS} -> RUN_DEPENDS:= ${BUILD_DEPENDS} PR: ports/165605 Submitted by: pgollucci (myself) Approved by: portmgr (linimon) Exp Run by: linimon Tested by: make index Notes: svn path=/head/; revision=292977
* - Add p5-Bash-Completion 0.008Sunpoet Po-Chuan Hsieh2011-10-234-0/+86
bash completion should just work when you install new commands. Bash::Completion is a system to use and write bash completion rules. For end-users, you just need to add this line to your .bashrc or .bash_profile: setup-bash-complete This will load all the installed Bash::Completion plugins, make sure they should be activated and generate the proper bash code to setup bash completion for them. If you later install a new command line tool, and it has a Bash::Completion::Plugin -based plugin, all your new shells will have bash completion rules for it. You can also force immediate setup by running the same command: setup-bash-complete To write a new Bash::Completion plugin, see Bash::Completion::Plugin. WWW: http://search.cpan.org/dist/Bash-Completion/ Notes: svn path=/head/; revision=284156