~ubuntu-branches/ubuntu/intrepid/awstats/intrepid

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2007-08-27 17:52:52 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070827175252-g4kv9ufn3qoruqgb
Tags: 6.7.dfsg-1
* New upstream release. Closes: bug#436572, thanks to Daniel Baumann.
* Add XS-Vcs-Svn and XS-Vcs-Browser fields to debian/control.
* Fix standards-version in debian/control.in.
* Update CDBS tweaks:
  + Replace auto-update.mk with overloading buildcore.mk.
  + Check copyright strings in pre-build target (not clean target) to
    fix race condition.
  + Add upstream-tarball.mk to implement get-orig-source target.
  + Fix applying buildinfo only once.
  + Add debian/README.cdbs-tweaks and advertise it in debian/rules.
* Declare (and merge duplicate) build-dependencies in debian/rules.
  Declare all as Build-Depends (not Build-depends-Indep).
* Semi-auto-update debian/control:
    DEB_BUILD_OPTIONS=cdbs-autoupdate fakeroot debian/rules pre-build
* Update debian/copyright:
  + Include both copyright and licensing info verbatim.
  + Update to include the year 2007.
  + Refer explicitly to GPLv2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- mode: makefile; coding: utf-8 -*-
 
2
# Copyright © 2006 Jonas Smedegaard <dr@jones.dk>
 
3
# Description: Check for cdbs-autoupdate in DEB_BUILD_OPTIONS
 
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
include $(_cdbs_rules_path)/buildvars.mk$(_cdbs_makefile_suffix)
 
25
 
 
26
ifneq (,$(findstring cdbs-autoupdate,$(DEB_BUILD_OPTIONS)))
 
27
DEB_AUTO_UPDATE_DEBIAN_CONTROL = yes
 
28
endif
 
29
 
 
30
include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix)