From 9da88ac7781f1fc2006fad01d8297e46336d3a93 Mon Sep 17 00:00:00 2001 From: Jon Hood Date: Wed, 16 Jun 2004 22:35:46 +0000 Subject: fix non-gtk release, #54128 --- net-p2p/sancho-bin/ChangeLog | 8 +++- net-p2p/sancho-bin/files/digest-sancho-bin-0.9.4.5 | 2 - .../sancho-bin/files/digest-sancho-bin-0.9.4.5-r1 | 2 + net-p2p/sancho-bin/sancho-bin-0.9.4.5-r1.ebuild | 55 ++++++++++++++++++++++ net-p2p/sancho-bin/sancho-bin-0.9.4.5.ebuild | 53 --------------------- 5 files changed, 64 insertions(+), 56 deletions(-) delete mode 100644 net-p2p/sancho-bin/files/digest-sancho-bin-0.9.4.5 create mode 100644 net-p2p/sancho-bin/files/digest-sancho-bin-0.9.4.5-r1 create mode 100644 net-p2p/sancho-bin/sancho-bin-0.9.4.5-r1.ebuild delete mode 100644 net-p2p/sancho-bin/sancho-bin-0.9.4.5.ebuild (limited to 'net-p2p/sancho-bin') diff --git a/net-p2p/sancho-bin/ChangeLog b/net-p2p/sancho-bin/ChangeLog index 9c6006fb0478..ed16eaf604b9 100644 --- a/net-p2p/sancho-bin/ChangeLog +++ b/net-p2p/sancho-bin/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-p2p/sancho-bin # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/sancho-bin/ChangeLog,v 1.3 2004/06/16 01:33:46 squinky86 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/sancho-bin/ChangeLog,v 1.4 2004/06/16 22:35:46 squinky86 Exp $ + +*sancho-bin-0.9.4.5-r1 (16 Jun 2004) + + 16 Jun 2004; Jon Hood +sancho-bin-0.9.4.5-r1.ebuild, + -sancho-bin-0.9.4.5.ebuild: + version bump for #54128 *sancho-bin-0.9.4.5 (15 Jun 2004) diff --git a/net-p2p/sancho-bin/files/digest-sancho-bin-0.9.4.5 b/net-p2p/sancho-bin/files/digest-sancho-bin-0.9.4.5 deleted file mode 100644 index d463324bc338..000000000000 --- a/net-p2p/sancho-bin/files/digest-sancho-bin-0.9.4.5 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 b3ff8e6dfff3631ed0ab8e5df4ff1f3a sancho-0.9.4-5-linux-gtk.tar.bz2 4831347 -MD5 7ed5b82ab7fdcc8507ab9658fd64af0e sancho-0.9.4-5-linux-fox.tar.bz2 5085770 diff --git a/net-p2p/sancho-bin/files/digest-sancho-bin-0.9.4.5-r1 b/net-p2p/sancho-bin/files/digest-sancho-bin-0.9.4.5-r1 new file mode 100644 index 000000000000..d463324bc338 --- /dev/null +++ b/net-p2p/sancho-bin/files/digest-sancho-bin-0.9.4.5-r1 @@ -0,0 +1,2 @@ +MD5 b3ff8e6dfff3631ed0ab8e5df4ff1f3a sancho-0.9.4-5-linux-gtk.tar.bz2 4831347 +MD5 7ed5b82ab7fdcc8507ab9658fd64af0e sancho-0.9.4-5-linux-fox.tar.bz2 5085770 diff --git a/net-p2p/sancho-bin/sancho-bin-0.9.4.5-r1.ebuild b/net-p2p/sancho-bin/sancho-bin-0.9.4.5-r1.ebuild new file mode 100644 index 000000000000..cc4d956b0b67 --- /dev/null +++ b/net-p2p/sancho-bin/sancho-bin-0.9.4.5-r1.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/sancho-bin/sancho-bin-0.9.4.5-r1.ebuild,v 1.1 2004/06/16 22:35:46 squinky86 Exp $ + +IUSE="gtk2" + +MY_P=${P/-bin/} +MY_P=${MY_P%.*}-${MY_P##*.} + +use gtk2 && TOOLKIT="gtk" || TOOLKIT="fox" + +DESCRIPTION="a powerful frontend for mldonkey" +HOMEPAGE="http://sancho-gui.sourceforge.net/" +SRC_URI="http://sancho-gui.sourceforge.net/tmp/${MY_P}-linux-${TOOLKIT}.tar.bz2" +SRC_URI="gtk2? ( http://sancho-gui.sourceforge.net/tmp/${MY_P}-linux-gtk.tar.bz2 ) + !gtk2? ( http://sancho-gui.sourceforge.net/tmp/${MY_P}-linux-fox.tar.bz2 )" + +KEYWORDS="~x86" +SLOT="0" +LICENSE="CPL-1.0 LGPL-2.1" +RESTRICT="nomirror" + +DEPEND="virtual/glibc + virtual/x11 + gtk2? ( >=x11-libs/gtk+-2 )" + +S="${WORKDIR}/${MY_P}-linux-${TOOLKIT}" + +src_compile() { + einfo "Nothing to compile." +} + +src_install() { + dodir /opt/sancho + dodir /opt/bin + + cd ${S} + cp -dpR sancho distrib lib ${D}/opt/sancho + + exeinto /opt/sancho + doexe sancho-bin + + exeinto /opt/bin + newexe ${FILESDIR}/sancho.sh sancho + + dodir /etc/env.d + echo -e "PATH=/opt/sancho\n" > ${D}/etc/env.d/20sancho +} + +pkg_postinst() { + einfo + einfo "Sancho requires the presence of a p2p core, like" + einfo "net-p2p/mldonkey, in order to operate." + einfo +} diff --git a/net-p2p/sancho-bin/sancho-bin-0.9.4.5.ebuild b/net-p2p/sancho-bin/sancho-bin-0.9.4.5.ebuild deleted file mode 100644 index cdc91bdfbe95..000000000000 --- a/net-p2p/sancho-bin/sancho-bin-0.9.4.5.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/sancho-bin/sancho-bin-0.9.4.5.ebuild,v 1.1 2004/06/16 01:33:46 squinky86 Exp $ - -IUSE="gtk2" - -MY_P=${P/-bin/} -MY_P=${MY_P%.*}-${MY_P##*.} - -use gtk2 && TOOLKIT="gtk" || TOOLKIT="fox" - -DESCRIPTION="a powerful frontend for mldonkey" -HOMEPAGE="http://sancho-gui.sourceforge.net/" -SRC_URI="http://sancho-gui.sourceforge.net/tmp/${MY_P}-linux-${TOOLKIT}.tar.bz2" - -KEYWORDS="~x86" -SLOT="0" -LICENSE="CPL-1.0 LGPL-2.1" -RESTRICT="nomirror" - -DEPEND="virtual/glibc - virtual/x11 - gtk2? ( >=x11-libs/gtk+-2 )" - -S="${WORKDIR}/${MY_P}-linux-${TOOLKIT}" - -src_compile() { - einfo "Nothing to compile." -} - -src_install() { - dodir /opt/sancho - dodir /opt/bin - - cd ${S} - cp -dpR sancho distrib lib ${D}/opt/sancho - - exeinto /opt/sancho - doexe sancho-bin - - exeinto /opt/bin - newexe ${FILESDIR}/sancho.sh sancho - - dodir /etc/env.d - echo -e "PATH=/opt/sancho\n" > ${D}/etc/env.d/20sancho -} - -pkg_postinst() { - einfo - einfo "Sancho requires the presence of a p2p core, like" - einfo "net-p2p/mldonkey, in order to operate." - einfo -} -- cgit v1.2.3-65-gdbad