blob: 8151e842518fd22685bb25a1ff5324bb62907043 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# $FreeBSD$
PORTNAME= sdl2
PORTVERSION= 0.9.3
PORTREVISION= 1
CATEGORIES= devel python
MASTER_SITES= http://bitbucket.org/marcusva/py-sdl2/downloads/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= PySDL2-${PORTVERSION}
MAINTAINER= mva@FreeBSD.org
COMMENT= Python bindings to the SDL2 libraries
LICENSE= ZLIB
USES= python
USE_SDL= sdl2 gfx2 image2 ttf2 mixer2
USE_PYTHON= autoplist distutils
NO_ARCH= yes
OPTIONS_DEFINE= DOCS
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}/html
@${TAR} -C ${WRKSRC}/doc/html -cf - . | \
${TAR} -C ${STAGEDIR}${DOCSDIR}/html -xf -
.include <bsd.port.mk>
|