diff options
author | Ulrich Müller <ulm@gentoo.org> | 2017-11-19 22:20:32 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2017-11-19 22:20:59 +0100 |
commit | 4461bf4001e7db4d79deb413efcfe70271a8b362 (patch) | |
tree | fc2725273ecaa44387f5b2caf30156a9cf6517cd /app-emacs | |
parent | app-emacs/websocket: Initial import. (diff) | |
download | gentoo-4461bf4001e7db4d79deb413efcfe70271a8b362.tar.gz gentoo-4461bf4001e7db4d79deb413efcfe70271a8b362.tar.bz2 gentoo-4461bf4001e7db4d79deb413efcfe70271a8b362.zip |
app-emacs/atomic-chrome: Initial import.
Package-Manager: Portage-2.3.14, Repoman-2.3.6
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/atomic-chrome/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/atomic-chrome/atomic-chrome-2.0.0.ebuild | 21 | ||||
-rw-r--r-- | app-emacs/atomic-chrome/files/50atomic-chrome-gentoo.el | 5 | ||||
-rw-r--r-- | app-emacs/atomic-chrome/metadata.xml | 19 |
4 files changed, 46 insertions, 0 deletions
diff --git a/app-emacs/atomic-chrome/Manifest b/app-emacs/atomic-chrome/Manifest new file mode 100644 index 000000000000..30905645d683 --- /dev/null +++ b/app-emacs/atomic-chrome/Manifest @@ -0,0 +1 @@ +DIST atomic-chrome-2.0.0.tar.gz 218286 SHA256 f239fabd2438df8d947b333453534e6ab76f946c8879df2e3f1151baf76dac97 SHA512 702c8e80246f47dd46f4c864412e47c7cb74a13737754ccf81053a5054b97c4f48c4ca7613d1734dbf7251fbcd1d15269e2a605c36b3e7b631613506bb3a49bc WHIRLPOOL b6167c4299f0de6c56a1e68c2dfa7389d7c40dbc2e7820830c16eb02c29038e3eca7ed4aae6d2701e7fa41f02ebe88fda3948b4effbfbc6d89c779cce67d1613 diff --git a/app-emacs/atomic-chrome/atomic-chrome-2.0.0.ebuild b/app-emacs/atomic-chrome/atomic-chrome-2.0.0.ebuild new file mode 100644 index 000000000000..7bcf414202fa --- /dev/null +++ b/app-emacs/atomic-chrome/atomic-chrome-2.0.0.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +NEED_EMACS=25 + +inherit elisp + +DESCRIPTION="Edit text area on Chrome with Emacs using Atomic Chrome" +HOMEPAGE="https://github.com/alpha22jp/atomic-chrome" +SRC_URI="https://github.com/alpha22jp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="app-emacs/websocket" +RDEPEND="${DEPEND}" + +SITEFILE="50${PN}-gentoo.el" +DOCS="README.md" diff --git a/app-emacs/atomic-chrome/files/50atomic-chrome-gentoo.el b/app-emacs/atomic-chrome/files/50atomic-chrome-gentoo.el new file mode 100644 index 000000000000..82777a793c51 --- /dev/null +++ b/app-emacs/atomic-chrome/files/50atomic-chrome-gentoo.el @@ -0,0 +1,5 @@ +(add-to-list 'load-path "@SITELISP@") +(autoload 'atomic-chrome-start-server "atomic-chrome" + "Start websocket server for atomic-chrome." t) +(autoload 'atomic-chrome-stop-server "atomic-chrome" + "Stop websocket server for atomic-chrome." t) diff --git a/app-emacs/atomic-chrome/metadata.xml b/app-emacs/atomic-chrome/metadata.xml new file mode 100644 index 000000000000..07d473bfadb0 --- /dev/null +++ b/app-emacs/atomic-chrome/metadata.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer type="project"> + <email>gnu-emacs@gentoo.org</email> + <name>Gentoo GNU Emacs project</name> +</maintainer> +<longdescription> + This is the Emacs version of Atomic Chrome which is an extension + for the Google Chrome browser that allows you to edit text areas + of the browser in Emacs. The input on Emacs is reflected to the + browser instantly and continuously. You can use both the browser + and Emacs at the same time. They are updated to the same content + bi-directionally. + + Atomic Chrome for Emacs is also compatible with Firefox via the + GhostText browser extension. +</longdescription> +</pkgmetadata> |