diff options
author | Joshua Nichols <nichoj@gentoo.org> | 2006-05-22 01:26:51 +0000 |
---|---|---|
committer | Joshua Nichols <nichoj@gentoo.org> | 2006-05-22 01:26:51 +0000 |
commit | 451e3d198183f4b3f2a2e5a01759f337a0d934e6 (patch) | |
tree | 031f7067700de8da7588f9f0edc9492cdfff5659 /eclass | |
parent | Cleaning up upld parrot ebuilds. Yuval has a copy of the new one coming (diff) | |
download | gentoo-2-451e3d198183f4b3f2a2e5a01759f337a0d934e6.tar.gz gentoo-2-451e3d198183f4b3f2a2e5a01759f337a0d934e6.tar.bz2 gentoo-2-451e3d198183f4b3f2a2e5a01759f337a0d934e6.zip |
Added placeholder pkg_setup
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/java-pkg.eclass | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/eclass/java-pkg.eclass b/eclass/java-pkg.eclass index 9476b13cc0ac..79da257354e4 100644 --- a/eclass/java-pkg.eclass +++ b/eclass/java-pkg.eclass @@ -1,6 +1,12 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/java-pkg.eclass,v 1.34 2006/03/25 16:53:36 betelgeuse Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/java-pkg.eclass,v 1.35 2006/05/22 01:26:51 nichoj Exp $ + + +# Skeleton pkg_setup, needed to provide compatibility for migration-overlay. +java-pkg_pkg_setup() { + :; +} pkglistpath="${T}/java-pkg-list" @@ -367,3 +373,5 @@ java-pkg_dosrc() { install ${INSOPTIONS} "${T}/${PN}-src.zip" "${D}${target}" \ || die "failed to install sources" } + +EXPORT_FUNCTIONS pkg_setup |