diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2011-09-04 18:22:59 +0000 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2011-09-04 18:22:59 +0000 |
commit | 1414aa7847cafbe9c2cdab2d88891be5a445a52f (patch) | |
tree | 58d7db78c7d9f9c7892baeded7b5ea10f94fad1d /net-p2p | |
parent | Maintenance. Use CPAN mirrors. Change version scheme (diff) | |
download | gentoo-2-1414aa7847cafbe9c2cdab2d88891be5a445a52f.tar.gz gentoo-2-1414aa7847cafbe9c2cdab2d88891be5a445a52f.tar.bz2 gentoo-2-1414aa7847cafbe9c2cdab2d88891be5a445a52f.zip |
Version bump
(Portage version: 2.1.10.11/cvs/Linux x86_64)
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/ktorrent/ChangeLog | 8 | ||||
-rw-r--r-- | net-p2p/ktorrent/ktorrent-4.1.2.ebuild | 102 |
2 files changed, 109 insertions, 1 deletions
diff --git a/net-p2p/ktorrent/ChangeLog b/net-p2p/ktorrent/ChangeLog index 18ac8b914036..79ca09307c84 100644 --- a/net-p2p/ktorrent/ChangeLog +++ b/net-p2p/ktorrent/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-p2p/ktorrent # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/ktorrent/ChangeLog,v 1.169 2011/06/01 22:22:30 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/ktorrent/ChangeLog,v 1.170 2011/09/04 18:22:59 dilfridge Exp $ + +*ktorrent-4.1.2 (04 Sep 2011) + + 04 Sep 2011; Andreas K. Huettel <dilfridge@gentoo.org> + +ktorrent-4.1.2.ebuild: + Version bump 01 Jun 2011; Andreas K. Huettel <dilfridge@gentoo.org> -ktorrent-4.0.5.ebuild: diff --git a/net-p2p/ktorrent/ktorrent-4.1.2.ebuild b/net-p2p/ktorrent/ktorrent-4.1.2.ebuild new file mode 100644 index 000000000000..ce992038d0a9 --- /dev/null +++ b/net-p2p/ktorrent/ktorrent-4.1.2.ebuild @@ -0,0 +1,102 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/ktorrent/ktorrent-4.1.2.ebuild,v 1.1 2011/09/04 18:22:59 dilfridge Exp $ + +EAPI=4 + +KDE_SCM="git" +KDE_MINIMAL="4.5" +LIBKT_VERSION_MIN="${PV}" +LIBKT_VERSION_MAX="99999999" +if [[ ${PV} != 9999* ]]; then + inherit versionator + # upstream likes to skip that _ in beta releases + MY_PV="${PV/_/}" + LIBKT_VERSION_MIN=$(($(get_major_version)-3)).$(get_version_component_range 2-3 ${PV}) + LIBKT_VERSION_MAX=$(($(get_major_version)-3)).$(($(get_version_component_range 2)+1)) + MY_P="${PN}-${MY_PV}" + KDE_HANDBOOK="optional" + KDE_DOC_DIRS="doc" + + KDE_LINGUAS="ar ast be bg ca ca@valencia cs da de el en_GB eo es et eu + fi 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 si sk sl sr sr@ijekavian sr@ijekavianlatin + sr@latin sv tr uk zh_CN zh_TW" + SRC_URI="http://ktorrent.org/downloads/${MY_PV}/${MY_P}.tar.bz2" + S="${WORKDIR}"/"${MY_P}" + + KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +else + LIBKT_VERSION_MIN="${PV}" + LIBKT_VERSION_MAX="99999999" + KEYWORDS="" +fi + +inherit kde4-base + +DESCRIPTION="A BitTorrent program for KDE." +HOMEPAGE="http://ktorrent.org/" + +LICENSE="GPL-2" +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-${LIBKT_VERSION_MAX} + >=net-libs/libktorrent-${LIBKT_VERSION_MIN} + mediaplayer? ( >=media-libs/taglib-1.5 ) + plasma? ( $(add_kdebase_dep libtaskmanager) ) + rss? ( $(add_kdebase_dep kdepimlibs) ) + shutdown? ( + $(add_kdebase_dep libkworkspace) + $(add_kdebase_dep solid) + ) +" +DEPEND="${COMMONDEPEND} + dev-libs/boost + sys-devel/gettext +" +RDEPEND="${COMMONDEPEND} + infowidget? ( dev-libs/geoip ) + ipfilter? ( + app-arch/bzip2 + app-arch/unzip + $(add_kdebase_dep kdebase-kioslaves) + ) + kross? ( $(add_kdebase_dep krosspython) ) +" + +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=( + $(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 +} |