blob: f201c84333b9320456408277c658f87b6b3a9028 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# Created by: nbm
# $FreeBSD$
PORTNAME= offlineimap
DISTVERSION= 6.5.4
PORTREVISION= 1
CATEGORIES= mail python
MASTER_SITES= http://cloud.github.com/downloads/spaetz/offlineimap/ \
http://dist.codelabs.ru/fbsd/offlineimap/
PATCH_SITES= http://codelabs.ru/patches/offlineimap/
DISTNAME= ${PORTNAME}-v${DISTVERSION}
MAINTAINER= rea@FreeBSD.org
COMMENT= Powerful IMAP/Maildir synchronization and reader support
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
LICENSE_FILE_GPLv2=${WRKSRC}/COPYING
OPTIONS_DEFINE= HTMLDOCS EXAMPLES
HTMLDOCS_DESC= Generate HTML documentation
WRKSRC= ${WRKDIR}/${GITHUB_USER}-${PORTNAME}-${GITHUB_HASH}
SUB_FILES= pkg-message
PATCH_STRIP= -p1
PATCH_DIST_STRIP= -p1
PATCHFILES= 2012-properly-detect-readonly-folders.diff
GITHUB_USER= spaetz
GITHUB_HASH= c9e9690
USE_PYTHON= 2.6+
USE_PYDISTUTILS= yes
DOC_FILES= Changelog.maint.rst Changelog.rst \
docs/INSTALL.rst docs/MANUAL.rst \
docs/doc-src/API.rst docs/doc-src/FAQ.rst \
docs/doc-src/HACKING.rst docs/doc-src/INSTALL.rst \
docs/doc-src/MANUAL.rst docs/doc-src/advanced_config.rst \
docs/doc-src/features.rst docs/doc-src/index.rst \
docs/doc-src/nametrans.rst docs/doc-src/offlineimap.rst \
docs/doc-src/repository.rst docs/doc-src/ui.rst
PORTDOCS= docs ${DOC_FILES:N*/*}
EXAMPLE_FILES= offlineimap.conf offlineimap.conf.minimal
PORTEXAMPLES= ${EXAMPLE_FILES:N*/*}
DOC_DIRS= ${DOC_FILES:H:O:u:N.}
EXAMPLE_DIRS= ${EXAMPLE_FILES:H:O:u:N.}
NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS} && ${PORT_OPTIONS:MHTMLDOCS}
BUILD_DEPENDS+= rst2html:${PORTSDIR}/textproc/py-docutils
DOC_FILES:= ${DOC_FILES} ${DOC_FILES:M*.rst:S/.rst$/.html/}
.endif
# This is needed for pkg-message.in
.if ${PORT_OPTIONS:MEXAMPLES}
SUB_LIST+= PORTEXAMPLES=""
.else
SUB_LIST+= PORTEXAMPLES="@comment "
.endif
post-build:
.if ${PORT_OPTIONS:MDOCS} && ${PORT_OPTIONS:MHTMLDOCS}
.for r in ${DOC_FILES:M*.rst}
@${ECHO} "Translating ${r} to HTML..."
@rst2html ${WRKSRC}/${r} ${WRKSRC}/${r:R}.html
.endfor
.endif
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
@for i in ${DOC_DIRS}; do \
${MKDIR} ${DOCSDIR}/$$i; \
done
@cd ${WRKSRC} && for i in ${DOC_FILES}; do \
${ECHO} "Installing ${DOCSDIR}/$$i"; \
${INSTALL_DATA} $$i ${DOCSDIR}/$$i; \
done
.endif
.if ${PORT_OPTIONS:MEXAMPLES}
@${MKDIR} ${EXAMPLESDIR}
@for i in ${EXAMPLE_DIRS}; do \
${MKDIR} ${EXAMPLESDIR}/$$i; \
done
@cd ${WRKSRC} && for i in ${EXAMPLE_FILES}; do \
${ECHO} "Installing ${EXAMPLESDIR}/$$i"; \
${INSTALL_DATA} $$i ${EXAMPLESDIR}/$$i; \
done
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|