diff options
author | dillo <dillo@pkgsrc.org> | 2003-02-17 15:27:58 +0000 |
---|---|---|
committer | dillo <dillo@pkgsrc.org> | 2003-02-17 15:27:58 +0000 |
commit | 5f4ad95078bf93b70aba68eb54ae3ff92d1a0f54 (patch) | |
tree | 1af7ef2b2bc5ea7a4f444fbcd0608162da7f6fc3 /devel | |
parent | f1349125eb73cfee536105a66c0bab7c5347b686 (diff) | |
download | pkgsrc-5f4ad95078bf93b70aba68eb54ae3ff92d1a0f54.tar.gz |
convert to use test target from bsd.pkg.mk
addresses PR pkg/19416
Diffstat (limited to 'devel')
-rw-r--r-- | devel/ddd/Makefile | 6 | ||||
-rw-r--r-- | devel/libtool-base/Makefile | 5 | ||||
-rw-r--r-- | devel/ruby-bsearch/Makefile | 7 |
3 files changed, 7 insertions, 11 deletions
diff --git a/devel/ddd/Makefile b/devel/ddd/Makefile index b226259ecb9..a13228be14a 100644 --- a/devel/ddd/Makefile +++ b/devel/ddd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.42 2002/09/29 07:34:30 jlam Exp $ +# $NetBSD: Makefile,v 1.43 2003/02/17 15:27:59 dillo Exp $ # DISTNAME= ddd-3.3 @@ -14,6 +14,7 @@ USE_BUILDLINK2= YES USE_X11BASE= YES GNU_CONFIGURE= YES USE_GMAKE= YES +TEST_TARGET= check CONFIGURE_ARGS+= --with-ncurses=no @@ -45,9 +46,6 @@ post-install: ${GZIP_CMD} ${PREFIX}/share/doc/ddd/ddd-paper.ps ${GZIP_CMD} ${PREFIX}/share/doc/ddd/ddd.ps -test: - (cd ${WRKSRC} ; ${MAKE_PROGRAM} check) - .include "../../graphics/xpm/buildlink2.mk" .include "../../mk/motif.buildlink2.mk" diff --git a/devel/libtool-base/Makefile b/devel/libtool-base/Makefile index 6819dcbb589..7f9817e73f9 100644 --- a/devel/libtool-base/Makefile +++ b/devel/libtool-base/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2003/01/10 08:44:19 jlam Exp $ +# $NetBSD: Makefile,v 1.16 2003/02/17 15:27:59 dillo Exp $ # .include "../libtool/Makefile.common" @@ -10,8 +10,7 @@ COMMENT= Generic shared library support script (the script itself) CONFLICTS+= libtool<=1.3.5nb11 -test: build - cd ${WRKSRC} && ${MAKE} check +TEST_TARGET= check .include "../../mk/bsd.prefs.mk" diff --git a/devel/ruby-bsearch/Makefile b/devel/ruby-bsearch/Makefile index 805263b9464..04f83b58313 100644 --- a/devel/ruby-bsearch/Makefile +++ b/devel/ruby-bsearch/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2002/03/05 15:58:32 taca Exp $ +# $NetBSD: Makefile,v 1.5 2003/02/17 15:28:00 dillo Exp $ DISTNAME= ruby-bsearch-${VERSION} PKGNAME= ${RUBY_PKGNAMEPREFIX}bsearch-${VERSION} @@ -14,6 +14,8 @@ DIST_SUBDIR= ruby USE_RUBY_RD= # defined NO_PATCH= # defined NO_CONFIGURE= # defined +TEST_DIRS= ${WRKSRC}/tests +TEST_TARGET= check RD_SRCS= bsearch.en.rd bsearch.ja.rd DOCS= ${RD_SRCS} bsearch.en.html bsearch.ja.html bsearch.png @@ -30,9 +32,6 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/bsearch .endfor -test: - cd ${WRKSRC}/tests; make - .include "../../textproc/ruby-rdtool/Makefile.common" .include "../../lang/ruby-base/Makefile.common" .include "../../mk/bsd.pkg.mk" |