View | Details | Raw Unified | Return to bug 213240 | Differences between
and this patch

Collapse All | Expand All

(-)b/mail/notmuch/Makefile (-2 / +2 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	notmuch
4
PORTNAME=	notmuch
5
PORTVERSION=	0.22.2
5
PORTVERSION=	0.23
6
CATEGORIES=	mail
6
CATEGORIES=	mail
7
MASTER_SITES=	http://notmuchmail.org/releases/
7
MASTER_SITES=	http://notmuchmail.org/releases/
8
8
Lines 46-51 MAKE_ENV+= PYTHONCMD=${PYTHON_CMD} Link Here
46
46
47
post-install:
47
post-install:
48
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/notmuch
48
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/notmuch
49
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libnotmuch.so.4.3.0
49
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libnotmuch.so.4.4.0
50
50
51
.include <bsd.port.mk>
51
.include <bsd.port.mk>
(-)b/mail/notmuch/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1473408075
1
TIMESTAMP = 1475657783
2
SHA256 (notmuch-0.22.2.tar.gz) = 6cd19c61634079981b2d8f4b7cb4eb953cba2a36272520603682d813d2bd7ed1
2
SHA256 (notmuch-0.23.tar.gz) = c5e75b658ee2b58c5ac7a79e34d2449d37ddfa5c9e67a736454ec296c9a0a1b8
3
SIZE (notmuch-0.22.2.tar.gz) = 683796
3
SIZE (notmuch-0.23.tar.gz) = 689540
(-)a/mail/notmuch/files/patch-configure (-44 lines)
Removed Link Here
1
--- configure.orig	2016-07-19 09:43:20 UTC
2
+++ configure
3
@@ -66,6 +66,7 @@ PYTHON=${PYTHON:-}
4
 PREFIX=/usr/local
5
 LIBDIR=
6
 WITH_DOCS=1
7
+WITH_API_DOCS=1
8
 WITH_EMACS=1
9
 WITH_BASH=1
10
 WITH_RUBY=1
11
@@ -134,7 +135,8 @@ Some features can be disabled (--with-fe
12
 --without-feature) :
13
 
14
 	--without-bash-completion	Do not install bash completions files
15
-	--without-docs			Do not install documentation and man pages
16
+	--without-docs			Do not install man pages
17
+	--without-api-docs		Do not install API documentation
18
 	--without-emacs			Do not install lisp file
19
 	--without-ruby			Do not install ruby bindings
20
 	--without-zsh-completion	Do not install zsh completions files
21
@@ -185,6 +187,14 @@ for option; do
22
 	fi
23
     elif [ "${option}" = '--without-docs' ] ; then
24
 	WITH_DOCS=0
25
+    elif [ "${option%%=*}" = '--with-api-docs' ]; then
26
+	if [ "${option#*=}" = 'no' ]; then
27
+	    WITH_API_DOCS=0
28
+	else
29
+	    WITH_API_DOCS=1
30
+	fi
31
+    elif [ "${option}" = '--without-api-docs' ] ; then
32
+	WITH_API_DOCS=0
33
     elif [ "${option%%=*}" = '--with-emacs' ]; then
34
 	if [ "${option#*=}" = 'no' ]; then
35
 	    WITH_EMACS=0
36
@@ -507,7 +517,7 @@ else
37
 fi
38
 
39
 have_doxygen=0
40
-if [ $WITH_DOCS = "1" ] ; then
41
+if [ $WITH_API_DOCS = "1" ] ; then
42
     printf "Checking if doxygen is available... "
43
     if command -v doxygen > /dev/null; then
44
 	printf "Yes.\n"
(-)b/mail/notmuch/pkg-plist (-1 / +1 lines)
Lines 2-8 bin/notmuch Link Here
2
include/notmuch.h
2
include/notmuch.h
3
lib/libnotmuch.so
3
lib/libnotmuch.so
4
lib/libnotmuch.so.4
4
lib/libnotmuch.so.4
5
lib/libnotmuch.so.4.3.0
5
lib/libnotmuch.so.4.4.0
6
%%MANPAGES%%man/man1/notmuch-address.1.gz
6
%%MANPAGES%%man/man1/notmuch-address.1.gz
7
%%MANPAGES%%man/man1/notmuch-compact.1.gz
7
%%MANPAGES%%man/man1/notmuch-compact.1.gz
8
%%MANPAGES%%man/man1/notmuch-config.1.gz
8
%%MANPAGES%%man/man1/notmuch-config.1.gz

Return to bug 213240