blob: bb9493b4c1d6f3f1fe904c45886f2f9fbc3a1982 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/java-config/java-config-1.2.6.ebuild,v 1.10 2005/01/03 22:15:52 gustavoz Exp $
inherit distutils
DESCRIPTION=" Java environment configuration tool"
HOMEPAGE="http://www.gentoo.org/"
SRC_URI="mirror://gentoo/java-config-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
RDEPEND="virtual/python"
KEYWORDS="x86 alpha ia64 amd64 sparc ppc hppa ppc64"
IUSE=""
src_install() {
distutils_src_install
dobin ${S}/java-config
doman ${S}/java-config.1
insinto /etc/env.d
doins ${S}/30java-finalclasspath
}
|