diff options
author | Karol Wojtaszek <sekretarz@gentoo.org> | 2005-07-28 20:21:18 +0000 |
---|---|---|
committer | Karol Wojtaszek <sekretarz@gentoo.org> | 2005-07-28 20:21:18 +0000 |
commit | 2e74df09cd7aa88b9977f8bf035d8fa7b426132a (patch) | |
tree | f026aec67ec357d19bcc0b07e9bc288e99166b4b /net-p2p | |
parent | adding app-mobilephone/yaps flags (diff) | |
download | gentoo-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')
-rw-r--r-- | net-p2p/phex/ChangeLog | 9 | ||||
-rw-r--r-- | net-p2p/phex/files/digest-phex-2.6.0.87 | 1 | ||||
-rw-r--r-- | net-p2p/phex/phex-2.6.0.87.ebuild | 34 |
3 files changed, 42 insertions, 2 deletions
diff --git a/net-p2p/phex/ChangeLog b/net-p2p/phex/ChangeLog index 51ee08013029..192f76b6d30b 100644 --- a/net-p2p/phex/ChangeLog +++ b/net-p2p/phex/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-p2p/phex -# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/phex/ChangeLog,v 1.5 2004/10/13 22:59:30 squinky86 Exp $ +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/phex/ChangeLog,v 1.6 2005/07/28 20:21:18 sekretarz Exp $ + +*phex-2.6.0.87 (28 Jul 2005) + + 28 Jul 2005; <sekretarz@gentoo.org> +phex-2.6.0.87.ebuild: + Version bump, bug #96135. Moved phex wrapper to /usr/bin *phex-2.1.4.80 (13 Oct 2004) diff --git a/net-p2p/phex/files/digest-phex-2.6.0.87 b/net-p2p/phex/files/digest-phex-2.6.0.87 new file mode 100644 index 000000000000..1292fe4079f3 --- /dev/null +++ b/net-p2p/phex/files/digest-phex-2.6.0.87 @@ -0,0 +1 @@ +MD5 bbb770bb52beb51efdae738789a01d65 phex_2.6.0.87.zip 2197008 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/* +} |