diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2003-11-12 06:38:56 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2003-11-12 06:38:56 +0000 |
commit | 9f4225bd00356c68601136b3792ead938f8ba679 (patch) | |
tree | df3c26cb13e4baeda02a1aa2342db76cb8a76ff2 /app-emacs | |
parent | *** empty log message *** (diff) | |
download | historical-9f4225bd00356c68601136b3792ead938f8ba679.tar.gz historical-9f4225bd00356c68601136b3792ead938f8ba679.tar.bz2 historical-9f4225bd00356c68601136b3792ead938f8ba679.zip |
*** empty log message ***
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/thinks/Manifest | 3 | ||||
-rw-r--r-- | app-emacs/thinks/files/50thinks-gentoo.el | 33 | ||||
-rw-r--r-- | app-emacs/thinks/files/digest-thinks-1.8 | 1 | ||||
-rw-r--r-- | app-emacs/thinks/metadata.xml | 5 | ||||
-rw-r--r-- | app-emacs/thinks/thinks-1.8.ebuild | 17 |
5 files changed, 58 insertions, 1 deletions
diff --git a/app-emacs/thinks/Manifest b/app-emacs/thinks/Manifest index d9a4b899cbbb..3e29b0f11fd4 100644 --- a/app-emacs/thinks/Manifest +++ b/app-emacs/thinks/Manifest @@ -1,4 +1,5 @@ +MD5 e136a6d6c96a1e7a13762abdaa65a523 ChangeLog 421 MD5 fcd33d07e4ee719b01157946734f4fe8 metadata.xml 158 -MD5 bffa49e14cf4ca23636582ec3a385ebb thinks-1.8.ebuild 493 +MD5 4de0d81923b268492ef3f9ef6ade2c02 thinks-1.8.ebuild 493 MD5 bf61bc16c49cebad402f845daa41fc6e files/digest-thinks-1.8 60 MD5 2e5a2d1518ea0692b25101232c7a8e2a files/50thinks-gentoo.el 892 diff --git a/app-emacs/thinks/files/50thinks-gentoo.el b/app-emacs/thinks/files/50thinks-gentoo.el new file mode 100644 index 000000000000..a14b0769c87a --- /dev/null +++ b/app-emacs/thinks/files/50thinks-gentoo.el @@ -0,0 +1,33 @@ + +;;; site-lisp configuration for thinks + +(add-to-list 'load-path "@SITELISP@") +(autoload (quote thinks) "thinks" "\ +Insert TEXT wrapped in a think bubble. + +Prefix a call to this function with \\[universal-argument] if you don't want +the text to be filled for you. + +\(fn TEXT)" t nil) + +(autoload (quote thinks-region) "thinks" "\ +Bubble wrap region bounding START and END. + +Prefix a call to this function with \\[universal-argument] if you don't want +the text to be filled for you. + +\(fn START END)" t nil) + +(autoload (quote thinks-yank) "thinks" "\ +Do a `yank' and bubble wrap the yanked text. + +Prefix a call to this function with \\[universal-argument] if you don't want +the text to be filled for you. + +\(fn)" t nil) + +(autoload (quote thinks-maybe-region) "thinks" "\ +If region is active, bubble wrap region bounding START and END. +If not, query for text to insert in bubble. + +\(fn)" t nil) diff --git a/app-emacs/thinks/files/digest-thinks-1.8 b/app-emacs/thinks/files/digest-thinks-1.8 new file mode 100644 index 000000000000..3d269a7b3a1c --- /dev/null +++ b/app-emacs/thinks/files/digest-thinks-1.8 @@ -0,0 +1 @@ +MD5 cab3e9c330c7592a51d0d610841e505a thinks-1.8.tar.gz 3030 diff --git a/app-emacs/thinks/metadata.xml b/app-emacs/thinks/metadata.xml new file mode 100644 index 000000000000..bc306fe58224 --- /dev/null +++ b/app-emacs/thinks/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>emacs</herd> +</pkgmetadata> diff --git a/app-emacs/thinks/thinks-1.8.ebuild b/app-emacs/thinks/thinks-1.8.ebuild new file mode 100644 index 000000000000..855d53e78592 --- /dev/null +++ b/app-emacs/thinks/thinks-1.8.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/thinks/thinks-1.8.ebuild,v 1.1 2003/11/12 06:38:54 mkennedy Exp $ + +inherit elisp + +DESCRIPTION="Insert text in a think bubble." +HOMEPAGE="http://www.davep.org/emacs/thinks.el" +SRC_URI="mirror://gentoo/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="virtual/emacs" +S=${WORKDIR}/${P} + +SITEFILE=50thinks-gentoo.el |