blob: 3b2e8862530184a9abffaf00d5e5fde3e8f3fa9c (
plain) (
blame)
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
|
# Created by: anholt@FreeBSD.org
# $FreeBSD$
PORTNAME= asciidoc
PORTVERSION= 8.6.8
PORTREVISION= 1
CATEGORIES= textproc
MASTER_SITES= SF
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Text document format for writing short documents and man pages
LICENSE= GPLv2 MIT
LICENSE_COMB= multi
RUN_DEPENDS= python2:${PORTSDIR}/lang/python2
OPTIONS_DEFINE= VIM
OPTIONS_DEFAULT=VIM
OPTIONS_SUB= yes
VIM_DESC= Install Vim ftdetect & syntax files
GNU_CONFIGURE= yes
USE_PYTHON= -2.7
USES= gmake
CONF_FILES= asciidoc.conf docbook45.conf \
filters/code/code-filter.conf \
filters/graphviz/graphviz-filter.conf \
filters/latex/latex-filter.conf \
filters/music/music-filter.conf \
filters/source/source-highlight-filter.conf \
help.conf html4.conf html5.conf \
lang-de.conf lang-el.conf lang-en.conf lang-es.conf \
lang-fr.conf lang-hu.conf lang-it.conf lang-nl.conf \
lang-pt-BR.conf lang-ru.conf lang-uk.conf \
latex.conf slidy.conf text.conf wordpress.conf \
xhtml11.conf xhtml11-quirks.conf
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MVIM}
MAKE_ENV+= vimdir=${PREFIX}/share/vim/${VIM_DATADIR}
PLIST_SUB+= VIM_DATADIR=${VIM_DATADIR}
VIM__DATADIR!= ${MAKE} -C ../../editors/vim/ -V _DATADIR
.else
PLIST_SUB+= VIM_DATADIR=""
.endif
post-patch:
.for conf_file in ${CONF_FILES}
@cd ${WRKSRC} && ${MV} ${conf_file} ${conf_file}.sample
.endfor
.if ${PORT_OPTIONS:MVIM}
@${REINPLACE_CMD} -e '/^vimdir = /d' ${WRKSRC}/Makefile.in
.endif
pre-install:
.if ${PORT_OPTIONS:MVIM}
@${MKDIR} ${STAGEDIR}${PREFIX}/share/vim/${VIM_DATADIR}/
.endif
post-install:
.for conf_file in ${CONF_FILES}
@if [ ! -f ${ETCDIR}/${conf_file} ]; then \
${CP} -p ${STAGEDIR}${ETCDIR}/${conf_file}.sample ${STAGEDIR}${ETCDIR}/${conf_file} ; \
fi
.endfor
.include <bsd.port.mk>
|