Ticket #40005: notmuch.diff

File notmuch.diff, 3.3 KB (added by ryandesign (Ryan Carsten Schmidt), 11 years ago)

proposed patch

  • Portfile

     
    66
    77name                notmuch
    88version             0.16
     9revision            1
    910categories          mail
    1011platforms           darwin
    1112license             GPL-3+
    1213maintainers         yeled
    1314description         The mail indexer
    14 long_description    "Not much mail" is what Notmuch thinks about your email\
    15                     collection. Even if you receive 12000 messages per month or have on the\
    16                     order of millions of messages that you've been saving for decades.\
    17                     Regardless, Notmuch will be able to quickly search all of it. It's just\
     15long_description    “Not much mail” is what Notmuch thinks about your email \
     16                    collection, even if you receive 12000 messages per month or have on the \
     17                    order of millions of messages that you’ve been saving for decades. \
     18                    Regardless, Notmuch will be able to quickly search all of it. It’s just \
    1819                    plain not much mail.
    1920
    2021homepage            http://notmuchmail.org/
     
    2930                    port:gmime\
    3031                    port:talloc
    3132
     33patchfiles          patch-bindings-python-notmuch-globals.py.diff \
     34                    patch-lib-Makefile.local.diff
    3235
    3336post-patch {
    3437    reinplace "s|@PREFIX@|${prefix}|g" ${worksrcpath}/bindings/python/notmuch/globals.py
  • files/patch-bindings-python-notmuch-globals.py.diff

    Property changes on: files/patch-lib-Makefile.local.diff
    ___________________________________________________________________
    Added: svn:mergeinfo
       Merged /branches/mld-qt-481/dports/mail/notmuch/files/patch-lib-Makefile.local.diff:r92720,92813,92891,92963,93522,93556,93699,93743,93771-93773,93806,93817-93818,93856
    
     
    1 --- bindings/python/notmuch/globals.py.orig     2012-08-21 03:43:50.000000000 -0500
    2 +++ bindings/python/notmuch/globals.py  2012-12-03 03:44:28.000000000 -0600
    3 @@ -22,7 +22,7 @@
    4  #-----------------------------------------------------------------------------
    5  #package-global instance of the notmuch library
     1--- bindings/python/notmuch/globals.py.orig     2013-08-03 06:29:40.000000000 -0500
     2+++ bindings/python/notmuch/globals.py  2013-08-04 21:09:48.000000000 -0500
     3@@ -24,7 +24,7 @@
    64 try:
    7 -    nmlib = CDLL("libnotmuch.so.3")
    8 +    nmlib = CDLL("@PREFIX@/lib/libnotmuch.3.dylib")
     5     from os import uname
     6     if uname()[0] == 'Darwin':
     7-        nmlib = CDLL("libnotmuch.3.dylib")
     8+        nmlib = CDLL("@PREFIX@/lib/libnotmuch.3.dylib")
     9     else:
     10         nmlib = CDLL("libnotmuch.so.3")
    911 except:
    10      raise ImportError("Could not find shared 'notmuch' library.")
    11