diff options
author | Thomas Kahle <tomka@gentoo.org> | 2010-11-17 18:17:24 +0000 |
---|---|---|
committer | Thomas Kahle <tomka@gentoo.org> | 2010-11-17 18:17:24 +0000 |
commit | 351be0f302b917be8cf726f4bfddd0aa9de08aca (patch) | |
tree | 5f05676a137a1dce39101b16983b3987ceaad6dc /app-emacs | |
parent | Respect LDFLAGS whith use "udf", bug 345809. (diff) | |
download | gentoo-2-351be0f302b917be8cf726f4bfddd0aa9de08aca.tar.gz gentoo-2-351be0f302b917be8cf726f4bfddd0aa9de08aca.tar.bz2 gentoo-2-351be0f302b917be8cf726f4bfddd0aa9de08aca.zip |
new package: app-emacs/undo-tree. Next step in the editor arms race.
(Portage version: 2.1.9.24/cvs/Linux i686)
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/undo-tree/ChangeLog | 10 | ||||
-rw-r--r-- | app-emacs/undo-tree/files/50undo-tree-gentoo.el | 4 | ||||
-rw-r--r-- | app-emacs/undo-tree/metadata.xml | 15 | ||||
-rw-r--r-- | app-emacs/undo-tree/undo-tree-0.1.7_pre20101117.ebuild | 26 |
4 files changed, 55 insertions, 0 deletions
diff --git a/app-emacs/undo-tree/ChangeLog b/app-emacs/undo-tree/ChangeLog new file mode 100644 index 000000000000..9e51a0fc7b38 --- /dev/null +++ b/app-emacs/undo-tree/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-emacs/undo-tree +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/undo-tree/ChangeLog,v 1.1 2010/11/17 18:17:24 tomka Exp $ + +*undo-tree-0.1.7_pre20101117 (17 Nov 2010) + + 17 Nov 2010; Thomas Kahle <tomka@gentoo.org> +files/50undo-tree-gentoo.el, + +undo-tree-0.1.7_pre20101117.ebuild, +metadata.xml: + initial import. + diff --git a/app-emacs/undo-tree/files/50undo-tree-gentoo.el b/app-emacs/undo-tree/files/50undo-tree-gentoo.el new file mode 100644 index 000000000000..2f5429d6b910 --- /dev/null +++ b/app-emacs/undo-tree/files/50undo-tree-gentoo.el @@ -0,0 +1,4 @@ +(add-to-list 'load-path "@SITELISP@" ) + +(require 'undo-tree) +(global-undo-tree-mode) diff --git a/app-emacs/undo-tree/metadata.xml b/app-emacs/undo-tree/metadata.xml new file mode 100644 index 000000000000..554422ecfb93 --- /dev/null +++ b/app-emacs/undo-tree/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer> + <email>tomka@gentoo.org</email> + <name>Thomas Kahle</name> +</maintainer> +<herd>emacs</herd> +<longdescription lang="en"> +undo-tree brings undo trees to emacs. The only downside to this more +advanced yet simpler undo system is that it was inspired by Vim. But, +after all, most successful religions steal the best ideas from their +competitors! +</longdescription> +</pkgmetadata> diff --git a/app-emacs/undo-tree/undo-tree-0.1.7_pre20101117.ebuild b/app-emacs/undo-tree/undo-tree-0.1.7_pre20101117.ebuild new file mode 100644 index 000000000000..444eea71f48b --- /dev/null +++ b/app-emacs/undo-tree/undo-tree-0.1.7_pre20101117.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/undo-tree/undo-tree-0.1.7_pre20101117.ebuild,v 1.1 2010/11/17 18:17:24 tomka Exp $ + +NEED_EMACS=22 + +inherit elisp + +DESCRIPTION="undo trees and vizualization" +HOMEPAGE="http://www.dr-qubit.org/emacs.php#undo-tree" +SRC_URI="mirror://gentoo/${P}.tar.bz2 + http://dev.gentoo.org/~tomka/files/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +SITEFILE="50${PN}-gentoo.el" + +pkg_postinst() { + elisp-site-regen + + einfo "If you have (require 'site-gentoo) in your .emacs," + einfo "then undo-trees will be globally activiated for you." +} |