Codebase list c2050 / 30bb5e2
Install apport-hook only in Ubuntu and derivatives Marco Nenciarini 12 years ago
3 changed file(s) with 12 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
00 usr/bin
11 usr/share/man/man1
2 usr/share/apport/package-hooks
0 c2050 (0.3b-3) unstable; urgency=low
1
2 * Install apport-hook only in Ubuntu and derivatives
3
4 -- Marco Nenciarini <mnencia@debian.org> Tue, 31 May 2011 11:27:39 +0200
5
06 c2050 (0.3b-2) unstable; urgency=low
17
28 * Merge changes from Ubuntu. (Closes: #539650, #601261, #626290)
33 # Uncomment this to turn on verbose mode.
44 #export DH_VERBOSE=1
55
6 derives_from_ubuntu := $(shell (dpkg-vendor --derives-from Ubuntu && echo "yes") || echo "no")
7
68 %:
79 dh $@
810
911 override_dh_install:
1012 dh_install
11 cp debian/local/apport-hook.py debian/c2050/usr/share/apport/package-hooks/source_c2050.py
13 ifeq ($(derives_from_ubuntu),yes)
14 # Install the apport hook on Ubuntu and derivatives
15 install -D -m 644 debian/local/apport-hook.py $(CURDIR)/debian/c2050/usr/share/apport/package-hooks/source_c2050.py
16 endif