diff options
author | Andreas Hüttel <dilfridge@gentoo.org> | 2011-09-04 18:07:20 +0000 |
---|---|---|
committer | Andreas Hüttel <dilfridge@gentoo.org> | 2011-09-04 18:07:20 +0000 |
commit | c78cb2edfa299fef01cef343c7ea6c5092c78122 (patch) | |
tree | 12624a7e8c969318f70e1be91af472298c33908d /net-libs/libktorrent/libktorrent-1.1.2.ebuild | |
parent | Add support for cleaned /var/run on startup by Xake and i.Dark_Templar (bug #... (diff) | |
download | historical-c78cb2edfa299fef01cef343c7ea6c5092c78122.tar.gz historical-c78cb2edfa299fef01cef343c7ea6c5092c78122.tar.bz2 historical-c78cb2edfa299fef01cef343c7ea6c5092c78122.zip |
Version bump
Package-Manager: portage-2.1.10.11/cvs/Linux x86_64
Diffstat (limited to 'net-libs/libktorrent/libktorrent-1.1.2.ebuild')
-rw-r--r-- | net-libs/libktorrent/libktorrent-1.1.2.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/net-libs/libktorrent/libktorrent-1.1.2.ebuild b/net-libs/libktorrent/libktorrent-1.1.2.ebuild new file mode 100644 index 000000000000..0984184208c9 --- /dev/null +++ b/net-libs/libktorrent/libktorrent-1.1.2.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.2.ebuild,v 1.1 2011/09/04 18:07:20 dilfridge Exp $ + +EAPI=4 + +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 +} |