blob: 709d1d73a06869583b65a2927638518d9d4e2fb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/java-config/java-config-0.2.8-r2.ebuild,v 1.2 2003/09/10 01:46:57 msterret Exp $
IUSE=""
S=${WORKDIR}/${P}
DESCRIPTION="Utility to change the Java Virtual Machine being used"
HOMEPAGE="http://www.gentoo.org/"
SRC_URI=""
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc sparc ~alpha"
DEPEND="virtual/glibc"
src_install () {
dobin ${FILESDIR}/${PV}/java-config
doman ${FILESDIR}/${PV}/java-config.1
insinto /etc/env.d
doins ${FILESDIR}/${PV}/30java-finalclasspath
}
|