diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2017-03-12 11:19:10 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2017-03-12 11:19:10 +0300 |
commit | 4fce9eb82dd0ded86904e2cf2efc0e085e42698f (patch) | |
tree | 1e824a19ffd162e6e5b7c3de63cc994f95c2f6d8 /dev-util | |
parent | bc9234e493f32e07b6ba4356b748c8b67890a7b9 (diff) |
codelite from lif (dead ?) repo
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/codelite/codelite-scm.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/dev-util/codelite/codelite-scm.ebuild b/dev-util/codelite/codelite-scm.ebuild new file mode 100644 index 0000000..bdffa77 --- /dev/null +++ b/dev-util/codelite/codelite-scm.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="6" + +WX_GTK_VER="3.0" + +inherit cmake-utils git-r3 wxwidgets + +DESCRIPTION="A Free, open source, cross platform C,C++,PHP and Node.js IDE" +HOMEPAGE="http://www.codelite.org" +EGIT_REPO_URI="git://github.com/eranif/${PN}.git" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="" +IUSE="clang flex mysql pch sftp webview" + +DEPEND=" + dev-db/sqlite:* + net-libs/libssh + x11-libs/wxGTK:3.0 + mysql? ( virtual/mysql ) +" + +RDEPEND="${DEPEND}" + +src_prepare() { + epatch "${FILESDIR}/codelite_dont_strip.patch" +} + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_enable clang CLANG) + $(cmake-utils_use_with flex FLEX) + $(cmake-utils_use_with mysql MYSQL) + $(cmake-utils_use_with pch PCH) + $(cmake-utils_use_enable sftp SFTP) + $(cmake-utils_use_with webview WEBVIEW) + ) + + cmake-utils_src_configure +} |