diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-03-23 08:31:48 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-03-23 08:31:48 +0000 |
commit | 95f332e2293609bace1c85e68b1e58550f34f81a (patch) | |
tree | 50eeb739588b52b29b7a59c31596ab4ba7a1abe6 /net-libs/libktorrent | |
parent | Fix slot-deps on gnome libs, remove old (diff) | |
download | gentoo-2-95f332e2293609bace1c85e68b1e58550f34f81a.tar.gz gentoo-2-95f332e2293609bace1c85e68b1e58550f34f81a.tar.bz2 gentoo-2-95f332e2293609bace1c85e68b1e58550f34f81a.zip |
Version bump.
(Portage version: 2.2.0_alpha28/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/libktorrent')
-rw-r--r-- | net-libs/libktorrent/ChangeLog | 8 | ||||
-rw-r--r-- | net-libs/libktorrent/libktorrent-1.1.0.ebuild | 51 |
2 files changed, 58 insertions, 1 deletions
diff --git a/net-libs/libktorrent/ChangeLog b/net-libs/libktorrent/ChangeLog index c71d812c16d0..f861f8e151c6 100644 --- a/net-libs/libktorrent/ChangeLog +++ b/net-libs/libktorrent/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-libs/libktorrent # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libktorrent/ChangeLog,v 1.15 2011/03/10 13:04:14 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libktorrent/ChangeLog,v 1.16 2011/03/23 08:31:48 scarabeus Exp $ + +*libktorrent-1.1.0 (23 Mar 2011) + + 23 Mar 2011; Tomáš Chvátal <scarabeus@gentoo.org> + +libktorrent-1.1.0.ebuild: + Version bump. 10 Mar 2011; <angelos@gentoo.org> libktorrent-1.0.5.3.ebuild: QA: Fixed VIRTUALX_REQUIRED diff --git a/net-libs/libktorrent/libktorrent-1.1.0.ebuild b/net-libs/libktorrent/libktorrent-1.1.0.ebuild new file mode 100644 index 000000000000..0150a08d8e11 --- /dev/null +++ b/net-libs/libktorrent/libktorrent-1.1.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libktorrent/libktorrent-1.1.0.ebuild,v 1.1 2011/03/23 08:31:47 scarabeus Exp $ + +EAPI=3 + +KDE_SCM="git" +if [[ ${PV} != 9999* ]]; then + inherit versionator + # upstream likes to skip that _ in beta releases + MY_PV="${PV/_/}" + KTORRENT_VERSION=$(($(get_major_version)+3)).$(get_version_component_range 2-3 ${MY_PV}) + 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 ku lt lv 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/${KTORRENT_VERSION}/${MY_P}.tar.bz2" + S="${WORKDIR}"/"${MY_P}" + + KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +else + KEYWORDS="" +fi +VIRTUALX_REQUIRED=test +inherit kde4-base + +DESCRIPTION="A BitTorrent library based on KDE Platform" +HOMEPAGE="http://ktorrent.org/" + +LICENSE="GPL-2" +SLOT="4" +IUSE="debug" + +RDEPEND=" + app-crypt/qca:2 + dev-libs/gmp +" +DEPEND="${RDEPEND} + dev-libs/boost + sys-devel/gettext +" + +src_prepare() { + kde4-base_src_prepare + # do not build non-installed example binary + sed -i -e '/add_subdirectory(examples)/d' CMakeLists.txt || die +} |