diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-05-16 15:32:49 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-05-16 15:32:49 +0000 |
commit | 44011494b8db3fef360502d8dbe34390eeaf6e1c (patch) | |
tree | b6e15c0eb89775d7b0bfd7aba27da71f621995ae /app-emacs | |
parent | Version bumped. Closes 47857 (diff) | |
download | historical-44011494b8db3fef360502d8dbe34390eeaf6e1c.tar.gz historical-44011494b8db3fef360502d8dbe34390eeaf6e1c.tar.bz2 historical-44011494b8db3fef360502d8dbe34390eeaf6e1c.zip |
Initial import. Thanks to kohei and a5hr <a5hr@cibicc.org>
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/howm/ChangeLog | 10 | ||||
-rw-r--r-- | app-emacs/howm/Manifest | 5 | ||||
-rw-r--r-- | app-emacs/howm/files/50howm-gentoo.el | 6 | ||||
-rw-r--r-- | app-emacs/howm/files/digest-howm-1.1.2.1 | 1 | ||||
-rw-r--r-- | app-emacs/howm/howm-1.1.2.1.ebuild | 45 | ||||
-rw-r--r-- | app-emacs/howm/metadata.xml | 5 |
6 files changed, 72 insertions, 0 deletions
diff --git a/app-emacs/howm/ChangeLog b/app-emacs/howm/ChangeLog new file mode 100644 index 000000000000..47c05a520a1f --- /dev/null +++ b/app-emacs/howm/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-emacs/howm +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/howm/ChangeLog,v 1.1 2004/05/16 15:32:49 usata Exp $ + +*howm-1.1.2.1 (17 May 2004) + + 17 May 2004; Mamoru KOMACHI <usata@gentoo.org> howm-1.1.2.1.ebuild, + files/50howm-gentoo.el: + Initial import. Thanks to kohei and a5hr <a5hr@cibicc.org>. + diff --git a/app-emacs/howm/Manifest b/app-emacs/howm/Manifest new file mode 100644 index 000000000000..769312bb8e42 --- /dev/null +++ b/app-emacs/howm/Manifest @@ -0,0 +1,5 @@ +MD5 32fc24d81bfece2a152d588998a3366f howm-1.1.2.1.ebuild 868 +MD5 fcd33d07e4ee719b01157946734f4fe8 metadata.xml 158 +MD5 bcfd555a62def6ac8086b3a4096dfcfc ChangeLog 397 +MD5 6e75d87dba271ed304aeab4ac589ed70 files/50howm-gentoo.el 95 +MD5 152c982878621d9c1f66367f959c285f files/digest-howm-1.1.2.1 64 diff --git a/app-emacs/howm/files/50howm-gentoo.el b/app-emacs/howm/files/50howm-gentoo.el new file mode 100644 index 000000000000..1ec5170fc452 --- /dev/null +++ b/app-emacs/howm/files/50howm-gentoo.el @@ -0,0 +1,6 @@ + +;;; howm site-lisp configuration + +(add-to-list 'load-path "@SITELISP@") +(require 'howm-mode) + diff --git a/app-emacs/howm/files/digest-howm-1.1.2.1 b/app-emacs/howm/files/digest-howm-1.1.2.1 new file mode 100644 index 000000000000..a4dbe7827a00 --- /dev/null +++ b/app-emacs/howm/files/digest-howm-1.1.2.1 @@ -0,0 +1 @@ +MD5 4a288132cd7f0ea7411039456e21bd5e howm-1.1.2.1.tar.gz 235984 diff --git a/app-emacs/howm/howm-1.1.2.1.ebuild b/app-emacs/howm/howm-1.1.2.1.ebuild new file mode 100644 index 000000000000..1ba16f0d46a0 --- /dev/null +++ b/app-emacs/howm/howm-1.1.2.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: + +inherit elisp + +IUSE="" + +DESCRIPTION="Howm is a note-taking tool on Emacs" +SRC_URI="http://howm.sourceforge.jp/a/${P}.tar.gz" +HOMEPAGE="http://howm.sourceforge.jp/" +LICENSE="GPL-2" +KEYWORDS="~x86" +SLOT="0" + +DEPEND="virtual/emacs" + +SITEFILE="50howm-gentoo.el" + +src_compile() { + + econf --with-docdir=/usr/share/doc/${P} || die + emake < /dev/null || die +} + +src_install () { + + emake < /dev/null \ + DESTDIR=${D} PREFIX=/usr LISPDIR=${SITELISP}/${PN} install || die + elisp-site-file-install ${T}/${SITEFILE} || die +} + +pkg_postinst() { + einfo + einfo "If you prefer Japanese menu, add the following line to your ~/.emacs" + einfo + einfo "(setq howm-menu-lang 'ja) ; Japanese interface" + einfo + + elisp-site-regen +} + +pkg_postrm() { + elisp-site-regen +} diff --git a/app-emacs/howm/metadata.xml b/app-emacs/howm/metadata.xml new file mode 100644 index 000000000000..bc306fe58224 --- /dev/null +++ b/app-emacs/howm/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> |