mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
6ee4f3c0ed
While here trim some headers and convert some gnomehack to pathfix
32 lines
728 B
Makefile
32 lines
728 B
Makefile
# Created by: Marcus von Appen
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= papi
|
|
PORTVERSION= 0.0.9
|
|
CATEGORIES= accessibility devel python
|
|
MASTER_SITES= SF/ocemp/${PORTNAME}/${PORTVERSION}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= mva@FreeBSD.org
|
|
COMMENT= ATK accessibility wrapper for python
|
|
|
|
USES= pkgconfig
|
|
USE_GNOME= atk
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=yes
|
|
|
|
EXAMPLES= atkaction.py atkapplication.py atkcapi.c atktext.py atkvalue.py \
|
|
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>
|