openbsd-ports/x11/driconf/Makefile
wcmaier a3a6c543eb DRIconf is a configuration applet for the Direct Rendering
Infrastructure. It allows customizing performance and visual quality
settings of OpenGL drivers on a per-driver, per-screen and/or
per-application level.

The settings are stored in system wide and per-user XML configuration
files, which are parsed by the OpenGL drivers on startup.

Originally by oga@; tested by oga@ and guenther@. Python jiggery and
other cleanups by moi.

double ok fgsch@, ribbit landry@
2008-07-11 13:07:54 +00:00

30 lines
853 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2008/07/11 13:07:54 wcmaier Exp $
COMMENT = configuration utility for DRI drivers
MODPY_EGG_VERSION = 0.9.1
DISTNAME = driconf-${MODPY_EGG_VERSION}
CATEGORIES = x11
HOMEPAGE = http://people.freedesktop.org/~fxkuehl/driconf/dri_config_design_rev4.html
MASTER_SITES = http://people.freedesktop.org/~fxkuehl/driconf/
# GPLv2
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM = Yes
PERMIT_DISTFILES_FTP = Yes
MODULES = lang/python
RUN_DEPENDS = ::x11/py-gtk2 \
:python-expat-${MODPY_VERSION}*:lang/python/${MODPY_VERSION},-expat
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>