diff options
author | 2011-11-04 14:49:13 +0000 | |
---|---|---|
committer | 2011-11-04 14:49:13 +0000 | |
commit | cd63f34a01efe99abd79cac13ca7dfe5fbd41c4e (patch) | |
tree | 2efbfb1f81a900a787e9647f6a7d6bab5065806e /net-mail | |
parent | Make kernel checks non-fatal again, people don't like them being fatal. (diff) | |
download | gentoo-2-cd63f34a01efe99abd79cac13ca7dfe5fbd41c4e.tar.gz gentoo-2-cd63f34a01efe99abd79cac13ca7dfe5fbd41c4e.tar.bz2 gentoo-2-cd63f34a01efe99abd79cac13ca7dfe5fbd41c4e.zip |
net-mail/notmuch: Added ruby bindings and docs.
Added ruby bindings and API documentation for both python and ruby bindings.
(Portage version: 2.1.10.32/cvs/Linux x86_64)
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/notmuch/ChangeLog | 8 | ||||
-rw-r--r-- | net-mail/notmuch/metadata.xml | 1 | ||||
-rw-r--r-- | net-mail/notmuch/notmuch-0.9-r2.ebuild | 151 |
3 files changed, 159 insertions, 1 deletions
diff --git a/net-mail/notmuch/ChangeLog b/net-mail/notmuch/ChangeLog index 7d7927cc2d56..6ef9110d0c0f 100644 --- a/net-mail/notmuch/ChangeLog +++ b/net-mail/notmuch/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-mail/notmuch # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/notmuch/ChangeLog,v 1.8 2011/11/03 18:32:23 aidecoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/notmuch/ChangeLog,v 1.9 2011/11/04 14:49:13 aidecoe Exp $ + +*notmuch-0.9-r2 (04 Nov 2011) + + 04 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> + +notmuch-0.9-r2.ebuild, metadata.xml: + Added ruby bindings and API documentation for both python and ruby bindings. 03 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> -notmuch-0.9.ebuild: Removed old 0.9 revision. diff --git a/net-mail/notmuch/metadata.xml b/net-mail/notmuch/metadata.xml index 0acb6acdbe06..fd29f9393040 100644 --- a/net-mail/notmuch/metadata.xml +++ b/net-mail/notmuch/metadata.xml @@ -6,6 +6,7 @@ <name>Amadeusz Żołnowski</name> </maintainer> <use> + <flag name="doc">Install API documentation for enabled bindings</flag> <flag name="crypt">Support decryption and verification of PGP/MIME messages and in Emacs UI - encryption</flag> <flag name="emacs">Install Notmuch client for Emacs (main client)</flag> diff --git a/net-mail/notmuch/notmuch-0.9-r2.ebuild b/net-mail/notmuch/notmuch-0.9-r2.ebuild new file mode 100644 index 000000000000..4dde5bdd9458 --- /dev/null +++ b/net-mail/notmuch/notmuch-0.9-r2.ebuild @@ -0,0 +1,151 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/notmuch/notmuch-0.9-r2.ebuild,v 1.1 2011/11/04 14:49:13 aidecoe Exp $ + +EAPI=4 + +PYTHON_DEPEND="python? 2:2.5" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="2.4 3.*" +RUBY="/usr/bin/ruby18" +RDOC="/usr/bin/rdoc18" + +inherit elisp-common distutils +inherit autotools-utils + +DESCRIPTION="The mail indexer" +HOMEPAGE="http://notmuchmail.org/" +SRC_URI="${HOMEPAGE}/releases/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +REQUIRED_USE="test? ( crypt emacs )" +IUSE="bash-completion crypt debug doc emacs python ruby test vim zsh-completion" + +CDEPEND=" + >=dev-libs/glib-2.14 + dev-libs/gmime:2.4 + dev-libs/xapian + doc? ( python? ( dev-python/sphinx ) ) + sys-libs/talloc + debug? ( dev-util/valgrind ) + emacs? ( >=virtual/emacs-23 ) + ruby? ( dev-lang/ruby:1.8 ) + x86? ( >=dev-libs/xapian-1.2.7-r2 ) + vim? ( || ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 ) ) + " +DEPEND="${CDEPEND} + dev-util/pkgconfig + test? ( sys-devel/gdb ) + " +RDEPEND="${CDEPEND} + crypt? ( app-crypt/gnupg ) + zsh-completion? ( app-shells/zsh ) + " + +DOCS=( AUTHORS NEWS README TODO ) +PATCHES=( + "${FILESDIR}/${PV}-fix-lib-makefile-local.patch" + "${FILESDIR}/${PV}-emacsetcdir.patch" + ) +SITEFILE="50${PN}-gentoo.el" + +bindings() { + if use $1; then + pushd bindings/$1 || die + shift + $@ + popd || die + fi +} + +pkg_setup() { + if use emacs; then + elisp-need-emacs 23 || die "Emacs version too low" + fi + use python && python_pkg_setup +} + +src_prepare() { + echo "S=${S}" + autotools-utils_src_prepare + bindings python distutils_src_prepare +} + +src_configure() { + local myeconfargs=( + --bashcompletiondir="${ROOT}/usr/share/bash-completion" + --emacslispdir="${ROOT}/${SITELISP}/${PN}" + --emacsetcdir="${ROOT}/${SITEETC}/${PN}" + --zshcompletiondir="${ROOT}/usr/share/zsh/site-functions" + $(use_with bash-completion) + $(use_with emacs) + $(use_with zsh-completion) + ) + autotools-utils_src_configure + + r_conf() { + ${RUBY} extconf.rb || die + } + bindings ruby r_conf +} + +src_compile() { + autotools-utils_src_compile + bindings python distutils_src_compile + bindings ruby emake + + if use doc; then + pydocs() { + pushd docs || die + emake html + mv html ../python || die + popd || die + } + + rdocs() { + ${RDOC} --main 'Notmuch' --title 'Notmuch Ruby API' --op ruby *.c + } + + bindings python pydocs + bindings ruby rdocs + fi +} + +src_install() { + autotools-utils_src_install + + if use emacs; then + elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die + fi + + if use vim; then + insinto /usr/share/vim/vimfiles + doins -r vim/plugin vim/syntax + fi + + DOCS="" bindings python distutils_src_install + bindings ruby emake DESTDIR="'${D}'" install + + if use doc; then + bindings python dohtml -r python + bindings ruby dohtml -r ruby + fi +} + +pkg_postinst() { + use emacs && elisp-site-regen + use python && distutils_pkg_postinst + + if use python; then + echo + einfo "Python API documentation is also online available at:" + einfo " http://packages.python.org/notmuch/" + fi +} + +pkg_postrm() { + use emacs && elisp-site-regen + use python && distutils_pkg_postrm +} |