Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: base.eclass
Date: Thu, 17 Jul 2008 09:49:18
Message-Id: E1KJQ6t-0002Vj-E2@stork.gentoo.org
1 pva 08/07/17 09:49:15
2
3 Modified: base.eclass
4 Log:
5 Make eclass ready for eclass-manpages, bug #210363, thank mren for all work.
6
7 Revision Changes Path
8 1.34 eclass/base.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/base.eclass?rev=1.34&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/base.eclass?rev=1.34&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/base.eclass?r1=1.33&r2=1.34
13
14 Index: base.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/base.eclass,v
17 retrieving revision 1.33
18 retrieving revision 1.34
19 diff -u -r1.33 -r1.34
20 --- base.eclass 16 Feb 2008 20:12:58 -0000 1.33
21 +++ base.eclass 17 Jul 2008 09:49:14 -0000 1.34
22 @@ -1,16 +1,27 @@
23 -# Copyright 1999-2004 Gentoo Foundation
24 +# Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.33 2008/02/16 20:12:58 betelgeuse Exp $
27 -#
28 -# Author Dan Armak <danarmak@g.o> (nowadays retired)
29 +# $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.34 2008/07/17 09:49:14 pva Exp $
30 +
31 +# @ECLASS: base.eclass
32 +# @MAINTAINER:
33 +# ???
34 #
35 -# The base eclass defines some default functions and variables. Nearly everything
36 -# else inherits from here.
37 +# Original author Dan Armak <danarmak@g.o>
38 +# @BLURB: The base eclass defines some default functions and variables.
39 +# @DESCRIPTION:
40 +# The base eclass defines some default functions and variables. Nearly
41 +# everything else inherits from here.
42 +
43
44 inherit eutils
45
46 DESCRIPTION="Based on the $ECLASS eclass"
47
48 +# @FUNCTION: base_src_unpack
49 +# @USAGE: [ unpack ] [ patch ] [ autopatch ] [ all ]
50 +# @DESCRIPTION:
51 +# The base src_unpack function, which is exported. If no argument is given,
52 +# "all" is assumed.
53 base_src_unpack() {
54
55 debug-print-function $FUNCNAME $*
56 @@ -57,6 +68,11 @@
57
58 }
59
60 +# @FUNCTION: base_src_compile
61 +# @USAGE: [ configure ] [ make ] [ all ]
62 +# @DESCRIPTION:
63 +# The base src_compile function, which is exported. If no argument is given,
64 +# "all" is asasumed.
65 base_src_compile() {
66
67 debug-print-function $FUNCNAME $*
68 @@ -86,6 +102,11 @@
69
70 }
71
72 +# @FUNCTION: base_src_install
73 +# @USAGE: [ make ] [ all ]
74 +# @DESCRIPTION:
75 +# The base src_install function, which is exported. If no argument is given,
76 +# "all" is assumed.
77 base_src_install() {
78
79 debug-print-function $FUNCNAME $*
80
81
82
83 --
84 gentoo-commits@l.g.o mailing list