How do I upgrade Perl version under FreeBSD operating system?
Perl (Practical Extraction and Report Language) is a language optimized for scanning arbitrary text files, extracting information from those text files, and printing reports based on that information. It's also a good language for many system management tasks. Perl can be easily upgrade to 5.10.1 from 5.8.x version using the following instructions.
lang/perl5.10 has been updated to 5.10.1. You should update everything that depends on perl. The easiest way to do that is to use "perl-after-upgrade" script supplied with lang/perl5.10.
Upgrade ports tree
Type the following command:
# portsnap fetch update
Upgrade Perl using portupgrade
Type the following commands:
# pkgdb -Ff
# portupgrade -o lang/perl5.10 -f perl-5.8.\*
# portupgrade -fr perl
Update all perl related stuff:
# portupgrade -f p5*
Upgrade Perl using portmaster
Type the following commands:
# portmaster -o lang/perl5.10 lang/perl5.8
# portmaster -r perl-
Notice: If the "perl-" glob matches more than one port you will need to specify the name of the perl directory in /var/db/pkg explicitly:
portmaster -Dr perl- /var/db/pkg/perl-5.10.1/
fixup FreeBSD packages that depend on perl
The standard procedure after a perl port (lang/perl5.X) upgrade is to basically reinstall all other packages that depend on perl. This is always a painful exercise. The perl-after-upgrade utility makes this process mostly unnecessary.
# perl-after-upgrade -f
Upgrade Other Packages
You also need to reinstall all other packages that depends upon perl. For example, amavisd-new. spamassassin, and clamav etc.
# cd /usr/ports/your-port-name
# make deinstall install
References:
- Read /usr/ports/UPDATING file.
- man pages portmaster, portupgrade, and perl-after-upgrade
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop














{ 4 comments… read them below or add one }
I wish it worked for me as easily as that (FreeBSD 8.0-RELEASE i386): portupgrade, portmaster, and everything else I’ve tried insist that I must pkg_delete perl-5.8 first, which has way too many dependents…
Hmm, I know this is an old thread, but you can also just alter the “conflicts with” line in the Makefile of the perl-5.10 port and life will be good, as the -o tells portupgrade to use 5.10 to upgrade 5.8 (assuming you are using portupgrade)
For me it required this –
env DISABLE_CONFLICTS=1 portupgrade -o lang/perl5.14 -f perl-5.8.\*
Thanks a lot for your documentation, it help me very much to update my old 5.8 perl port to 5.12 in my Freebsd 9.0