summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIngmar Vanhassel <ingmar@gentoo.org>2008-02-19 02:01:44 +0000
committerIngmar Vanhassel <ingmar@gentoo.org>2008-02-19 02:01:44 +0000
commit43c4966e60b2f346aa66af2cb1afad174352dab3 (patch)
tree0d7c943b27be9191c3f72d4c1a2ae0afc5e6ef54 /net-p2p/ktorrent
parentOld. (diff)
downloadgentoo-2-43c4966e60b2f346aa66af2cb1afad174352dab3.tar.gz
gentoo-2-43c4966e60b2f346aa66af2cb1afad174352dab3.tar.bz2
gentoo-2-43c4966e60b2f346aa66af2cb1afad174352dab3.zip
Old.
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-p2p/ktorrent')
-rw-r--r--net-p2p/ktorrent/ChangeLog5
-rw-r--r--net-p2p/ktorrent/ktorrent-2.2.5.ebuild83
2 files changed, 4 insertions, 84 deletions
diff --git a/net-p2p/ktorrent/ChangeLog b/net-p2p/ktorrent/ChangeLog
index 75d9566da257..bf2ac1c4eb85 100644
--- a/net-p2p/ktorrent/ChangeLog
+++ b/net-p2p/ktorrent/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-p2p/ktorrent
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/ktorrent/ChangeLog,v 1.76 2008/02/15 19:33:47 tgurr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/ktorrent/ChangeLog,v 1.77 2008/02/19 02:01:44 ingmar Exp $
+
+ 19 Feb 2008; Ingmar Vanhassel <ingmar@gentoo.org> -ktorrent-2.2.5.ebuild:
+ Old.
*ktorrent-2.2.5-r1 (15 Feb 2008)
diff --git a/net-p2p/ktorrent/ktorrent-2.2.5.ebuild b/net-p2p/ktorrent/ktorrent-2.2.5.ebuild
deleted file mode 100644
index 3b72b967fafc..000000000000
--- a/net-p2p/ktorrent/ktorrent-2.2.5.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/ktorrent/ktorrent-2.2.5.ebuild,v 1.1 2008/01/29 02:19:23 tgurr Exp $
-
-inherit kde
-
-MY_P="${P/_/}"
-MY_PV="${PV/_/}"
-DESCRIPTION="A BitTorrent program for KDE."
-HOMEPAGE="http://ktorrent.org/"
-SRC_URI="http://ktorrent.org/downloads/${MY_PV}/${MY_P}.tar.bz2"
-LICENSE="GPL-2"
-
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-IUSE="avahi geoip kdeenablefinal"
-
-DEPEND="dev-libs/gmp
- avahi? ( >=net-dns/avahi-0.6.16-r1 )
- geoip? ( >=dev-libs/geoip-1.4.0-r1 )"
-RDEPEND="${DEPEND}
- || ( kde-base/kdebase kde-base/kdebase-kioslaves )"
-
-S="${WORKDIR}/${MY_P}"
-
-need-kde 3.5
-
-LANGS="ar bg br ca cs cy da de el en_GB es et fa fr gl hu it ja ka lt
-ms nb nds nl pa pl pt pt_BR ru rw sk sr sr@Latn sv tr uk zh_CN zh_TW"
-
-for X in ${LANGS} ; do
- IUSE="${IUSE} linguas_${X}"
-done
-
-pkg_setup() {
- if use avahi && ! built_with_use net-dns/avahi qt3 ; then
- echo
- eerror "In order to use ktorrents zeroconf plugin you need to have"
- eerror "net-dns/avahi emerged with \"qt3\" in your USE flag. Please add"
- eerror "that flag, re-emerge avahi, and then emerge ktorrent again."
- echo
- die "net-dns/avahi not built with \"qt3\" support."
- fi
-
- kde_pkg_setup
-}
-
-src_unpack() {
- kde_src_unpack
-
- local MAKE_LANGS
- cd "${WORKDIR}/${MY_P}/translations"
- for X in ${LANGS} ; do
- use linguas_${X} && MAKE_LANGS="${MAKE_LANGS} ${X}"
- done
- sed -i -e "s:SUBDIRS=.*:SUBDIRS=${MAKE_LANGS}:" Makefile.am
-
- cd "${S}"
- # Fix automagic dependencies on avahi and geoip
- epatch "${FILESDIR}/${PN}-2.2.5-avahi-check.patch"
- epatch "${FILESDIR}/${PN}-2.2.2-geoip-check.patch"
-
- rm -f "${S}/configure"
-}
-
-src_compile(){
- local myconf="--enable-knetwork --enable-builtin-country-flags"
- myconf="${myconf} --enable-torrent-mimetype"
-
- if use geoip ; then
- myconf="${myconf} --enable-system-geoip --disable-geoip"
- else
- myconf="${myconf} --disable-geoip --disable-system-geoip"
- fi
-
- if use avahi ; then
- myconf="${myconf} --with-avahi"
- else
- myconf="${myconf} --without-avahi"
- fi
-
- kde_src_compile
-}