aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDror Levin <spatz@gentoo.org>2010-05-28 02:16:40 +0300
committerDror Levin <spatz@gentoo.org>2010-05-28 02:16:40 +0300
commit1c548d0d7ea99b271fe39c7df33cb2a510952405 (patch)
tree8c6657daa6067ddf24ebdb56af19b9846da18cd8 /net-p2p
parent[net-misc/knemo] removed, newer version in tree (diff)
downloadkde-1c548d0d7ea99b271fe39c7df33cb2a510952405.tar.gz
kde-1c548d0d7ea99b271fe39c7df33cb2a510952405.tar.bz2
kde-1c548d0d7ea99b271fe39c7df33cb2a510952405.zip
[net-{libs/lib,p2p/}ktorrent] version 4.0.0 moved to tree
Diffstat (limited to 'net-p2p')
-rw-r--r--net-p2p/ktorrent/Manifest2
-rw-r--r--net-p2p/ktorrent/ktorrent-4.0.0.ebuild87
2 files changed, 0 insertions, 89 deletions
diff --git a/net-p2p/ktorrent/Manifest b/net-p2p/ktorrent/Manifest
index 55a8d199b0..2d2fbdbba1 100644
--- a/net-p2p/ktorrent/Manifest
+++ b/net-p2p/ktorrent/Manifest
@@ -1,4 +1,2 @@
-DIST ktorrent-4.0.0.tar.bz2 2808075 RMD160 8514943dadff9816a038fac2a44c051bd112b16b SHA1 53376065ba78262acbb09eca186a34f75f02bea9 SHA256 890843b95dbdd8c3ada73cce4ccf64f9eb5ae110f499a107f2e84f38f3ad872e
-EBUILD ktorrent-4.0.0.ebuild 2578 RMD160 206448feba705942a5f4176a3342e9125bc23b29 SHA1 94e0626721ad343e234ad35681c9474e94091abc SHA256 96c95ec5f249373c916235c4ca5fdc33e9aeb08d33801b863aa053e55d785be1
EBUILD ktorrent-9999.ebuild 2670 RMD160 f8c36da1bff522f7a3c07553cf3f758ed995c506 SHA1 e3be15453da1b77ca3e14ed1432cfc6a1da1cd4e SHA256 bcad2a5e01734451d582cfaf3f42e310997a379c04199057f63df5df4ceea19a
MISC metadata.xml 1425 RMD160 57a8dc4f1f121a577f042faea242dcb4bada8f7a SHA1 85f5015342bc1ffbedc1da1171260c05ee6b4eb8 SHA256 589714ec7f93ed39929de5c133b7aa98714b4223298d98b7c0585e6263258c30
diff --git a/net-p2p/ktorrent/ktorrent-4.0.0.ebuild b/net-p2p/ktorrent/ktorrent-4.0.0.ebuild
deleted file mode 100644
index 2c7fbbb627..0000000000
--- a/net-p2p/ktorrent/ktorrent-4.0.0.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="2"
-
-if [[ ${PV} == *9999* ]] ; then
- KMNAME="extragear/network"
-else
- KDE_LINGUAS="ar be bg ca cs da de el en_GB es et eu fr ga gl hi hne hr hu is it
- ja km lt lv mai ms nb nds nl nn oc pl pt pt_BR ro ru se sk sl sr sv
- tr uk zh_CN zh_TW"
- SRC_URI="http://ktorrent.org/downloads/${PV%.*}/${P}.tar.bz2"
-fi
-
-inherit kde4-base
-
-DESCRIPTION="A BitTorrent program for KDE."
-HOMEPAGE="http://ktorrent.org/"
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
-SLOT="4"
-IUSE="+bwscheduler debug +downloadorder +infowidget +ipfilter +kross +logviewer
-+magnetgenerator +mediaplayer plasma rss +scanfolder +search +shutdown +stats
-+upnp webinterface +zeroconf"
-
-COMMONDEPEND="
- >=net-libs/libktorrent-1.0_rc1
- mediaplayer? ( >=media-libs/taglib-1.5 )
- plasma? ( >=kde-base/libtaskmanager-${KDE_MINIMAL} )
- rss? (
- >=kde-base/kdepimlibs-${KDE_MINIMAL}
- )
- shutdown? (
- >=kde-base/solid-${KDE_MINIMAL}
- >=kde-base/libkworkspace-${KDE_MINIMAL}
- )
-"
-DEPEND="${COMMONDEPEND}
- dev-libs/boost
- sys-devel/gettext
-"
-RDEPEND="${COMMONDEPEND}
- infowidget? ( >=dev-libs/geoip-1.4.4 )
- ipfilter? (
- app-arch/bzip2
- app-arch/unzip
- >=kde-base/kdebase-kioslaves-${KDE_MINIMAL}
- )
- kross? ( >=kde-base/krosspython-${KDE_MINIMAL} )
-"
-
-src_prepare() {
- if ! use plasma; then
- sed -i \
- -e "s:add_subdirectory(plasma):#nada:g" \
- CMakeLists.txt || die "Failed to make plasmoid optional"
- fi
-
- kde4-base_src_prepare
-}
-
-src_configure() {
- mycmakeargs=(
- -DENABLE_DHT_SUPPORT=ON
- -DWITH_SYSTEM_GEOIP=ON
- $(cmake-utils_use_enable bwscheduler BWSCHEDULER_PLUGIN)
- $(cmake-utils_use_enable downloadorder DOWNLOADORDER_PLUGIN)
- $(cmake-utils_use_enable infowidget INFOWIDGET_PLUGIN)
- $(cmake-utils_use_with infowidget SYSTEM_GEOIP)
- $(cmake-utils_use_enable ipfilter IPFILTER_PLUGIN)
- $(cmake-utils_use_enable kross SCRIPTING_PLUGIN)
- $(cmake-utils_use_enable logviewer LOGVIEWER_PLUGIN)
- $(cmake-utils_use_enable magnetgenerator MAGNETGENERATOR_PLUGIN)
- $(cmake-utils_use_enable mediaplayer MEDIAPLAYER_PLUGIN)
- $(cmake-utils_use_enable rss SYNDICATION_PLUGIN)
- $(cmake-utils_use_enable scanfolder SCANFOLDER_PLUGIN)
- $(cmake-utils_use_enable search SEARCH_PLUGIN)
- $(cmake-utils_use_enable shutdown SHUTDOWN_PLUGIN)
- $(cmake-utils_use_enable stats STATS_PLUGIN)
- $(cmake-utils_use_enable upnp UPNP_PLUGIN)
- $(cmake-utils_use_enable webinterface WEBINTERFACE_PLUGIN)
- $(cmake-utils_use_enable zeroconf ZEROCONF_PLUGIN)
- )
- kde4-base_src_configure
-}