From ea9dd75612e98e309ce7aa023e37bb194dd1ee36 Mon Sep 17 00:00:00 2001 From: Horea Christian Date: Sun, 17 Aug 2014 00:33:24 +0200 Subject: [PATCH] new ebuild --- app-editors/atom/atom-9999.ebuild | 38 +++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 app-editors/atom/atom-9999.ebuild diff --git a/app-editors/atom/atom-9999.ebuild b/app-editors/atom/atom-9999.ebuild new file mode 100644 index 0000000..9cd408f --- /dev/null +++ b/app-editors/atom/atom-9999.ebuild @@ -0,0 +1,38 @@ +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +inherit python-single-r1 git-2 + +DESCRIPTION="A modern, approachable, and hackable text editor." +HOMEPAGE="https://atom.io/" +EGIT_REPO_URI="https://github.com/atom/atom.git" +SRC_URI="" + + +SLOT="0" +LICENSE="MIT" +KEYWORDS="~x86 ~amd64" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND=" + gnome-base/libgnome-keyring + ${PYTHON_DEPS} +" + +RDEPEND=" + ${DEPEND} + >=net-libs/nodejs-0.10.29[npm] +" + +src_compile() { + script/build --verbose --no-quiet || die +} + +src_install() { + dobin atom-shell/atom +} + +