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.
28 lines
567 B
Makefile
28 lines
567 B
Makefile
# $OpenBSD: Makefile,v 1.8 2021/02/23 19:39:52 sthen Exp $
|
|
|
|
COMMENT = menu generation utility for X window managers
|
|
DISTNAME = menumaker-0.99.12
|
|
CATEGORIES = x11
|
|
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=menumaker/}
|
|
|
|
HOMEPAGE = http://menumaker.sourceforge.net/
|
|
MAINTAINER = Alessandro De Laurenzis <just22@atlantide.mooo.com>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = lang/python
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
MAKE_FLAGS = PYTHON=${MODPY_BIN}
|
|
|
|
NO_TEST = Yes
|
|
|
|
post-install:
|
|
${MODPY_BIN} ${MODPY_LIBDIR}/compileall.py \
|
|
${PREFIX}/share/menumaker
|
|
|
|
.include <bsd.port.mk>
|