mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
205f0f8997
I can't get the new port "jools" to detect my installation of pygame, no doubt due to some path confusion. Don't know if it's just this machine, but I will note that I basically have a default Python install from ports, with a few additional modules, but no PYTHONPATH or anything about python in make.conf. (Perhaps the original porter has site-packages/pygame in his default path?) PR: ports/53020 Submitted by: Mark Linimon <linimon@lonesome.com>
27 lines
616 B
Makefile
27 lines
616 B
Makefile
# New ports collection makefile for: jools
|
|
# Date created: 6 June 2003
|
|
# Whom: Adam Weinberger <adamw@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jools
|
|
PORTVERSION= 0.10
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://www.eecs.umich.edu/~pelzlpj/jools/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Addictive jewel-swapping puzzle game
|
|
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game
|
|
|
|
USE_PYTHON= yes
|
|
|
|
do-build:
|
|
${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${PYTHON_CMD} ${WRKSRC}/setup.py install --prefix=${PREFIX}
|
|
|
|
.include <bsd.port.mk>
|