diff options
| author | Rene Engelhard <rene@debian.org> | 2017-07-29 18:54:12 +0200 |
|---|---|---|
| committer | git-ubuntu importer <ubuntu-devel-discuss@lists.ubuntu.com> | 2017-07-30 16:30:05 +0000 |
| commit | 991bfe89bf29cd615ba5041d79d4f591301e2952 (patch) | |
| tree | a72b563baa721faf1c563847f5780875c1c397b1 | |
| parent | ef6e5ad6e4639bdfe78183eef9f87e7644bb39fa (diff) | |
1.14.0-3 (patches unapplied)import/1.14.0-3ubuntu/disco-develubuntu/discoubuntu/cosmic-develubuntu/cosmicubuntu/bionic-develubuntu/bionicubuntu/artful-proposedubuntu/artful-develubuntu/artfuldebian/buster
Imported using git-ubuntu import.
Notes
Notes:
* move docs build into build-indep and doxygen to Build-Depends-Indep:
(closes: #870028)
| -rw-r--r-- | debian/changelog | 7 | ||||
| -rw-r--r-- | debian/control | 3 | ||||
| -rwxr-xr-x | debian/rules | 13 |
3 files changed, 22 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 0b25ea7..28fe961 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +cppunit (1.14.0-3) unstable; urgency=medium + + * move docs build into build-indep and doxygen to Build-Depends-Indep: + (closes: #870028) + + -- Rene Engelhard <rene@debian.org> Sat, 29 Jul 2017 18:54:12 +0200 + cppunit (1.14.0-2) unstable; urgency=medium * upload to unstable diff --git a/debian/control b/debian/control index 675e5c1..b57a52b 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,8 @@ Section: devel Priority: optional Maintainer: Debian LibreOffice Maintainers <debian-openoffice@lists.debian.org> Uploaders: Rene Engelhard <rene@debian.org>, Steve M. Robbins <smr@debian.org> -Build-Depends: debhelper (>= 9), doxygen, dh-autoreconf +Build-Depends: debhelper (>= 9), dh-autoreconf +Build-Depends-Indep: doxygen Standards-Version: 3.9.5 Package: libcppunit-1.14-0 diff --git a/debian/rules b/debian/rules index 91e69da..36bde63 100755 --- a/debian/rules +++ b/debian/rules @@ -5,6 +5,19 @@ include /usr/share/dpkg/architecture.mk %: dh $@ --parallel --with autoreconf +override_dh_auto_build-arch: + dh_auto_configure -- --disable-html-docs --disable-doxygen + dh_auto_build + +override_dh_auto_build-indep: + dh_auto_configure + cd doc && $(MAKE) + +override_dh_auto_test: + if [ -f ./src/cppunit/.libs/libcppunit.so ]; then dh_auto_test; fi + +override_dh_auto_install: + if [ -f ./src/cppunit/.libs/libcppunit.so ]; then dh_auto_install; fi override_dh_install-arch: # Runtime library package |
