aboutsummaryrefslogtreecommitdiffstats
path: root/devel/py-aspects/Makefile
blob: 570a25430c7f36fde83d3318752c72ac783ff6df (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
36
37
38
39
40
41
42
43
44
45
46
# Created by: Sofian Brabez <sbrabez@gmail.com>
# $FreeBSD$

PORTNAME=   aspects
PORTVERSION=    1.3
CATEGORIES= devel python
MASTER_SITES=   http://www.cs.tut.fi/~ask/aspects/ \
        LOCAL/sbz
PKGNAMEPREFIX=  ${PYTHON_PKGNAMEPREFIX}
DISTNAME=   python-${PORTNAME}-${PORTVERSION}

MAINTAINER= sbz@FreeBSD.org
COMMENT=    Lightweight aspect oriented programming library for Python

LICENSE=    LGPL21

USES=   gmake
USE_PYTHON= 2.5+
USE_PYDISTUTILS=    yes
PYDISTUTILS_PKGNAME=    python-${PORTNAME}

PKGMESSAGE= ${WRKDIR}/pkg-message
SUB_FILES=  pkg-message

EXAMPLESFILES=  httpget_example.py timeout_advice.py timeout_example.py \
        tracer_advice.py tracer_example.py typecheck_advice.py \
        typecheck_example.py
EXAMPLESDIR=    ${PREFIX}/share/examples/py-${PORTNAME}

NO_STAGE=   yes
do-build:
    @PYTHON="${PYTHON_CMD}" ${GMAKE} -C ${WRKSRC} check

.if !defined(NOPORTEXAMPLES)
post-install:
    @${MKDIR} ${EXAMPLESDIR}
.for f in ${EXAMPLESFILES}
    @${INSTALL_DATA} ${WRKSRC}/examples/${f} ${EXAMPLESDIR}
.endfor
.endif

.if !defined(BATCH)
    @${CAT} ${PKGMESSAGE}
.endif

.include <bsd.port.mk>