aboutsummaryrefslogtreecommitdiffstats
path: root/devel/py-sdl2/Makefile
blob: 7afee47a91571daa34c11a5cf1276987c3794cec (plain) (blame)
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
29
30
31
# $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

OPTIONS_DEFINE= DOCS

.include <bsd.port.options.mk>

post-install:
.if ${PORT_OPTIONS:MDOCS}
    @${INSTALL} -d ${STAGEDIR}${DOCSDIR}/html
    @${TAR} -C ${WRKSRC}/doc/html -cf - . | \
        ${TAR} -C ${STAGEDIR}${DOCSDIR}/html -xf -
.endif

.include <bsd.port.mk>