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 620C21381F4 for ; Wed, 15 Aug 2012 06:55:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 137D021C003; Wed, 15 Aug 2012 06:55:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id D1BA921C003 for ; Wed, 15 Aug 2012 06:55:05 +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 300DF1B4028 for ; Wed, 15 Aug 2012 06:55:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 5811AE543A for ; Wed, 15 Aug 2012 06:52:21 +0000 (UTC) From: "Marcel Unbehaun" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marcel Unbehaun" Message-ID: <1345013704.222acb22ea827a292cd7e568d1f771330aa17fbf.frostwork@gentoo> Subject: [gentoo-commits] proj/gamerlay:master commit in: x11-apps/typhon/ X-VCS-Repository: proj/gamerlay X-VCS-Files: x11-apps/typhon/typhon-2.0_rc1.ebuild X-VCS-Directories: x11-apps/typhon/ X-VCS-Committer: frostwork X-VCS-Committer-Name: Marcel Unbehaun X-VCS-Revision: 222acb22ea827a292cd7e568d1f771330aa17fbf X-VCS-Branch: master Date: Wed, 15 Aug 2012 06:52: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: d4036491-eaaa-483a-bdd2-658a1887f01b X-Archives-Hash: 9996f945c51f3e22cb247d7f530181e5 commit: 222acb22ea827a292cd7e568d1f771330aa17fbf Author: Marcel Unbehaun frostworx de> AuthorDate: Wed Aug 15 06:55:04 2012 +0000 Commit: Marcel Unbehaun gmx de> CommitDate: Wed Aug 15 06:55:04 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=222acb22 [x11-apps/typhon] new typhon-2.0_rc1.ebuild --- x11-apps/typhon/typhon-2.0_rc1.ebuild | 37 +++++++++++++++++++++++++++++++++ 1 files changed, 37 insertions(+), 0 deletions(-) diff --git a/x11-apps/typhon/typhon-2.0_rc1.ebuild b/x11-apps/typhon/typhon-2.0_rc1.ebuild new file mode 100644 index 0000000..07e962e --- /dev/null +++ b/x11-apps/typhon/typhon-2.0_rc1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: x11-apps/typhon-2.0-rc1.ebuild,v 1.1 2012/08/15 17:48:23 by frostwork Exp $ + +EAPI="4" + +CMAKE_MIN_VERSION=2.8 + +inherit cmake-utils eutils + +DESCRIPTION="A slim and themeable opengl dashboard / program launcher" +HOMEPAGE="http://www.frostworx.de/?p=1" +SRC_URI="http://www.frostworx.de/typhon/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug mmd sfe +p3t" + +RDEPEND="virtual/opengl + dev-libs/tinyxml + media-libs/libpng + >=media-libs/libsfml-1.99 + sfe? ( media-libs/sfemovie ) + sys-libs/zlib + mmd? ( media-libs/libmmd ) + p3t? ( media-libs/libp3t )" +DEPEND="${RDEPEND}" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use debug DEBUG) + $(cmake-utils_use !mmd NOMMD) + ) + + cmake-utils_src_configure +}