sthen 3cbe1c2f30 Reverse the polarity of MODPY_VERSION; default is now 3.x,
if a port needs 2.x then set MODPY_VERSION=${MODPY_DEFAULT_VERSION_2}.

This commit doesn't change any versions currently used; it may be that
some ports have MODPY_DEFAULT_VERSION_2 but don't require it, those
should be cleaned up in the course of updating ports where possible.

Python module ports providing py3-* packages should still use
FLAVOR=python3 so that we don't have a mixture of dependencies some
using ${MODPY_FLAVOR} and others not.
2021-02-23 19:39:08 +00:00

40 lines
995 B
Makefile

# $OpenBSD: Makefile,v 1.18 2021/02/23 19:39:14 sthen Exp $
COMMENT= migrate repositories from CVS to Subversion/GIT/BZR
# py3: https://github.com/mhagger/cvs2svn/issues/9
MODPY_EGG_VERSION= 2.4.0
REVISION= 2
DISTNAME= cvs2svn-${MODPY_EGG_VERSION}
MASTER_SITES= https://spacehopper.org/mirrors/
CATEGORIES= devel
HOMEPAGE= https://github.com/mhagger/cvs2svn
# BSD-like
PERMIT_PACKAGE= Yes
MODULES= lang/python
MODPY_VERSION = ${MODPY_DEFAULT_VERSION_2}
RUN_DEPENDS= ${MODPY_RUN_DEPENDS},-bsddb
TEST_FLAGS= PYTHON=${MODPY_BIN}
TEST_TARGET= check
DOCFILES= BUGS CHANGES COPYING HACKING README doc/design-notes.txt
DOCDIR= ${PREFIX}/share/doc/cvs2svn
EXAMPLEDIR = ${PREFIX}/share/examples/cvs2svn
post-install:
${INSTALL_DATA_DIR} ${DOCDIR} ${DOCDIR}/www ${EXAMPLEDIR}
.for i in ${DOCFILES}
${INSTALL_DATA} ${WRKSRC}/$i ${DOCDIR}/
.endfor
${INSTALL_DATA} ${WRKSRC}/www/*html ${DOCDIR}/www/
${INSTALL_DATA} ${WRKSRC}/cvs2*-example.options ${EXAMPLEDIR}
.include <bsd.port.mk>