openbsd-ports/x11/driconf/Makefile
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

29 lines
740 B
Makefile

# $OpenBSD: Makefile,v 1.16 2021/02/23 19:39:49 sthen Exp $
COMMENT = configuration utility for DRI drivers
MODPY_EGG_VERSION = 0.9.1
DISTNAME = driconf-${MODPY_EGG_VERSION}
REVISION= 6
CATEGORIES = x11
HOMEPAGE = https://dri.freedesktop.org/wiki/DriConf
MASTER_SITES = https://people.freedesktop.org/~fxkuehl/driconf/ \
https://distfiles.sigtrap.nl/
# GPLv2
PERMIT_PACKAGE = Yes
MODULES = lang/python
MODPY_VERSION = ${MODPY_DEFAULT_VERSION_2}
RUN_DEPENDS = x11/py-gtk2
pre-configure:
@mkdir -p ${WRKSRC}/lib/driconf
@touch ${WRKSRC}/lib/driconf/__init__.py
@cd ${WRKSRC}; mv dri.py driconf.py ./lib/driconf/.
@cd ${WRKSRC}; for i in driconf_*.py; do \
mv $$i ./lib/driconf/$${i#*_}; done
.include <bsd.port.mk>