# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-p2p/limewire/limewire-4.1.3.ebuild,v 1.1 2004/08/08 03:18:48 squinky86 Exp $ DESCRIPTION="Limewire Java Gnutella client" HOMEPAGE="http://www.limewire.com" SRC_URI="http://www9.limewire.com/beta/LimeWireLinux.tgz" LICENSE="freedist" SLOT="0" KEYWORDS="~x86" DEPEND="virtual/jre virtual/x11" IUSE="" S=${WORKDIR} RESTRICT="nomirror" PREFIX="/opt/limewire" src_compile() { ( echo \#!/bin/sh echo cd ${PREFIX} echo java -cp .:collections.jar:xerces.jar:jl011.jar:MessagesBundles.jar:themes.jar:logicrypto.jar:GURL.jar com.limegroup.gnutella.gui.Main echo export J2SE_PREEMPTCLOSE=1 echo java -jar LimeWire.jar ) >limewire.gentoo echo PATH=${PREFIX} >99limewire } src_install() { insinto ${PREFIX} doins *.jar *.war *.properties *.ver *.sh hashes *.txt exeinto /usr/bin newexe limewire.gentoo limewire insinto /etc/env.d doins 99limewire } pkg_postinst() { einfo "******************************************************************" einfo " Finished installing LimeWire into ${PREFIX}" einfo einfo " To start LimeWire, run:" einfo einfo " $ limewire" einfo einfo "******************************************************************" }