diff options
author | Joshua Nichols <nichoj@gentoo.org> | 2006-04-17 03:47:44 +0000 |
---|---|---|
committer | Joshua Nichols <nichoj@gentoo.org> | 2006-04-17 03:47:44 +0000 |
commit | 11672d4153da439b8ff55dc66a0a7bf02bb826f9 (patch) | |
tree | a39fa97e49a595030e06cd9d6d21919b57536f8f /eclass | |
parent | Helps to do the right version for the mplayer version (diff) | |
download | gentoo-2-11672d4153da439b8ff55dc66a0a7bf02bb826f9.tar.gz gentoo-2-11672d4153da439b8ff55dc66a0a7bf02bb826f9.tar.bz2 gentoo-2-11672d4153da439b8ff55dc66a0a7bf02bb826f9.zip |
Updated maintainer info. Cleaned up some whitespace. Fixed bug #124341
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/eclipse-ext.eclass | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/eclass/eclipse-ext.eclass b/eclass/eclipse-ext.eclass index 1d2fcff9c5f0..6c33a21bee12 100644 --- a/eclass/eclipse-ext.eclass +++ b/eclass/eclipse-ext.eclass @@ -1,11 +1,14 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/eclipse-ext.eclass,v 1.12 2005/07/18 22:02:57 axxo Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eclipse-ext.eclass,v 1.13 2006/04/17 03:47:44 nichoj Exp $ -# Author: Karl Trygve Kalleberg <karltk@gentoo.org> -# Maintainer: Karl Trygve Kalleberg <karltk@gentoo.org> +# Original Author: Karl Trygve Kalleberg <karltk@gentoo.org> +# Maintainers: +# Development Tools Team <dev-tools@gentoo.org> +# Java Team <java@gentoo.org> + +inherit eutils multilib -inherit eutils # Must be listed in oldest->newest order! known_eclipse_slots="2 3 3.1" @@ -118,7 +121,6 @@ function eclipse-ext_create-ext-layout { # 1 - if require-slot was not called # --------------------------------------------------------------------------- function eclipse-ext_install-features { - if [ ${eclipse_ext_slot} == 0 ] ; then eerror "You must call require-slot prior to calling ${FUNCNAME}!" return 1 @@ -148,7 +150,6 @@ function eclipse-ext_install-features { # --------------------------------------------------------------------------- function eclipse-ext_install-plugins { - if [ ${eclipse_ext_slot} == 0 ] ; then eerror "You must call require-slot prior to calling ${FUNCNAME}!" return 1 @@ -163,15 +164,12 @@ function eclipse-ext_install-plugins { done } +# TODO really should have a page hosted on gentoo's infra function eclipse-ext_pkg_postinst() { einfo "For tips, tricks and general info on running Eclipse on Gentoo, go to:" einfo "http://gentoo-wiki.com/Eclipse" } -function pkg_postinst() { - eclipse-ext_pkg_postinst -} - # --------------------------------------------------------------------------- # @public get-classpath # @@ -184,7 +182,6 @@ function pkg_postinst() { # --------------------------------------------------------------------------- eclipse-ext_get-classpath() { - local file=$1 local envvar="classpath" @@ -226,7 +223,6 @@ _get-plugin-content() { # @return - echo of :-separated resolved files # --------------------------------------------------------------------------- eclipse-ext_resolve-jars() { - local resolved="" for x in $1 ; do @@ -242,3 +238,5 @@ eclipse-ext_resolve-jars() { done echo ${resolved} } + +EXPORT_FUNCTIONS pkg_postinst |