mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-07 23:53:51 +02:00
New package: kyua-0.10; supersedes kyua-cli and kyua-testers.
This commit is contained in:
parent
7e9a700238
commit
2ab46ea2cd
2 changed files with 72 additions and 0 deletions
|
@ -0,0 +1,48 @@
|
||||||
|
From d02bdfc32e748d3763d639cf291bffff4b121df2 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Juan RP <xtraeme@gmail.com>
|
||||||
|
Date: Sun, 3 Nov 2013 08:50:03 +0100
|
||||||
|
Subject: [PATCH] Cache configure result of getcwd(NULL,0) test.
|
||||||
|
|
||||||
|
This is the last configure test that must be cached for a proper
|
||||||
|
cross compilation.
|
||||||
|
---
|
||||||
|
configure.ac | 22 +++++++++++++---------
|
||||||
|
1 file changed, 13 insertions(+), 9 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index 3ce8e8e..fbe6c57 100644
|
||||||
|
--- configure.ac
|
||||||
|
+++ configure.ac
|
||||||
|
@@ -58,16 +58,20 @@ KYUA_MEMORY
|
||||||
|
AC_CHECK_FUNCS([putenv setenv unsetenv])
|
||||||
|
|
||||||
|
|
||||||
|
-AC_MSG_CHECKING([whether getcwd(NULL, 0) works])
|
||||||
|
-AC_RUN_IFELSE([AC_LANG_PROGRAM([#include <stdlib.h>
|
||||||
|
+AC_CACHE_CHECK(
|
||||||
|
+ [whether getcwd(NULL, 0) works],
|
||||||
|
+ [kyua_cv_getcwd_null_0_works], [
|
||||||
|
+ AC_RUN_IFELSE([AC_LANG_PROGRAM([#include <stdlib.h>
|
||||||
|
#include <unistd.h>],
|
||||||
|
- [char *cwd = getcwd(NULL, 0);
|
||||||
|
- return (cwd != NULL) ? EXIT_SUCCESS : EXIT_FAILURE;])],
|
||||||
|
- [AC_MSG_RESULT(yes)
|
||||||
|
- AC_DEFINE([HAVE_GETCWD_DYN], [1],
|
||||||
|
- [Define to 1 if getcwd(NULL, 0) works])],
|
||||||
|
- [AC_MSG_RESULT(no)])
|
||||||
|
-
|
||||||
|
+ [char *cwd = getcwd(NULL, 0);
|
||||||
|
+ return (cwd != NULL) ? EXIT_SUCCESS : EXIT_FAILURE;])],
|
||||||
|
+ [kyua_cv_getcwd_null_0_works=yes],
|
||||||
|
+ [kyua_cv_getcwd_null_0_works=no])
|
||||||
|
+])
|
||||||
|
+if test "${kyua_cv_getcwd_null_0_works}" = yes; then
|
||||||
|
+ AC_DEFINE([HAVE_GETCWD_DYN], [1],
|
||||||
|
+ [Define to 1 if getcwd(NULL, 0) works])
|
||||||
|
+fi
|
||||||
|
|
||||||
|
AC_PROG_RANLIB
|
||||||
|
|
||||||
|
--
|
||||||
|
1.8.4.1
|
||||||
|
|
24
srcpkgs/kyua/template
Normal file
24
srcpkgs/kyua/template
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# Template file for 'kyua'
|
||||||
|
pkgname=kyua
|
||||||
|
version=0.10
|
||||||
|
revision=1
|
||||||
|
wrksrc="kyua-kyua-${version}"
|
||||||
|
build_style=gnu-configure
|
||||||
|
configure_args="
|
||||||
|
kyua_cv_attribute_noreturn=yes kyua_cv_lchmod_works=no
|
||||||
|
kyua_cv_getopt_gnu=yes kyua_cv_getopt_optind_reset_value=0
|
||||||
|
kyua_cv_signals_lastno=31 kyua_cv_getcwd_null_0_works=yes
|
||||||
|
ac_cv_path_GDB=/usr/bin/gdb ac_cv_path_UMOUNT=/usr/bin/umount"
|
||||||
|
hostmakedepends="pkg-config automake libtool atf-devel doxygen"
|
||||||
|
makedepends="atf-devel>=0.16 lutok-devel>=0.4 sqlite-devel"
|
||||||
|
replaces="kyua-cli>=0 kyua-testers>=0"
|
||||||
|
short_desc="Kyua (automated testing framework) - Command line interface"
|
||||||
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
|
license="Modified BSD"
|
||||||
|
homepage="http://code.google.com/p/kyua"
|
||||||
|
distfiles="https://github.com/jmmv/kyua/archive/kyua-${version}.tar.gz"
|
||||||
|
checksum=a0f2035c8d1f4ca3097e56ece16730d3fb7c00367bd709dc4eb5fd580308e2c5
|
||||||
|
|
||||||
|
pre_configure() {
|
||||||
|
autoreconf -fi
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue