DRAFT cppunit: Upgrade to v1.14.0
This commit is contained in:
parent
4e02cee1a7
commit
3bf2b08d33
|
@ -3,12 +3,12 @@ HOMEPAGE = "http://www.freedesktop.org/wiki/Software/cppunit"
|
||||||
LICENSE = "LGPL-2.1"
|
LICENSE = "LGPL-2.1"
|
||||||
SECTION = "libs"
|
SECTION = "libs"
|
||||||
|
|
||||||
LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34"
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b0e9ef921ff780eb328bdcaeebec3269"
|
||||||
SRC_URI = " \
|
SRC_URI = " \
|
||||||
http://dev-www.libreoffice.org/src/cppunit-${PV}.tar.gz \
|
http://dev-www.libreoffice.org/src/cppunit-${PV}.tar.gz \
|
||||||
file://0001-doc-Makefile.am-do-not-preserve-file-flags-when-copy.patch \
|
file://0001-doc-Makefile.am-do-not-preserve-file-flags-when-copy.patch \
|
||||||
"
|
"
|
||||||
SRC_URI[md5sum] = "d1c6bdd5a76c66d2c38331e2d287bc01"
|
SRC_URI[md5sum] = "7ad93022171710a541bfe4bfd8b4a381"
|
||||||
SRC_URI[sha256sum] = "3f47d246e3346f2ba4d7c9e882db3ad9ebd3fcbd2e8b732f946e0e3eeb9f429f"
|
SRC_URI[sha256sum] = "3d569869d27b48860210c758c4f313082103a5e58219a7669b52bfd29d674780"
|
||||||
|
|
||||||
inherit autotools
|
inherit autotools
|
|
@ -1,4 +1,4 @@
|
||||||
From 9d7ce869607d123cd9837890d71f940c5ced3393 Mon Sep 17 00:00:00 2001
|
From 2c2fcfb2ff9408550c3f0da2d2f09caeb64b9013 Mon Sep 17 00:00:00 2001
|
||||||
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
|
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
|
||||||
Date: Mon, 29 Feb 2016 07:58:20 +0100
|
Date: Mon, 29 Feb 2016 07:58:20 +0100
|
||||||
Subject: [PATCH] doc/Makefile.am: do not preserve file flags when copying
|
Subject: [PATCH] doc/Makefile.am: do not preserve file flags when copying
|
||||||
|
@ -14,18 +14,15 @@ Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
diff --git a/doc/Makefile.am b/doc/Makefile.am
|
diff --git a/doc/Makefile.am b/doc/Makefile.am
|
||||||
index 8815476..3237499 100644
|
index d0c25ee..66acc90 100644
|
||||||
--- a/doc/Makefile.am
|
--- a/doc/Makefile.am
|
||||||
+++ b/doc/Makefile.am
|
+++ b/doc/Makefile.am
|
||||||
@@ -22,7 +22,7 @@ htmldir += $(pkgdatadir)/html
|
@@ -8,7 +8,7 @@ htmldir += $(pkgdatadir)/html
|
||||||
html_DATA += $(static_pages) html/index.html
|
html_DATA += $(static_pages) html/index.html
|
||||||
|
|
||||||
install-data-hook:
|
install-data-hook:
|
||||||
- cp -pR html/* $(DESTDIR)$(htmldir)
|
- cp -pR html/* $(DESTDIR)$(htmldir)
|
||||||
+ cp -R html/* $(DESTDIR)$(htmldir)
|
+ cp -R html/* $(DESTDIR)$(htmldir)
|
||||||
|
|
||||||
# Automake's "distcheck" is sensitive to having files left over
|
uninstall-local:
|
||||||
# after "make uninstall", so we have to clean up the install hook.
|
rm -rf $(DESTDIR)$(htmldir)
|
||||||
--
|
|
||||||
2.5.0
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue