blob: 048cd8ad22538ba95e15286f8381a669abfac510 (
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
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
98
99
100
101
102
103
|
# Ports collection makefile for: mercurial
# Date created: 11 July 2005
# Whom: Andreas Kohn
#
# $FreeBSD$
#
PORTNAME= mercurial
PORTVERSION= 2.2.3
CATEGORIES= devel python
MASTER_SITES= http://mercurial.selenic.com/release/
MAINTAINER= python@FreeBSD.org
COMMENT= A fast, lightweight source control management system
LICENSE= GPLv2
.if !defined(WITHOUT_NLS)
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
.else
PLIST_SUB+= NLS="@comment "
.endif
USE_PYTHON= -2.7
USE_PYDISTUTILS=yes
CONTRIB_FILES= bash_completion \
casesmash.py \
check-code.py \
convert-repo \
debugcmdserver.py \
debugshell.py \
dumprevlog \
hg-ssh \
hgfixes/__init__.py \
hgfixes/fix_bytes.py \
hgfixes/fix_bytesmod.py \
hgfixes/fix_leftover_imports.py \
hgk \
hgsh/Makefile \
hgsh/hgsh.c \
mercurial.el \
mergetools.hgrc \
mq.el \
perf.py \
pylintrc \
python-hook-examples.py \
sample.hgrc \
shrink-revlog.py \
simplemerge \
tcsh_completion \
tcsh_completion_build.sh \
tmplrewrite.py \
undumprevlog \
zsh_completion \
vim/HGAnnotate.vim \
vim/hg-menu.vim \
vim/hgcommand.vim \
vim/hgtest.vim \
vim/patchreview.txt \
vim/patchreview.vim
DOCS= CONTRIBUTORS COPYING README
MAN1= hg.1
MAN5= hgignore.5 hgrc.5
SUB_FILES= pkg-message
post-patch:
.if defined(WITHOUT_NLS)
@${REINPLACE_CMD} -e 's/^%%NLS%%//' ${WRKSRC}/${PYSETUP}
.else
@${REINPLACE_CMD} -e 's/^%%NLS%%/# /' ${WRKSRC}/${PYSETUP}
.endif
post-install:
${INSTALL_MAN} ${WRKSRC}/doc/*.1 ${PREFIX}/man/man1/
${INSTALL_MAN} ${WRKSRC}/doc/*.5 ${PREFIX}/man/man5/
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
for f in ${DOCS}; do \
${INSTALL_DATA} ${WRKSRC}/$${f} ${DOCSDIR}; \
done
.endif
.if !defined(NOPORTDATA)
${MKDIR} ${DATADIR}
${MKDIR} ${DATADIR}/contrib
${MKDIR} ${DATADIR}/contrib/hgfixes
${MKDIR} ${DATADIR}/contrib/hgsh
${MKDIR} ${DATADIR}/contrib/vim
for f in ${CONTRIB_FILES}; do \
${CP} -p ${WRKSRC}/contrib/$${f} ${DATADIR}/contrib/$${f}; \
done
${MKDIR} ${DATADIR}/www
${INSTALL_DATA} ${WRKSRC}/*.cgi ${DATADIR}/www
${INSTALL_DATA} ${WRKSRC}/contrib/hgweb.fcgi ${DATADIR}/www
${INSTALL_DATA} ${WRKSRC}/contrib/hgweb.wsgi ${DATADIR}/www
@${CAT} ${PKGMESSAGE}
.endif
.include <bsd.port.mk>
|