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.
32 lines
747 B
Makefile
32 lines
747 B
Makefile
# $OpenBSD: Makefile,v 1.13 2021/02/23 19:39:29 sthen Exp $
|
|
|
|
COMMENT= statistical anti-spam filter
|
|
|
|
MODPY_EGG_VERSION= 1.1b1
|
|
DISTNAME= spambayes-${MODPY_EGG_VERSION}
|
|
REVISION= 1
|
|
|
|
CATEGORIES= mail
|
|
|
|
HOMEPAGE= http://www.spambayes.org/
|
|
|
|
# PSF
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=spambayes/}
|
|
|
|
MODULES= lang/python
|
|
MODPY_VERSION = ${MODPY_DEFAULT_VERSION_2}
|
|
|
|
NO_TEST= Yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/spambayes
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/spambayes
|
|
${INSTALL_DATA} ${WRKSRC}/README.txt ${PREFIX}/share/doc/spambayes/
|
|
.for file in muttrc procmailrc spambayes.el
|
|
${INSTALL_DATA} ${WRKSRC}/contrib/${file} ${PREFIX}/share/examples/spambayes/
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|