~ubuntu-branches/ubuntu/feisty/basilisk2/feisty

« back to all changes in this revision

Viewing changes to debian/cdbs/1/rules/bts.mk

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2005-07-30 20:42:20 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050730204220-1nl1cg2jkjvy63ry
Tags: 0.9.20050730-1
* New upstream CVS snapshot.
* Build-depend on virtual libsdl-dev (not libsdl1.2-dev).
* Invoke init rules also on clean (to separate better from official
  builds).
* Update URL of upstream source in debian/copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- mode: makefile; coding: utf-8 -*-
 
2
# Copyright © 2004 Jonas Smedegaard <dr@jones.dk>
 
3
# Description: Install control files for the Debian Bug Tracking System
 
4
#
 
5
# This program is free software; you can redistribute it and/or
 
6
# modify it under the terms of the GNU General Public License as
 
7
# published by the Free Software Foundation; either version 2, or (at
 
8
# your option) any later version.
 
9
#
 
10
# This program is distributed in the hope that it will be useful, but
 
11
# WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
# General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU General Public License
 
16
# along with this program; if not, write to the Free Software
 
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 
18
# 02111-1307 USA.
 
19
 
 
20
 
 
21
ifndef _cdbs_bootstrap
 
22
_cdbs_scripts_path ?= /usr/lib/cdbs
 
23
_cdbs_rules_path ?= /usr/share/cdbs/1/rules
 
24
_cdbs_class_path ?= /usr/share/cdbs/1/class
 
25
endif
 
26
 
 
27
ifndef _cdbs_class_bts
 
28
_cdbs_class_bts := 1
 
29
 
 
30
include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix)
 
31
 
 
32
$(patsubst %,install/%,$(DEB_ALL_PACKAGES)) :: install/% :
 
33
        @if test -e "debian/$(cdbs_curpkg).bts" || test -e "debian/bts" || test -n "$(DEBEMAIL)"; then \
 
34
                mkdir -p "debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)"; \
 
35
                        if test -e "debian/$(cdbs_curpkg).bts"; then \
 
36
                        install "debian/$(cdbs_curpkg).bts" "debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/bts"; \
 
37
                elif test -e "debian/bts"; then \
 
38
                        install "debian/bts" "debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/bts"; \
 
39
                elif test -n "$(DEBEMAIL)"; then \
 
40
                        echo "Send-To: $(DEBEMAIL)" > "debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/bts"; \
 
41
                fi; \
 
42
        else \
 
43
                echo "DEBEMAIL unset and no bts file for $(cdbs_curpkg); not diverting"; \
 
44
        fi
 
45
 
 
46
endif