aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2013-07-31 06:39:05 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2013-07-31 06:39:05 +0000
commitad519489177ad410f98a30517262620d58c81dab (patch)
treed7998b46466c476322ca006abac9330e136877ce /CHANGES
parent27b567757310607163051d7033b249ba4a7c5f6a (diff)
downloadports-ad519489177ad410f98a30517262620d58c81dab.tar.gz
ports-ad519489177ad410f98a30517262620d58c81dab.zip
Document the new USE=perl5
Notes
Notes: svn path=/head/; revision=324005
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES33
1 files changed, 33 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index f38a70d8bada..2da66e05c07a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -10,6 +10,39 @@ in the release notes and/or placed into UPDATING.
All ports committers are allowed to commit to this file.
+20130831:
+AUTHOR: bapt@FreeBSD.org
+
+ * New USES: perl5
+
+ This uses replaces all the previous perl macros. Here is how to migrate:
+
+ Always include perl5:
+ USES= perl5
+
+ If USE_PERL5 is undefined that perl5 will be a build and run dependency
+ Migrating to new USE_PERL5:
+
+ =======================================================
+ | BEFORE | AFTER |
+ =======================================================
+ | PERL_CONFIGURE=yes | USE_PERL5= configure |
+ -------------------------------------------------------
+ | USE_PERL5_RUN=yes | USE_PERL5=run |
+ -------------------------------------------------------
+ | USE_PERL5_BUILD=yes | USE_PERL5=build |
+ -------------------------------------------------------
+ | PERL_MODBUILD=yes | USE_PERL5=modbuild |
+ -------------------------------------------------------
+ | USE_PERL5=yes | |
+ -------------------------------------------------------
+ | USE_PERL5=5.14+ | USE_PERL5= 5.14+ |
+ -------------------------------------------------------
+ | PERL_CONFIGURE= 5.14+ | USE_PERL5=5.14+ configure |
+ -------------------------------------------------------
+ | PERL_MODBUILD= 5.14+ | USE_PERL5=5.14+ modbuild |
+ -------------------------------------------------------
+
20130726:
AUTHOR: rene@FreeBSD.org