Ticket #40005: notmuch.diff
File notmuch.diff, 3.3 KB (added by ryandesign (Ryan Carsten Schmidt), 11 years ago) |
---|
-
Portfile
6 6 7 7 name notmuch 8 8 version 0.16 9 revision 1 9 10 categories mail 10 11 platforms darwin 11 12 license GPL-3+ 12 13 maintainers yeled 13 14 description 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\15 long_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 \ 18 19 plain not much mail. 19 20 20 21 homepage http://notmuchmail.org/ … … 29 30 port:gmime\ 30 31 port:talloc 31 32 33 patchfiles patch-bindings-python-notmuch-globals.py.diff \ 34 patch-lib-Makefile.local.diff 32 35 33 36 post-patch { 34 37 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 @@ 6 4 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") 9 11 except: 10 raise ImportError("Could not find shared 'notmuch' library.")11