diff options
author | sbz <sbz@FreeBSD.org> | 2013-11-29 17:35:27 +0800 |
---|---|---|
committer | sbz <sbz@FreeBSD.org> | 2013-11-29 17:35:27 +0800 |
commit | bda0d47f6f94ef39488ef38a642a3220bf1f4623 (patch) | |
tree | c2ffa15b8aba22d53467b2e1152d044edd1c2b86 /devel | |
parent | 6adc23a6f977931b2189d9982270682a1a172d62 (diff) | |
download | freebsd-ports-gnome-bda0d47f6f94ef39488ef38a642a3220bf1f4623.tar.gz freebsd-ports-gnome-bda0d47f6f94ef39488ef38a642a3220bf1f4623.tar.zst freebsd-ports-gnome-bda0d47f6f94ef39488ef38a642a3220bf1f4623.zip |
- Fix the usage of 'python' to get rid of the implicit lang/python
dependency [1]
- Convert USES_GMAKE to USES=gmake
- Add LICENSE
Submitted by: mva [1]
Diffstat (limited to 'devel')
-rw-r--r-- | devel/py-aspects/Makefile | 9 | ||||
-rw-r--r-- | devel/py-aspects/pkg-descr | 2 |
2 files changed, 7 insertions, 4 deletions
diff --git a/devel/py-aspects/Makefile b/devel/py-aspects/Makefile index 050f2deb0d6f..da786e332f92 100644 --- a/devel/py-aspects/Makefile +++ b/devel/py-aspects/Makefile @@ -4,14 +4,17 @@ PORTNAME= aspects PORTVERSION= 1.3 CATEGORIES= devel python -MASTER_SITES= http://www.cs.tut.fi/~ask/aspects/ +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 -USE_GMAKE= yes +LICENSE= LGPL21 + +USES= gmake USE_PYTHON= 2.5+ USE_PYDISTUTILS= yes PYDISTUTILS_PKGNAME= python-${PORTNAME} @@ -26,7 +29,7 @@ EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} NO_STAGE= yes do-build: - @${GMAKE} -C ${WRKSRC} check + @PYTHON="${PYTHON_CMD}" @${GMAKE} -C ${WRKSRC} check .if !defined(NOPORTEXAMPLES) post-install: diff --git a/devel/py-aspects/pkg-descr b/devel/py-aspects/pkg-descr index 327ea80a77f6..dd5864eea104 100644 --- a/devel/py-aspects/pkg-descr +++ b/devel/py-aspects/pkg-descr @@ -3,4 +3,4 @@ Python.The aspects.py library provides means to intercept function calls. Functions and methods (also in Python standard library and third party code) can be wrapped so that when they are called, the wrap is invoked first. -WWW: http://www.cs.tut.fi/~ask/aspects/index.shtml +WWW: http://www.cs.tut.fi/~ask/aspects/index.shtml |