diff options
author | John Marino <marino@FreeBSD.org> | 2014-08-09 22:07:19 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-08-09 22:07:19 +0000 |
commit | a3e12669955ae9fb681882e1c0afbd1972a112ae (patch) | |
tree | 15153a9e2919b317b730b89a1397c5d870c41135 /mail/notmuch/files | |
parent | - adjust default modules, changed during the last revisions (diff) |
mail/notmuch: Update version 0.17 => 0.18.1
PR: 191969
Submitted by: mp39590 (gmail.com)
Approved by: maintainer timeout
QA fixes by: marino
Diffstat (limited to 'mail/notmuch/files')
-rw-r--r-- | mail/notmuch/files/patch-Makefile.local | 11 | ||||
-rw-r--r-- | mail/notmuch/files/patch-doc_Makefile.local | 13 | ||||
-rw-r--r-- | mail/notmuch/files/patch-lib_Makefile.local | 16 |
3 files changed, 40 insertions, 0 deletions
diff --git a/mail/notmuch/files/patch-Makefile.local b/mail/notmuch/files/patch-Makefile.local new file mode 100644 index 000000000000..f0b2bf84635e --- /dev/null +++ b/mail/notmuch/files/patch-Makefile.local @@ -0,0 +1,11 @@ +--- Makefile.local.orig 2014-06-25 10:30:10.000000000 +0000 ++++ Makefile.local +@@ -302,7 +302,7 @@ notmuch-shared: $(notmuch_client_modules + .PHONY: install + install: all install-man + mkdir -p "$(DESTDIR)$(prefix)/bin/" +- install notmuch-shared "$(DESTDIR)$(prefix)/bin/notmuch" ++ ${BSD_INSTALL_PROGRAM} notmuch-shared "$(DESTDIR)$(prefix)/bin/notmuch" + ifeq ($(MAKECMDGOALS), install) + @echo "" + @echo "Notmuch is now installed to $(DESTDIR)$(prefix)" diff --git a/mail/notmuch/files/patch-doc_Makefile.local b/mail/notmuch/files/patch-doc_Makefile.local new file mode 100644 index 000000000000..2a89db236667 --- /dev/null +++ b/mail/notmuch/files/patch-doc_Makefile.local @@ -0,0 +1,13 @@ +--- doc/Makefile.local.orig 2014-06-25 10:30:10.000000000 +0000 ++++ doc/Makefile.local +@@ -7,8 +7,8 @@ SPHINXOPTS := -q + SPHINXBUILD = sphinx-build + DOCBUILDDIR := $(dir)/_build + +-prerst2man := python $(srcdir)/$(dir)/prerst2man.py +-mkdocdeps := python $(srcdir)/$(dir)/mkdocdeps.py ++prerst2man := ${PYTHONCMD} $(srcdir)/$(dir)/prerst2man.py ++mkdocdeps := ${PYTHONCMD} $(srcdir)/$(dir)/mkdocdeps.py + + # Internal variables. + ALLSPHINXOPTS := -d $(DOCBUILDDIR)/doctrees $(SPHINXOPTS) $(srcdir)/$(dir) diff --git a/mail/notmuch/files/patch-lib_Makefile.local b/mail/notmuch/files/patch-lib_Makefile.local new file mode 100644 index 000000000000..4f450748b9f2 --- /dev/null +++ b/mail/notmuch/files/patch-lib_Makefile.local @@ -0,0 +1,16 @@ +--- lib/Makefile.local.orig 2014-06-25 10:30:10.000000000 +0000 ++++ lib/Makefile.local +@@ -92,11 +92,11 @@ install: install-$(dir) + + install-$(dir): $(dir)/$(LIBNAME) + mkdir -p "$(DESTDIR)$(libdir)/" +- install -m0644 "$(lib)/$(LIBNAME)" "$(DESTDIR)$(libdir)/" ++ ${BSD_INSTALL_LIB} "$(lib)/$(LIBNAME)" "$(DESTDIR)$(libdir)/" + ln -sf $(LIBNAME) "$(DESTDIR)$(libdir)/$(SONAME)" + ln -sf $(LIBNAME) "$(DESTDIR)$(libdir)/$(LINKER_NAME)" + mkdir -p "$(DESTDIR)$(includedir)" +- install -m0644 "$(srcdir)/$(lib)/notmuch.h" "$(DESTDIR)$(includedir)/" ++ ${BSD_INSTALL_DATA} "$(srcdir)/$(lib)/notmuch.h" "$(DESTDIR)$(includedir)/" + $(LIBRARY_INSTALL_POST_COMMAND) + + SRCS := $(SRCS) $(libnotmuch_c_srcs) $(libnotmuch_cxx_srcs) |