diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-08-22 04:46:32 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-08-22 04:46:32 +0000 |
commit | 06685f49044259bb92d06a2c94835d3a2de0fc7d (patch) | |
tree | 3dd15924654d528333f1b3137a1134fe3c3d6651 /eclass/gpe.eclass | |
parent | Version bump (diff) | |
download | historical-06685f49044259bb92d06a2c94835d3a2de0fc7d.tar.gz historical-06685f49044259bb92d06a2c94835d3a2de0fc7d.tar.bz2 historical-06685f49044259bb92d06a2c94835d3a2de0fc7d.zip |
fix random bugs in eclass documentation, and convert to new @AUTHOR tag
Diffstat (limited to 'eclass/gpe.eclass')
-rw-r--r-- | eclass/gpe.eclass | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/eclass/gpe.eclass b/eclass/gpe.eclass index b24ba7beb5e5..9778fcf45f63 100644 --- a/eclass/gpe.eclass +++ b/eclass/gpe.eclass @@ -1,24 +1,19 @@ -# Copyright 2008 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gpe.eclass,v 1.2 2009/06/05 22:53:46 miknix Exp $ -# +# $Header: /var/cvsroot/gentoo-x86/eclass/gpe.eclass,v 1.3 2011/08/22 04:46:32 vapier Exp $ + # @ECLASS: gpe.eclass -# @MAINTAINER: <gpe@gentoo.org> -# +# @MAINTAINER: +# gpe@gentoo.org +# @AUTHOR: # Original Authors: # Rene Wagner <rw@handhelds.org> # Ned Ludd <solar@gentoo.org> # Angelo Arrifano <miknix@gentoo.org> -# +# EAPI->EAPI2 patch: loki_val +# multiple suggestions: Betelgeuse +# Based on gnome2.eclass and gpe.bbclass (the latter from OpenEmbedded) # @BLURB: Provides common functionality for the G Palmtop Environment. -# @DESCRIPTION: Provides common functionality for the G Palmtop Environment. -# -# Thanks to: -# loki_val for EAPI->EAPI2 patch -# Betelgeuse for multiple suggestions. -# -# Based on: -# gnome2.eclass and gpe.bbclass (the latter from OpenEmbedded) inherit libtool toolchain-funcs @@ -56,7 +51,8 @@ DEPEND=" >=dev-util/pkgconfig-0.12.0" # @FUNCTION: gpe_src_unpack -# @DESCRIPTION: Unpacks and applies some required patches for GPE. +# @DESCRIPTION: +# Unpacks and applies some required patches for GPE. gpe_src_unpack() { unpack ${A} cd "${S}" @@ -79,14 +75,16 @@ gpe_src_prepare() { } # @FUNCTION: gpe_src_configure -# @DESCRIPTION: Configures a GPE package in a cross-compile aware environment. +# @DESCRIPTION: +# Configures a GPE package in a cross-compile aware environment. gpe_src_configure() { tc-export CC [[ -f configure ]] && econf "$@" ${GPECONF} } # @FUNCTION: gpe_src_compile -# @DESCRIPTION: (Cross-)Compiles a GPE package. +# @DESCRIPTION: +# (Cross-)Compiles a GPE package. gpe_src_compile() { tc-export CC has "${EAPI:-0}" 0 1 && gpe_src_configure "$@" @@ -94,7 +92,8 @@ gpe_src_compile() { } # @FUNCTION: gpe_src_install -# @DESCRIPTION: Installs a GPE package in the correct way. +# @DESCRIPTION: +# Installs a GPE package in the correct way. gpe_src_install() { local use_nls=yes |