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 | 9200df17d761b09b70b55d35657ee843b8426648 (patch) | |
tree | 1e6ee292226c73bd6d9a36adca7ffb5e0d16f6bc /eclass/java-pkg.eclass | |
parent | Cleaning up upld parrot ebuilds. Yuval has a copy of the new one coming (diff) | |
download | historical-9200df17d761b09b70b55d35657ee843b8426648.tar.gz historical-9200df17d761b09b70b55d35657ee843b8426648.tar.bz2 historical-9200df17d761b09b70b55d35657ee843b8426648.zip |
Added placeholder pkg_setup
Diffstat (limited to 'eclass/java-pkg.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 |