de61a87208
With hat: portmgr
38 lines
869 B
Makefile
38 lines
869 B
Makefile
# Created by: Marcus von Appen
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= papi
|
|
PORTVERSION= 0.0.9
|
|
PORTREVISION= 2
|
|
CATEGORIES= accessibility devel python
|
|
MASTER_SITES= SF/ocemp/${PORTNAME}/${PORTVERSION}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= ATK accessibility wrapper for python
|
|
|
|
DEPRECATED= Unmaintained, uses EOLed python27
|
|
EXPIRATION_DATE= 2020-01-27
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= gnome pkgconfig python:2.7
|
|
USE_GNOME= atk
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
EXAMPLES= atkaction.py atkapplication.py atkcapi.c atktext.py atkvalue.py \
|
|
msaaapplication.py msaacapi.cpp
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
|
|
post-patch:
|
|
@${RM} ${WRKSRC}/setup.py.orig
|
|
|
|
post-install-EXAMPLES-on:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/
|
|
cd ${WRKSRC}/doc/examples && \
|
|
${INSTALL_DATA} ${EXAMPLES} ${STAGEDIR}${EXAMPLESDIR}/
|
|
|
|
.include <bsd.port.mk>
|