summaryrefslogtreecommitdiff
path: root/devel/viewvc-devel/Makefile
blob: 96e7f66c20a401cf144a220ad56a54de910b0e92 (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
PORTNAME=	viewvc
DISTVERSION=	1.3.0-20250316
PORTREVISION=	1
CATEGORIES=	devel python
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
PKGNAMESUFFIX=	-devel

MAINTAINER=	dvl@FreeBSD.org
COMMENT=	Web-based Version Control Repository Browsing
WWW=		https://www.viewvc.org/

LICENSE=	BSD2CLAUSE

USES=		cpe python
USE_PYTHON=	flavors
USE_GITHUB=	yes
GH_ACCOUNT=	viewvc
GH_TAGNAME=	6e60e18d5e5388697c5f6cda917c944e6138d3d9
USE_RC_SUBR=	viewvc

NO_BUILD=		yes
NO_OPTIONS_SORT=	yes
OPTIONS_DEFINE=		APMOD HTPASSWD SUBVERSION WEBSRV
OPTIONS_DEFAULT=	APACHE SUBVERSION WEBSRV

OPTIONS_SINGLE=		APMOD WEBSRV
OPTIONS_SINGLE_WEBSRV=	APACHE LIGHTTPD
OPTIONS_SINGLE_APMOD=	MODWSGI

WEBSRV_DESC=		Enable web server support
APMOD_DESC=		depend on Apache module

HTPASSWD_DESC=		Use htpasswd feature on standalone server
MODWSGI_DESC=		Add mod_wsgi to the list of package dependencies
APACHE_USES=		apache:run

HTPASSWD_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}passlib>=1.7.0:security/py-passlib@${PY_FLAVOR}
LIGHTTPD_RUN_DEPENDS=	lighttpd:www/lighttpd
MODWSGI_RUN_DEPENDS=	${APACHE_PKGNAMEPREFIX}${PYTHON_PKGNAMEPREFIX}mod_wsgi>=4.4.13:www/mod_wsgi4@${PY_FLAVOR}

.if ${WITH_SUBVERSION_VER:U} == LTS
SUBVERSION_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}subversion-lts>=0:devel/py-subversion@${PY_FLAVOR}
.else
SUBVERSION_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}subversion>=0:devel/py-subversion@${PY_FLAVOR}
.endif

RUN_DEPENDS+=		${PYTHON_PKGNAMEPREFIX}pygments>=1.1:textproc/py-pygments@${PY_FLAVOR}

CONFLICTS_INSTALL=	viewvc-1.[12].[0-9]*

.include <bsd.port.options.mk>

SUB_FILES=	pkg-message
SUB_LIST=	PYTHON_CMD=${PYTHON_CMD} \
		ECHO=${ECHO} EGREP=${EGREP} TOUCH=${TOUCH} \
		CHOWN=${CHOWN} RM=${RM:Q}

pre-everything::
.if ${PORT_OPTIONS:MAPMOD} && !${PORT_OPTIONS:MAPACHE}
IGNORE=	apache module needs Apache server, please re-run 'make config' then choose WEBSRV and APACHE
.endif

post-patch:
.for i in cvsgraph.conf mimetypes.conf viewvc.conf
	${MV} ${WRKSRC}/conf/${i}.dist ${WRKSRC}/conf/${i}.sample
	${REINPLACE_CMD} -e '/"${i}"/d' ${WRKSRC}/viewvc-install
.endfor
	${REINPLACE_CMD} -e 's/conf.dist/conf.sample/g' \
		${WRKSRC}/viewvc-install \
		${WRKSRC}/bin/standalone.py
# to much files, use own shebangfix
	${FIND} ${WRKSRC} -type f | ${GREP} -v -e 'png' -e 'images' \
		| ${XARGS} ${SED} -i '' \
		-e '1s|^\#![[:space:]]*/usr/bin/env python|\#!${PYTHON_CMD}|' \
		-e '1s|^\#![[:space:]]*/usr/bin/python|\#!${PYTHON_CMD}|'

do-install:
	@(cd ${WRKSRC} && ${PYTHON_CMD} viewvc-install --prefix=${PREFIX}/${PORTNAME} --destdir="${STAGEDIR}" --clean-mode=false)

.include <bsd.port.mk>