diff options
author | Ulrich Müller <ulm@gentoo.org> | 2010-01-31 19:45:22 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2010-01-31 19:45:22 +0000 |
commit | 32402088cea7e1655638c6fb8e0c09a59d95152d (patch) | |
tree | fcb34fa40c0fa363e6e5616f1b24fc0958428af9 /app-emacs/howm | |
parent | Add prefix keywords, change EAPI to 3. (diff) | |
download | gentoo-2-32402088cea7e1655638c6fb8e0c09a59d95152d.tar.gz gentoo-2-32402088cea7e1655638c6fb8e0c09a59d95152d.tar.bz2 gentoo-2-32402088cea7e1655638c6fb8e0c09a59d95152d.zip |
Add prefix keywords, change EAPI to 3.
(Portage version: 2.2_rc62/cvs/Linux i686)
Diffstat (limited to 'app-emacs/howm')
-rw-r--r-- | app-emacs/howm/ChangeLog | 9 | ||||
-rw-r--r-- | app-emacs/howm/howm-1.3.7-r1.ebuild | 44 |
2 files changed, 51 insertions, 2 deletions
diff --git a/app-emacs/howm/ChangeLog b/app-emacs/howm/ChangeLog index 1af9d1d08f44..1b2e56fd3999 100644 --- a/app-emacs/howm/ChangeLog +++ b/app-emacs/howm/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emacs/howm -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/howm/ChangeLog,v 1.26 2009/12/01 12:05:26 ulm Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/howm/ChangeLog,v 1.27 2010/01/31 19:45:22 ulm Exp $ + +*howm-1.3.7-r1 (31 Jan 2010) + + 31 Jan 2010; Ulrich Mueller <ulm@gentoo.org> +howm-1.3.7-r1.ebuild: + Add prefix keywords, change EAPI to 3. 01 Dec 2009; Ulrich Mueller <ulm@gentoo.org> -howm-1.3.4-r1.ebuild: Remove old. diff --git a/app-emacs/howm/howm-1.3.7-r1.ebuild b/app-emacs/howm/howm-1.3.7-r1.ebuild new file mode 100644 index 000000000000..8e9c221c586f --- /dev/null +++ b/app-emacs/howm/howm-1.3.7-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/howm/howm-1.3.7-r1.ebuild,v 1.1 2010/01/31 19:45:22 ulm Exp $ + +EAPI=3 + +inherit elisp + +DESCRIPTION="Note-taking tool on Emacs" +HOMEPAGE="http://howm.sourceforge.jp/" +SRC_URI="http://howm.sourceforge.jp/a/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="" + +SITEFILE="50${PN}-gentoo.el" + +src_configure() { + econf --with-docdir="${EPREFIX}/usr/share/doc/${PF}" +} + +src_compile() { + emake -j1 </dev/null || die "emake failed" +} + +src_install() { + emake -j1 \ + DESTDIR="${D}" \ + PREFIX="${EPREFIX}/usr" \ + LISPDIR="${EPREFIX}${SITELISP}/${PN}" \ + install </dev/null \ + || die "emake install failed" + elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die + dodoc ChangeLog || die "dodoc failed" +} + +pkg_postinst() { + elisp-site-regen + elog "site-gentoo.el does no longer define global keybindings for howm." + elog "Add the following line to ~/.emacs for the previous behaviour:" + elog " (require 'howm)" +} |