31 lines
608 B
Bash
31 lines
608 B
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
DESCRIPTION="A P2P framework and client"
|
|
HOMEPAGE="http://xnap.sf.net"
|
|
SRC_URI="mirror://sourceforge/xnap/${P}r3.jar"
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="x86"
|
|
IUSE=""
|
|
RDEPEND=">=virtual/jre-1.3"
|
|
|
|
S=${WORKDIR}
|
|
|
|
src_unpack() {
|
|
cp ${DISTDIR}/${A} ${WORKDIR}/
|
|
}
|
|
|
|
src_install() {
|
|
mv ${S}/${A} ${S}/${PN}.jar
|
|
insinto /opt/${PN}/lib
|
|
doins ${PN}.jar
|
|
|
|
echo "#!/bin/sh" > ${PN}
|
|
echo "cd /opt/${PN}" >> ${PN}
|
|
echo '${JAVA_HOME}'/bin/java -jar lib/${PN}.jar '$*' >> ${PN}
|
|
|
|
into /opt
|
|
dobin ${PN}
|
|
}
|