Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/external/bsd/kyua-cli Update reachover build files for kyua-...
details: https://anonhg.NetBSD.org/src/rev/2ae6a4bc4a4a
branches: trunk
changeset: 790652:2ae6a4bc4a4a
user: jmmv <jmmv%NetBSD.org@localhost>
date: Fri Oct 18 23:41:40 2013 +0000
description:
Update reachover build files for kyua-cli-0.7.
diffstat:
external/bsd/kyua-cli/Makefile.inc | 16 +++++++++++++++-
external/bsd/kyua-cli/config.h | 6 +++---
external/bsd/kyua-cli/share/man/man5/Makefile | 4 ++--
external/bsd/kyua-cli/share/man/man7/Makefile | 4 ++--
external/bsd/kyua-cli/usr.bin/kyua/Makefile | 4 ++--
5 files changed, 24 insertions(+), 10 deletions(-)
diffs (117 lines):
diff -r 7d8ebf758282 -r 2ae6a4bc4a4a external/bsd/kyua-cli/Makefile.inc
--- a/external/bsd/kyua-cli/Makefile.inc Fri Oct 18 23:40:04 2013 +0000
+++ b/external/bsd/kyua-cli/Makefile.inc Fri Oct 18 23:41:40 2013 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.1 2013/02/23 14:16:49 jmmv Exp $
+# $NetBSD: Makefile.inc,v 1.2 2013/10/18 23:41:40 jmmv Exp $
.include <bsd.own.mk>
@@ -20,7 +20,20 @@
KYUA_TARNAME!= grep 'define PACKAGE_TARNAME' ${TOPDIR}/config.h \
| cut -d '"' -f 2
+cookie-tarname: cookie-tarname-2
+ @cmp -s cookie-tarname cookie-tarname-2 \
+ || cp cookie-tarname-2 cookie-tarname
+cookie-tarname-2: .PHONY
+ @echo "${KYUA_TARNAME}" >cookie-tarname-2
+CLEANFILES+= cookie-tarname cookie-tarname-2
+
KYUA_VERSION!= grep 'define VERSION' ${TOPDIR}/config.h | cut -d '"' -f 2
+cookie-version: cookie-version-2
+ @cmp -s cookie-version cookie-version-2 \
+ || cp cookie-version-2 cookie-version
+cookie-version-2: .PHONY
+ @echo "${KYUA_VERSION}" >cookie-version-2
+CLEANFILES+= cookie-version cookie-version-2
CPPFLAGS+= -DHAVE_CONFIG_H
@@ -49,6 +62,7 @@
DPADD+= ${LIBLUTOK} ${LIBSQLITE}
.endif
+MANPAGE_DEPS = cookie-tarname cookie-version
BUILD_MANPAGE = \
sed -e 's,__CONFDIR__,${KYUA_CONFDIR},g' \
-e 's,__DOCDIR__,${KYUA_DOCDIR},g' \
diff -r 7d8ebf758282 -r 2ae6a4bc4a4a external/bsd/kyua-cli/config.h
--- a/external/bsd/kyua-cli/config.h Fri Oct 18 23:40:04 2013 +0000
+++ b/external/bsd/kyua-cli/config.h Fri Oct 18 23:41:40 2013 +0000
@@ -80,7 +80,7 @@
#define PACKAGE_NAME "Kyua - Command line interface"
/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "Kyua - Command line interface 0.6"
+#define PACKAGE_STRING "Kyua - Command line interface 0.7"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "kyua-cli"
@@ -89,10 +89,10 @@
#define PACKAGE_URL "http://code.google.com/p/kyua/"
/* Define to the version of this package. */
-#define PACKAGE_VERSION "0.6"
+#define PACKAGE_VERSION "0.7"
/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1
/* Version number of package */
-#define VERSION "0.6"
+#define VERSION "0.7"
diff -r 7d8ebf758282 -r 2ae6a4bc4a4a external/bsd/kyua-cli/share/man/man5/Makefile
--- a/external/bsd/kyua-cli/share/man/man5/Makefile Fri Oct 18 23:40:04 2013 +0000
+++ b/external/bsd/kyua-cli/share/man/man5/Makefile Fri Oct 18 23:41:40 2013 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2013/02/23 14:16:54 jmmv Exp $
+# $NetBSD: Makefile,v 1.2 2013/10/18 23:41:40 jmmv Exp $
.include <bsd.init.mk>
@@ -6,7 +6,7 @@
.for name in kyua.conf.5 kyuafile.5
MAN+= ${name}
-${name}: ${name}.in
+${name}: ${name}.in ${MANPAGE_DEPS}
name=${name}; ${BUILD_MANPAGE}
.endfor
diff -r 7d8ebf758282 -r 2ae6a4bc4a4a external/bsd/kyua-cli/share/man/man7/Makefile
--- a/external/bsd/kyua-cli/share/man/man7/Makefile Fri Oct 18 23:40:04 2013 +0000
+++ b/external/bsd/kyua-cli/share/man/man7/Makefile Fri Oct 18 23:41:40 2013 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2013/02/23 14:16:54 jmmv Exp $
+# $NetBSD: Makefile,v 1.2 2013/10/18 23:41:40 jmmv Exp $
.include <bsd.init.mk>
@@ -6,7 +6,7 @@
.for name in kyua-build-root.7 kyua-test-filters.7
MAN+= ${name}
-${name}: ${name}.in
+${name}: ${name}.in ${MANPAGE_DEPS}
name=${name}; ${BUILD_MANPAGE}
.endfor
diff -r 7d8ebf758282 -r 2ae6a4bc4a4a external/bsd/kyua-cli/usr.bin/kyua/Makefile
--- a/external/bsd/kyua-cli/usr.bin/kyua/Makefile Fri Oct 18 23:40:04 2013 +0000
+++ b/external/bsd/kyua-cli/usr.bin/kyua/Makefile Fri Oct 18 23:41:40 2013 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2013/02/23 14:16:58 jmmv Exp $
+# $NetBSD: Makefile,v 1.2 2013/10/18 23:41:40 jmmv Exp $
KYUA_LIBS= cli engine store engine utils
@@ -17,7 +17,7 @@
kyua-debug.1 kyua-help.1 kyua-list.1 kyua-report-html.1 \
kyua-report.1 kyua-test.1 kyua.1
MAN+= ${name}
-${name}: ${name}.in
+${name}: ${name}.in ${MANPAGE_DEPS}
name=${name}; ${BUILD_MANPAGE}
.endfor
Home |
Main Index |
Thread Index |
Old Index