diff options
author | Dylan Carlson <absinthe@gentoo.org> | 2003-05-15 01:37:01 +0000 |
---|---|---|
committer | Dylan Carlson <absinthe@gentoo.org> | 2003-05-15 01:37:01 +0000 |
commit | aef2952eb40345d9a78596d220ba037883a6eb8a (patch) | |
tree | 297b06a70ec01ff18a93dcf1a511dd71d171137b /eclass | |
parent | Added ~mips to KEYWORDS (diff) | |
download | gentoo-2-aef2952eb40345d9a78596d220ba037883a6eb8a.tar.gz gentoo-2-aef2952eb40345d9a78596d220ba037883a6eb8a.tar.bz2 gentoo-2-aef2952eb40345d9a78596d220ba037883a6eb8a.zip |
Added doclass and dozip placeholders.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/java-pkg.eclass | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/eclass/java-pkg.eclass b/eclass/java-pkg.eclass index 8e07937ac536..86ab1864e371 100644 --- a/eclass/java-pkg.eclass +++ b/eclass/java-pkg.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/java-pkg.eclass,v 1.3 2003/05/14 16:44:46 absinthe Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/java-pkg.eclass,v 1.4 2003/05/15 01:37:01 absinthe Exp $ inherit base ECLASS=java-pkg @@ -8,6 +8,12 @@ INHERITED="${INHERITED} ${ECLASS}" IUSE="${IUSE}" SLOT="${SLOT}" +java-pkg_doclass() +{ + debug-print-function ${FUNCNAME} $* + java-pkg_dojar $* +} + java-pkg_dojar() { debug-print-function ${FUNCNAME} $* @@ -160,3 +166,9 @@ java-pkg_dowar() done } +java-pkg_dozip() +{ + debug-print-function ${FUNCNAME} $* + java-pkg_dojar $* +} + |