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 39850138247 for ; Fri, 10 Jan 2014 11:53:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42DCFE09E2; Fri, 10 Jan 2014 11:53:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BAC6AE09E2 for ; Fri, 10 Jan 2014 11:53:23 +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 E3A0133F701 for ; Fri, 10 Jan 2014 11:53:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 7B1F4E5533 for ; Fri, 10 Jan 2014 11:53:21 +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: <1389354782.1fb69f6e98af9cb211a66ffc4beb2d20d16a547c.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/sonnet/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/sonnet/sonnet-4.95.0.ebuild X-VCS-Directories: kde-frameworks/sonnet/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 1fb69f6e98af9cb211a66ffc4beb2d20d16a547c X-VCS-Branch: master Date: Fri, 10 Jan 2014 11:53:21 +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: 3d4aebdf-7e63-49df-a93b-f657ea2547f9 X-Archives-Hash: 2c76fb99d5661887d2ad07941271e0f0 commit: 1fb69f6e98af9cb211a66ffc4beb2d20d16a547c Author: Michael Palimaka gentoo org> AuthorDate: Fri Jan 10 11:53:02 2014 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Fri Jan 10 11:53:02 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=1fb69f6e [kde-frameworks/sonnet] Add tech preview. Package-Manager: portage-2.2.7 --- kde-frameworks/sonnet/sonnet-4.95.0.ebuild | 32 ++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/kde-frameworks/sonnet/sonnet-4.95.0.ebuild b/kde-frameworks/sonnet/sonnet-4.95.0.ebuild new file mode 100644 index 0000000..85b4e80 --- /dev/null +++ b/kde-frameworks/sonnet/sonnet-4.95.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +FRAMEWORKS_DOXYGEN="true" +inherit kde-frameworks + +DESCRIPTION="Framework for providing spell-checking capabilities through abstraction of popular backends" +LICENSE="LGPL-2+ LGPL-2.1+" +KEYWORDS="~amd64" +IUSE="aspell hunspell" + +RDEPEND=" + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + aspell? ( app-text/aspell ) + hunspell? ( app-text/hunspell ) +" +DEPEND="${RDEPEND}" + +src_configure() { + # enchant is disabled in master due to being buggy + local mycmakeargs=( + -DCMAKE_DISABLE_FIND_PACKAGE_ENCHANT=ON + $(cmake-utils_use_find_package aspell) + $(cmake-utils_use_find_package hunspell) + ) + + kde-frameworks_src_configure +}