chiark / gitweb /
Update copyright notices in many files
[dgit.git] / debian / rules
index 614fb7a55e0d465134b82d9dc63ad41390b23acd..9c2afb38b2ce68ae7634f51902230cc2428db50e 100755 (executable)
@@ -3,7 +3,8 @@
 # dgit
 # Integration between git and Debian-style archives
 #
-# Copyright (C)2013-2016 Ian Jackson
+# Copyright (C)2013-2019 Ian Jackson
+# Copyright (C)2019      Sean Whitton
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -36,10 +37,18 @@ override_dh_auto_clean:
 
 globalperl=/usr/share/perl5
 
-override_dh_auto_install: specpkg_install_gdr specpkg_install_infra
+override_dh_auto_install: specpkg_install_gdp \
+ specpkg_install_gdr \
+ specpkg_install_infra
        make install prefix=/usr DESTDIR=debian/dgit
        make -C po install prefix=/usr DESTDIR=../debian/tmp \
                SUPPRESS_PO_UPDATE=1 S=''
+       make -C po4a install DESTDIR=../debian/tmp S=''
+
+override_dh_missing:
+       dh_missing --fail-missing
+
+specpkg_install_gdp: p=git-debpush
 
 specpkg_install_gdr: p=git-debrebase
 specpkg_install_gdr: pm=GDR
@@ -47,10 +56,19 @@ specpkg_install_gdr: pm=GDR
 specpkg_install_infra: p=dgit-infrastructure
 specpkg_install_infra: pm=Infra
 
+define specpkg_install_common
+       make install-$(tok) prefix=/usr DESTDIR=debian/$(p) perldir=$(specperl)
+endef
+
+specpkg_install_gdp: tok=gdp
+specpkg_install_gdp: specperl=/usr/share/dgit/gdp/perl5
+specpkg_install_gdp:
+       $(specpkg_install_common)
+
 specpkg_install_%: tok=$*
 specpkg_install_%: specperl=/usr/share/dgit/$(tok)/perl5
 specpkg_install_%:
-       make install-$(tok) prefix=/usr DESTDIR=debian/$(p) perldir=$(specperl)
+       $(specpkg_install_common)
 #      # Most of the Perl modules in this package live in
 #      # $(specperl).  The exception is Debian::Dgit::Infra, which
 #      # lives in $(globalperl) and adds $(specperl) to @INC.