From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7B360138010 for ; Wed, 31 Oct 2012 15:45:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 97F4821C07F; Wed, 31 Oct 2012 15:45:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 0FD0421C07F for ; Wed, 31 Oct 2012 15:45:18 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5192A33C206 for ; Wed, 31 Oct 2012 15:45:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id E3BECE5436 for ; Wed, 31 Oct 2012 15:45:16 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1351698206.b4ec251b2a4943db080cdfadd9f5e79b9262e721.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: www-client/rekonq/ X-VCS-Repository: proj/kde X-VCS-Files: www-client/rekonq/rekonq-1.70.ebuild X-VCS-Directories: www-client/rekonq/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: b4ec251b2a4943db080cdfadd9f5e79b9262e721 X-VCS-Branch: master Date: Wed, 31 Oct 2012 15:45:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 64e2b7e4-b54b-4c07-abd0-ab3011311eba X-Archives-Hash: 2dafa3a0cfd6e3feac2f18c87e6eb165 commit: b4ec251b2a4943db080cdfadd9f5e79b9262e721 Author: Michael Palimaka gentoo org> AuthorDate: Wed Oct 31 15:43:08 2012 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Wed Oct 31 15:43:26 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=b4ec251b [www-client/rekonq] Add preview version. Package-Manager: portage-2.1.11.31 --- www-client/rekonq/rekonq-1.70.ebuild | 53 ++++++++++++++++++++++++++++++++++ 1 files changed, 53 insertions(+), 0 deletions(-) diff --git a/www-client/rekonq/rekonq-1.70.ebuild b/www-client/rekonq/rekonq-1.70.ebuild new file mode 100644 index 0000000..1b0a656 --- /dev/null +++ b/www-client/rekonq/rekonq-1.70.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/rekonq/rekonq-1.2.ebuild,v 1.1 2012/10/13 20:55:09 johu Exp $ + +EAPI=4 + +WEBKIT_REQUIRED="always" +QT_MINIMAL="4.8" +KDE_MINIMAL="4.7" +# handbook and linguas not shipped in preview +#KDE_LINGUAS="bg bs ca ca@valencia cs da de el en_GB eo es et eu fa fi fr ga gl +#hu is it ja km ko lt nb nds nl pl pt pt_BR ro ru sk sl sr sr@ijekavian +#sr@ijekavianlatin sr@latin sv th tr ug uk zh_CN zh_TW" +#KDE_HANDBOOK="optional" +inherit kde4-base + +DESCRIPTION="A browser based on qt-webkit" +HOMEPAGE="http://rekonq.kde.org/" +[[ ${PV} != *9999* ]] && SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="4" +KEYWORDS="~amd64 ~x86" +IUSE="debug opera semantic-desktop" + +DEPEND=" + $(add_kdebase_dep kdelibs 'semantic-desktop=') + opera? ( + app-crypt/qca:2 + dev-libs/qoauth + ) +" +RDEPEND="${DEPEND}" + +# docs are not shipped in preview +#src_prepare() { + # KDE_LINGUAS is also used to install appropriate handbooks + # since there is no en_US 'translation', it cannot be added + # hence making this impossible to install +# mv doc/en_US doc/en || die "doc move failed" +# sed -i -e 's/en_US/en/' doc/CMakeLists.txt || die "sed failed" +# kde4-base_src_prepare +#} + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_with opera QCA2) + $(cmake-utils_use_with opera QtOAuth) + $(cmake-utils_use_with semantic-desktop Nepomuk) + ) + + kde4-base_src_configure +}