blob: 53f55362ca2044a8d523dd3e1761b5e3bdc83e93 (
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
25
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-nds/jxplorer/jxplorer-3.1_beta1.ebuild,v 1.4 2004/09/10 11:24:56 blubb Exp $
DESCRIPTION="A fully functional ldap browser written in java."
HOMEPAGE="http://jxplorer.org/"
SRC_URI="mirror://sourceforge/${PN}/JXv3.1b1deploy.tar.bz2"
LICENSE="CAOSL"
SLOT="0"
KEYWORDS="x86 ~amd64"
IUSE=""
DEPEND="virtual/jre"
RESTRICT="nomirror"
S=${WORKDIR}/${PN}
src_compile() { :; }
src_install() {
dodir /opt/jxplorer
cp -R ${S}/* ${D}/opt/jxplorer
chmod 755 ${D}/opt/${PN}/${PN}.sh
dodir /opt/bin
ln -sf ${D}/opt/${PN}/${PN}.sh ${D}/opt/bin/${PN}
}
|