Files
gentoo/dev-util/mdds/files/mdds-1.5.0-buildsystem.patch
Nils Freydank 9d366f6c2a dev-util/mdds: Bump to 1.5.0
Note: Avoid the bump to 1.6.0 as upstream forgot to bump the version in paths.

This bump also updates general ebuild style, adds the QA test for
tests and drops the src_compile() function.

Package-Manager: Portage-2.3.93, Repoman-2.3.20
Signed-off-by: Nils Freydank <holgersson@posteo.de>
Closes: https://github.com/gentoo/gentoo/pull/14825
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
2020-03-16 22:25:43 +01:00

40 lines
1006 B
Diff

# Nils Freydank <holgersson@posteo.de> (2020-01-08)
Avoid auto installation of files we install later manually.
Adopted from asturm's patch for mdds-1.4.3.
--- a/Makefile.am 2020-02-08 20:00:00.000000000 +0100
+++ b/Makefile.am 2020-02-08 20:00:00.000000001 +0100
@@ -4,7 +4,6 @@
AM_CPPFLAGS = -I$(top_srcdir)/include $(CXXFLAGS_UNITTESTS)
-dist_doc_DATA = AUTHORS README.md
nodist_pkgconf_DATA = misc/mdds-@API_VERSION@.pc
DISTCLEANFILES = \
@@ -14,8 +13,6 @@
EXTRA_DIST = \
autogen.sh \
- CHANGELOG \
- LICENSE \
doc/conf.py \
doc/doxygen.conf \
doc/flat_segment_tree.rst \
@@ -164,14 +161,6 @@
rtree_test_bulkload_mem.mem
endif
-install-data-local:
- $(MKDIR_P) $(DESTDIR)$(docdir)
- $(INSTALL_DATA) $(top_srcdir)/LICENSE $(DESTDIR)$(docdir)/COPYING
- $(INSTALL_DATA) $(top_srcdir)/CHANGELOG $(DESTDIR)$(docdir)/NEWS
-
-uninstall-local:
- rm -f $(DESTDIR)$(docdir)/COPYING $(DESTDIR)$(docdir)/NEWS
-
if BUILD_DOCS
html-local:
(cd doc && $(DOXYGEN) doxygen.conf)