Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id E0922431FBC for ; Thu, 19 Nov 2009 00:11:50 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6CUrFsObEIYs for ; Thu, 19 Nov 2009 00:11:49 -0800 (PST) Received: from mail-bw0-f224.google.com (mail-bw0-f224.google.com [209.85.218.224]) by olra.theworths.org (Postfix) with ESMTP id 980CB431FAE for ; Thu, 19 Nov 2009 00:11:49 -0800 (PST) Received: by bwz24 with SMTP id 24so970747bwz.30 for ; Thu, 19 Nov 2009 00:11:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-disposition:x-face:face; bh=fGwrp4zCrMbEtYjhmLsfifqNvQmgr5X5o9uTpRGlohM=; b=o1zzIlck6rrIOcHnPgHfWMz0xUWz/Z3gizvMIcT97C/YT6HMImgvAnHImKtIyA8fZj s3LFlZfo3JZP7lwlzDj5MLZecT16QvCm79UOe2WkiByAwnBcG8cSdhvXd+pcd9MMb25Y VhR8FW7hTSG3V+0krVhWDqZ0zOeJcj52SdN6E= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-disposition:x-face:face; b=BhbKT1SAghEK3rYBwrmXkhMQ23D51NfZANVDBvrcTGZKHimc7bksL5yTkRCln9+GKD thvDuG2HqtfEV161wr5YrNEvtmX+GOTsAZ1na9TQpOJRo2bvA2DsJpP9a0MswUYkYD1y U/8Z/rlAaYXmsWVIJvJ9mFq/dWapC4imwnfDE= Received: by 10.216.87.66 with SMTP id x44mr2218295wee.96.1258618307670; Thu, 19 Nov 2009 00:11:47 -0800 (PST) Received: from localhost (94.197.240.90.threembb.co.uk [94.197.240.90]) by mx.google.com with ESMTPS id p37sm547556gvf.23.2009.11.19.00.11.45 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 19 Nov 2009 00:11:46 -0800 (PST) Message-ID: <4b04fdc2.25c0100a.68f2.ffffc8bf@mx.google.com> Date: Thu, 19 Nov 2009 00:11:46 -0800 (PST) From: James Rowe To: notmuch@notmuchmail.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="UugvWAfsgieZRqgk" Content-Disposition: inline X-Face: "B/4c#}1Iv9Z5ZZw+I9Aj[W?j->Zc>!`2:[g3A2um!s`b+Tm4iSRRQgrrR1V.'QZ26TQf&\ GFu5:<:`x}o+JTEYw0)L%nYLT$J; (+4%12bvt*(,-yx?29]b7DUvQC4J*@!Ln#jL+{2K^:1`J)2?)q uzx|M7aMI._8'*KwoM|S#y^Bwgs>rXI|Qp[cIm-, lc'L8~sHes14QOR List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Nov 2009 08:11:51 -0000 --UugvWAfsgieZRqgk Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Hi, Just in case other Gentoo users are trying notmuch out I thought I'd post my ebuild(perhaps you'll make it better for me too :). It is working well up to at least e5da2b70. I won't bother the list if it requires changes, as it is available from my main overlay[1] if you wish to check for updated versions. Thanks, James 1. http://github.com/JNRowe/misc-overlay/tree/master/mail-client/notmuch/ --UugvWAfsgieZRqgk Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="notmuch-9999.ebuild" # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="2" inherit toolchain-funcs elisp-common bash-completion git EGIT_REPO_URI="git://notmuchmail.org/git/${PN}" DESCRIPTION="Thread-based email index, search and tagging." HOMEPAGE="http://notmuchmail.org/" SRC_URI="" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="emacs" DEPEND="dev-util/pkgconfig ${RDEPEND}" RDEPEND="sys-libs/talloc dev-libs/gmime dev-libs/xapian emacs? ( virtual/emacs )" SITEFILE="50${PN}-gentoo.el" src_prepare() { # Change ordering in case people are using as-needed sed -i 's,\($(LDFLAGS)\)\(.*\),\2 \1,' Makefile.local } src_compile() { emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" CFLAGS="${CFLAGS}" \ || die "emake failed" if use emacs; then elisp-compile ${PN}.el || die "elisp-compile failed" fi } src_install() { # Don't use make install, because it installs compressed man pages, # bash-completion in the wrong location and emacs files unconditionally. # Three commands are quicker than patching Makefile.local locally. dobin ${PN} doman ${PN}.1 dobashcompletion notmuch-completion.bash ${PN} dodoc AUTHORS README TODO if use emacs; then elisp-install ${PN}{,.el} elisp-site-file-install "${FILESDIR}/${SITEFILE}" fi } --UugvWAfsgieZRqgk Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="50notmuch-gentoo.el" ; notmuch site-list config (add-to-list 'load-path "@SITELISP@") (autoload 'notmuch "notmuch" "Start notmuch" t) --UugvWAfsgieZRqgk--