diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2014-11-16 01:57:02 +0000 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2014-11-16 01:57:02 +0000 |
commit | 61bd797882e45a24e774874c5e67578fbf2b10dd (patch) | |
tree | 46526e62aad29da080679364a953a3befb87a4ef /eclass | |
parent | Add system vimrc, drop gpm use (bug #526938) (diff) | |
download | historical-61bd797882e45a24e774874c5e67578fbf2b10dd.tar.gz historical-61bd797882e45a24e774874c5e67578fbf2b10dd.tar.bz2 historical-61bd797882e45a24e774874c5e67578fbf2b10dd.zip |
perl-app.eclass: Documented all functions.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/perl-app.eclass | 14 |
2 files changed, 17 insertions, 2 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index d0bbbcc52a66..a52365d12052 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1421 2014/11/14 19:46:05 swift Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1422 2014/11/16 01:57:02 monsieurp Exp $ + + 16 Nov 2014; Patrice Clement <monsieurp@gentoo.org> perl-app.eclass: + Documented all functions. 14 Nov 2014; Sven Vermeulen <swift@gentoo.org> selinux-policy-2.eclass: Using RDEPEND checks in SELinux eclass reverse dependency checking diff --git a/eclass/perl-app.eclass b/eclass/perl-app.eclass index 7ce8ac43da1f..5ff47c12cf2d 100644 --- a/eclass/perl-app.eclass +++ b/eclass/perl-app.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/perl-app.eclass,v 1.15 2014/11/02 00:45:43 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/perl-app.eclass,v 1.16 2014/11/16 01:57:02 monsieurp Exp $ # Author: Michael Cummings <mcummings@gentoo.org> # Maintained by the Perl herd <perl@gentoo.org> @@ -9,14 +9,26 @@ : ${GENTOO_DEPEND_ON_PERL_SUBSLOT:="no"} inherit perl-module +# @FUNCTION: perl-app_src_prep +# @USAGE: perl-app_src_prep +# @DESCRIPTION: +# This is a wrapper function to perl-app_src_configure(). perl-app_src_prep() { perl-app_src_configure } +# @FUNCTION: perl-app_src_configure +# @USAGE: perl-app_src_configure +# @DESCRIPTION: +# This is a wrapper function to perl-module_src_configure(). perl-app_src_configure() { perl-module_src_configure } +# @FUNCTION: perl-app_src_compile +# @USAGE: perl-app_src_compile +# @DESCRIPTION: +# This is a wrapper function to perl-module_src_compile(). perl-app_src_compile() { has "${EAPI:-0}" 0 1 && perl-app_src_prep perl-module_src_compile |