diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2003-10-24 03:04:12 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2003-10-24 03:04:12 +0000 |
commit | 772e0ad611b66cad6b9084460a70183190e3d08f (patch) | |
tree | e1e465df09443f8594bfa69aafb5cd639c37408f /app-emacs/htmlize/htmlize-1.16.ebuild | |
parent | new upstream (diff) | |
download | historical-772e0ad611b66cad6b9084460a70183190e3d08f.tar.gz historical-772e0ad611b66cad6b9084460a70183190e3d08f.tar.bz2 historical-772e0ad611b66cad6b9084460a70183190e3d08f.zip |
new upstream
Diffstat (limited to 'app-emacs/htmlize/htmlize-1.16.ebuild')
-rw-r--r-- | app-emacs/htmlize/htmlize-1.16.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/app-emacs/htmlize/htmlize-1.16.ebuild b/app-emacs/htmlize/htmlize-1.16.ebuild new file mode 100644 index 000000000000..588458e36f8b --- /dev/null +++ b/app-emacs/htmlize/htmlize-1.16.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/htmlize/htmlize-1.16.ebuild,v 1.1 2003/10/24 03:04:08 mkennedy Exp $ + +inherit elisp + +IUSE="" + +DESCRIPTION="HTML-ize font-lock buffers in Emacs" +HOMEPAGE="http://www.emacswiki.org/cgi-bin/wiki.pl?SaveAsHtml + http://fly.srk.fer.hr/~hniksic/emacs/" +SRC_URI="mirror://gentoo/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +DEPEND="virtual/emacs" + +S="${WORKDIR}/${P}" + +SITEFILE=50htmlize-gentoo.el + +# NOTE: this version of htmlize may have issues with emacs-cvs + +src_compile() { + emacs --batch -f batch-byte-compile --no-site-file --no-init-file *.el +} + +src_install() { + elisp-install ${PN} *.el *.elc + elisp-site-file-install ${FILESDIR}/${SITEFILE} +} + +pkg_postinst() { + elisp-site-regen + einfo "Please see ${SITELISP}/${PN}/htmlize.el for the complete documentation." +} + +pkg_postrm() { + elisp-site-regen +} |