~ubuntu-branches/ubuntu/natty/libconfig-inifiles-perl/natty

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2010-10-16 17:21:21 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20101016172121-hfha61qoyx5o0mk4
Tags: 2.58-1
* New upstream release.
* Stop using svn-upgrade in watch file.
* Use source format 3.0 (quilt), and ease building with
  git-buildpackage: Git-ignore quilt .pc dir, and add source
  local-options.
* Drop locally included CDBS snippets, and local implementation of
  DEB_MAINTAINER_MODE, all included in main cdbs now.
* Ease backporting to Debian stable: Relax inclusion of CDBS snippets
  required only in DEB_MAINTAINER_MODE, and suppress related build-
  dependencies.
* Extend copyright years in rules file, and refer to FSF website (not
  postal address).
* Rewrite copyright file using draft rev135 of DEP5 format.
* Bump Policy compliance to standards-version 3.9.1.
* Shorten Vcs-* stanzas.
* Update DEB_UPSTREAM_URL, to fix get-orig-source rule.
* Build-depend on libtest-simple-perl.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- mode: makefile; coding: utf-8 -*-
2
 
# Copyright © 2004-2007 Jonas Smedegaard <dr@jones.dk>
3
 
# Description: Generate and include build information
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
 
_cdbs_scripts_path ?= /usr/lib/cdbs
21
 
_cdbs_rules_path ?= /usr/share/cdbs/1/rules
22
 
_cdbs_class_path ?= /usr/share/cdbs/1/class
23
 
 
24
 
ifndef _cdbs_rules_buildinfo
25
 
_cdbs_rules_buildinfo = 1
26
 
 
27
 
include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix)
28
 
 
29
 
CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), dh-buildinfo
30
 
 
31
 
common-install-arch common-install-indep:: debian/stamp-buildinfo
32
 
 
33
 
debian/stamp-buildinfo:
34
 
        dh_buildinfo
35
 
        touch debian/stamp-buildinfo
36
 
 
37
 
clean::
38
 
        rm -f debian/stamp-buildinfo
39
 
 
40
 
endif