mirror of
https://git.freebsd.org/ports.git
synced 2025-05-31 02:16:27 -04:00
- Add CVS description - Add DARCS description - Add GIT description - Add MERCURIAL description - Add PERFORCE description - Rename SVN to SUBVERSION devel/anjuta: - Rename OPTION SVN to SUBVERSION - Sort OPTIONS_DEFINE and OPTIONS_DEFAULT - Change SUBVERSION_DESC to use the default description devel/git: - Rename OPTION P4 to PERFORCE - Rename OPTION SVN to SUBVERSION - Change PERFORCE_DESC to use the default description devel/ocaml-opam: - Rename OPTION HG to MERCURIAL - Sort OPTIONS_DEFINE and OPTIONS_DEFAULT - Change {DARCS,GIT,MERCURIAL}_DESC to use the default description devel/thunar-vcs-plugin: - Rename OPTION SVN to SUBVERSION - Sort OPTIONS_DEFINE - Change GIT_DESC to use the default description devel/viewvc-devel: - Rename OPTION SVN to SUBVERSION - Sort OPTIONS_DEFINE, OPTIONS_DEFAULT and OPTIONS_SINGLE net-mgmt/observium: - Rename OPTION SVN to SUBVERSION net-mgmt/rancid3: - Rename OPTION SVN to SUBVERSION - Sort OPTIONS_SINGLE_SCM - Change {CVS,GIT,SUBVERSION}_DESC to use the default description ports-mgmt/portshaker: - Rename OPTION SVN to SUBVERSION - Rename HG to MERCURIAL - Sort OPTIONS_DEFINE - Change {GIT,MERCURIAL}_DESC to use the default description security/hydra: - Rename OPTION SVN to SUBVERSION security/medusa: - Rename OPTION SVN to SUBVERSION - Sort OPTIONS_DEFINE shells/scponly: - Rename OPTION SVN to SUBVERSION - Sort OPTIONS_DEFINE - Typo fix in SVNSERVE_DESC www/trac-devel: - Rename OPTION SVN to SUBVERSION - Sort OPTIONS_DEFINE, OPTIONS_DEFAULT and OPTIONS_MULTI_DATABASE - Change {GIT,SUBVERSION}_DESC to use the default description Reviewed by: koobs, adamw, dvl, garga, hannes_mehnert.org, rm, dbaio, romain Approved by: koobs (ports, mentor) Differential Revision: https://reviews.freebsd.org/D17459 MFH: No (OPTION description updates)
74 lines
2.2 KiB
Makefile
74 lines
2.2 KiB
Makefile
# Created by: will
|
|
|
|
PORTNAME= viewvc
|
|
DISTVERSION= 1.3.0-20201006
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
PKGNAMESUFFIX= -devel
|
|
|
|
MAINTAINER= dvl@FreeBSD.org
|
|
COMMENT= Web-based Version Control Repository Browsing
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
USES= cpe python:3.6+
|
|
USE_PYTHON= flavors
|
|
USE_GITHUB= yes
|
|
GH_TAGNAME= c93d9da79c31457ecb0a771ff52d28353dc6e878
|
|
USE_RC_SUBR= viewvc
|
|
|
|
NO_BUILD= yes
|
|
NO_OPTIONS_SORT= yes
|
|
OPTIONS_DEFINE= APMOD 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
|
|
|
|
MODWSGI_DESC= Add mod_wsgi to the list of package dependencies
|
|
|
|
APACHE_USE= APACHE_RUN=24+
|
|
LIGHTTPD_RUN_DEPENDS= lighttpd:www/lighttpd
|
|
MODWSGI_RUN_DEPENDS= ${APACHE_PKGNAMEPREFIX}${PYTHON_PKGNAMEPREFIX}mod_wsgi>=4.4.13:www/mod_wsgi4@${PY_FLAVOR}
|
|
|
|
SUBVERSION_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}subversion>=0:devel/py-subversion@${PY_FLAVOR}
|
|
|
|
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>
|