pkgsrc/devel/kyua-testers/Makefile
jmmv 8e8f1df528 Initial import of kyua-testers, version 0.1:
Kyua (pronounced Q.A.) is a testing framework for both developers and
users.  Kyua is different from most other testing frameworks in that it
puts the end user experience before anything else.  There are multiple
reasons for users to run the tests themselves, and Kyua ensures that
they can do so in the most convenient way.

This module, kyua-testers, provides scriptable interfaces to interact
with test programs of various kinds.  The interface of such testers
allows the caller to execute a single test case of a single test program
in a controlled and homogeneous manner.
2013-02-19 05:29:15 +00:00

37 lines
826 B
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2013/02/19 05:29:15 jmmv Exp $
#
DISTNAME= kyua-testers-0.1
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"