diff options
author | danfe <danfe@FreeBSD.org> | 2008-11-09 18:45:22 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2008-11-09 18:45:22 +0800 |
commit | 36008b11aae08fb1e513e16b97d447da58e4a67e (patch) | |
tree | 4f5683f27cf65138c59d13fbe81334c052beb068 | |
parent | d1e2939716639203051b70f5ae742a222bce3c3c (diff) | |
download | freebsd-ports-gnome-36008b11aae08fb1e513e16b97d447da58e4a67e.tar.gz freebsd-ports-gnome-36008b11aae08fb1e513e16b97d447da58e4a67e.tar.zst freebsd-ports-gnome-36008b11aae08fb1e513e16b97d447da58e4a67e.zip |
- Correctly assign RUN_DEPENDS. While it might work here as it was, it's
better be safe once and for all and do it right
- Canonicalize Makefile header while here
-rw-r--r-- | devel/gauche-gaunit/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/devel/gauche-gaunit/Makefile b/devel/gauche-gaunit/Makefile index 677726223424..10f753deae18 100644 --- a/devel/gauche-gaunit/Makefile +++ b/devel/gauche-gaunit/Makefile @@ -1,8 +1,9 @@ # New ports collection makefile for: GaUnit -# Date created: 8 May 2004 -# Whom: Kimura Fuyuki <fuyuki@hadaly.org> +# Date created: 8 May 2004 +# Whom: Kimura Fuyuki <fuyuki@hadaly.org> # # $FreeBSD$ +# PORTNAME= gaunit PORTVERSION= 0.1.6 @@ -14,7 +15,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= An unit testing framework in Gauche BUILD_DEPENDS= gosh:${PORTSDIR}/lang/gauche -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS:= ${BUILD_DEPENDS} NO_BUILD= yes DOCSDIR= ${PREFIX}/share/doc/gauche/${PORTNAME} |