diff options
author | Dylan Carlson <absinthe@gentoo.org> | 2003-05-15 18:52:51 +0000 |
---|---|---|
committer | Dylan Carlson <absinthe@gentoo.org> | 2003-05-15 18:52:51 +0000 |
commit | 2af2d3f2a26fb556ae64f64d765870096bef7e2d (patch) | |
tree | e0a775365642e829901d47c6ff13c59b39be2ce2 /eclass/jakarta-commons.eclass | |
parent | Initial commit of the php extensions eclass, ebuilds using it will follow. (diff) | |
download | historical-2af2d3f2a26fb556ae64f64d765870096bef7e2d.tar.gz historical-2af2d3f2a26fb556ae64f64d765870096bef7e2d.tar.bz2 historical-2af2d3f2a26fb556ae64f64d765870096bef7e2d.zip |
Fixed to use java-pkg_dojar()
Diffstat (limited to 'eclass/jakarta-commons.eclass')
-rw-r--r-- | eclass/jakarta-commons.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/jakarta-commons.eclass b/eclass/jakarta-commons.eclass index ba3cad54b266..d01263c2e8fa 100644 --- a/eclass/jakarta-commons.eclass +++ b/eclass/jakarta-commons.eclass @@ -1,8 +1,8 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/jakarta-commons.eclass,v 1.4 2003/03/22 12:22:42 absinthe Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/jakarta-commons.eclass,v 1.5 2003/05/15 18:52:51 absinthe Exp $ -inherit base +inherit base java-pkg ECLASS=jakarta-commons INHERITED="$INHERITED $ECLASS" IUSE="$IUSE" @@ -110,8 +110,8 @@ jakarta-commons_src_install() { case $1 in dojar) debug-print-section dojar - [ -d dist/ ] && dojar dist/*.jar - [ -d target/ ] && dojar target/*.jar + [ -d dist/ ] && java-pkg_dojar dist/*.jar + [ -d target/ ] && java-pkg_dojar target/*.jar ;; dohtml) debug-print-section dohtml |