summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarol Wojtaszek <sekretarz@gentoo.org>2005-07-28 20:21:18 +0000
committerKarol Wojtaszek <sekretarz@gentoo.org>2005-07-28 20:21:18 +0000
commit2e74df09cd7aa88b9977f8bf035d8fa7b426132a (patch)
treef026aec67ec357d19bcc0b07e9bc288e99166b4b /net-p2p/phex/phex-2.6.0.87.ebuild
parentadding app-mobilephone/yaps flags (diff)
downloadgentoo-2-2e74df09cd7aa88b9977f8bf035d8fa7b426132a.tar.gz
gentoo-2-2e74df09cd7aa88b9977f8bf035d8fa7b426132a.tar.bz2
gentoo-2-2e74df09cd7aa88b9977f8bf035d8fa7b426132a.zip
Version bump, bug #96135. Moved phex wrapper to /usr/bin
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-p2p/phex/phex-2.6.0.87.ebuild')
-rw-r--r--net-p2p/phex/phex-2.6.0.87.ebuild34
1 files changed, 34 insertions, 0 deletions
diff --git a/net-p2p/phex/phex-2.6.0.87.ebuild b/net-p2p/phex/phex-2.6.0.87.ebuild
new file mode 100644
index 000000000000..9d80b7827626
--- /dev/null
+++ b/net-p2p/phex/phex-2.6.0.87.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/phex/phex-2.6.0.87.ebuild,v 1.1 2005/07/28 20:21:18 sekretarz Exp $
+
+DESCRIPTION="java gnutella file-sharing application"
+HOMEPAGE="http://phex.sourceforge.net/"
+SRC_URI="mirror://sourceforge/phex/${P/-/_}.zip"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~ppc"
+IUSE=""
+RDEPEND=">=virtual/jdk-1.4
+ virtual/x11"
+S=${WORKDIR}/${P/-/_}
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ echo "PATH=/opt/${PN}/bin" >> ${S}/50${PN}
+}
+
+src_compile() {
+ einfo "nothing to compile"
+}
+
+src_install() {
+ insinto /opt/${PN}
+ doins *.jar
+ exeinto /usr/bin
+ newexe ${FILESDIR}/${PN}.sh ${PN}
+ insinto /etc/env.d
+ doins 50${PN}
+ dohtml docs/readme/*
+}