diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2010-07-09 11:39:56 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2010-07-09 11:39:56 +0000 |
commit | 3f5052e74b8b1f573b2898fa4675ddceb9f8c409 (patch) | |
tree | 3344a7071d9fe7d982490e63c2e4c903488d1c35 /net-libs | |
parent | stable x86, bug 327299 (diff) | |
download | gentoo-2-3f5052e74b8b1f573b2898fa4675ddceb9f8c409.tar.gz gentoo-2-3f5052e74b8b1f573b2898fa4675ddceb9f8c409.tar.bz2 gentoo-2-3f5052e74b8b1f573b2898fa4675ddceb9f8c409.zip |
Version bump per bug #327553. Thx to Locke Shinseiko for the patch.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libktorrent/ChangeLog | 8 | ||||
-rw-r--r-- | net-libs/libktorrent/libktorrent-1.0.2.ebuild | 54 |
2 files changed, 61 insertions, 1 deletions
diff --git a/net-libs/libktorrent/ChangeLog b/net-libs/libktorrent/ChangeLog index d1f39afadab9..305e21f843ef 100644 --- a/net-libs/libktorrent/ChangeLog +++ b/net-libs/libktorrent/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-libs/libktorrent # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libktorrent/ChangeLog,v 1.3 2010/06/22 19:30:24 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libktorrent/ChangeLog,v 1.4 2010/07/09 11:39:56 scarabeus Exp $ + +*libktorrent-1.0.2 (09 Jul 2010) + + 09 Jul 2010; Tomáš Chvátal <scarabeus@gentoo.org> + +libktorrent-1.0.2.ebuild: + Version bump per bug #327553. Thx to Locke Shinseiko for the patch. 22 Jun 2010; Tomáš Chvátal <scarabeus@gentoo.org> -libktorrent-1.0.0.ebuild, libktorrent-1.0.1.ebuild: diff --git a/net-libs/libktorrent/libktorrent-1.0.2.ebuild b/net-libs/libktorrent/libktorrent-1.0.2.ebuild new file mode 100644 index 000000000000..84f36fd61e91 --- /dev/null +++ b/net-libs/libktorrent/libktorrent-1.0.2.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libktorrent/libktorrent-1.0.2.ebuild,v 1.1 2010/07/09 11:39:56 scarabeus Exp $ + +EAPI="2" + +if [[ ${PV} == *9999* ]] ; then + KMNAME="extragear/network" +else + # upstream likes to skip that _ in beta releases + KTORRENT_VERSION="4.0.2" + MY_PV="${PV/_/}" + MY_P="${PN}-${MY_PV}" + + 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}" +fi + +inherit kde4-base + +DESCRIPTION="A BitTorrent library based on KDE Platform" +HOMEPAGE="http://ktorrent.org/" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +SLOT="4" +IUSE="debug doc" + +COMMONDEPEND=" + app-crypt/qca:2 + dev-libs/gmp +" +DEPEND="${COMMONDEPEND} + dev-libs/boost + sys-devel/gettext + doc? ( app-doc/doxygen[-nodot] ) +" +RDEPEND="${COMMONDEPEND}" + +src_compile() { + cmake-utils_src_compile + + use doc && cmake-utils_src_compile docs +} + +src_install() { + use doc && HTML_DOCS=("${CMAKE_BUILD_DIR}/apidocs/html/") + + cmake-utils_src_install +} |