blob: 3e1633765c81539ffd44414ffbe05c0d5aae7997 (
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
32
33
34
35
|
# New ports collection makefile for: py-papi
# Date created: 2006-12-19
# Whom: Marcus von Appen
#
# $FreeBSD$
#
PORTNAME= papi
PORTVERSION= 0.0.6
PORTREVISION= 1
CATEGORIES= accessibility devel python
MASTER_SITES= SF/ocemp
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= mva@sysfault.org
COMMENT= ATK accessibility wrapper for python
USE_GNOME= atk
USE_PYTHON= yes
USE_PYDISTUTILS=yes
EXAMPLES= atkaction.py atkapplication.py atkcapi.c msaaapplication.py \
msaacapi.cpp
post-patch:
${REINPLACE_CMD} -i "" -e 's|: docfiles|: []|g' ${WRKSRC}/setup.py
post-install:
.if !defined(NOPORTEXAMPLES)
@${INSTALL} -d ${EXAMPLESDIR}/
@cd ${WRKSRC}/doc/examples && \
${INSTALL_DATA} ${EXAMPLES} ${EXAMPLESDIR}/
.endif
.include <bsd.port.mk>
|