Experimental version released on December 7th, 2013. * Issue 74: Added the kyua-tap-tester, a new backend to interact with test programs that comply with the Test Anything Protocol. * Issue 69: Cope with the lack of AM_PROG_AR in configure.ac, which first appeared in Automake 1.11.2. Fixes a problem in Ubuntu 10.04 LTS, which appears stuck in 1.11.1. * Issue 24: Improve test case isolation by confining the tests to their own session instead of just to their own process group.
37 lines
822 B
Makefile
37 lines
822 B
Makefile
# $NetBSD: Makefile,v 1.2 2013/12/08 01:21:12 jmmv Exp $
|
|
#
|
|
|
|
DISTNAME= kyua-testers-0.2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://kyua.googlecode.com/files/
|
|
|
|
MAINTAINER= jmmv@NetBSD.org
|
|
HOMEPAGE= http://code.google.com/p/kyua/
|
|
COMMENT= Kyua (automated testing framework) - Testers
|
|
LICENSE= modified-bsd
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
GNU_CONFIGURE= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
USE_LANGUAGES= c
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.kyua-testers
|
|
PKG_SUPPORTED_OPTIONS= tests
|
|
PKG_SUGGESTED_OPTIONS= tests
|
|
|
|
CONFIGURE_ARGS+= --without-doxygen
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if $(PKG_OPTIONS:Mtests)
|
|
USE_TOOLS+= pkg-config
|
|
CONFIGURE_ARGS+= --with-atf
|
|
PLIST_SUBST+= TESTS=
|
|
. include "../../devel/atf-libs/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-atf
|
|
PLIST_SUBST+= TESTS=@comment
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|