~ubuntu-branches/ubuntu/trusty/csound-manual/trusty-proposed

« back to all changes in this revision

Viewing changes to debian/cdbs/1/rules/package-relations.mk

  • Committer: Bazaar Package Importer
  • Author(s): Felipe Sateler
  • Date: 2011-08-01 22:21:58 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110801222158-90kslkp5ujci2f5d
Tags: 1:5.13~dfsg-1
* New upstream release
 - Add Menno Knevel to the copyright file
 - Refresh patch 2000-stripped-opcodes.diff
 - Update copyright hints file
* Update Vcs-* headers
* Bump Standards-Version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- mode: makefile; coding: utf-8 -*-
2
 
# Copyright © 2008 Jonas Smedegaard <dr@jones.dk>
3
 
# Description: Resolve, cleanup and apply package relationships
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_package_relations
25
 
_cdbs_rules_package_relations = 1
26
 
 
27
 
include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix)
28
 
 
29
 
# Merge build-dependencies on same packages
30
 
# TODO: rewrite (in perl, probably) to be more generic
31
 
CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bcdbs (>= 0.4.43)/ s/ *,* *\bcdbs (>= \(0.4.23-1.1\|0.4.27\|0.4.39\)) *,* */, /g')
32
 
CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bcdbs (>= 0.4.39)/ s/ *,* *\bcdbs (>= \(0.4.23-1.1\|0.4.27\)) *,* */, /g')
33
 
CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bcdbs (>= 0.4.27)/ s/ *,* *\bcdbs (>= \(0.4.23-1.1\)) *,* */, /g')
34
 
CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bdebhelper (>= 7.0.1)/ s/ *,* *\bdebhelper (>= \(4.1.60\|4.2.0\|4.2.21\|4.2.28\|5\|5.0.37.2\|5.0.44\|6\)) *,* */, /g')
35
 
CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bdebhelper (>= 6)/ s/ *,* *\bdebhelper (>= \(4.1.60\|4.2.0\|4.2.21\|4.2.28\|5\|5.0.37.2\|5.0.44\)) *,* */, /g')
36
 
CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bdebhelper (>= 5.0.44)/ s/ *,* *\bdebhelper (>= \(4.1.60\|4.2.0\|4.2.21\|4.2.28\|5\|5.0.37.2\)) *,* */, /g')
37
 
CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bdebhelper (>= 5.0.37.2)/ s/ *,* *\bdebhelper (>= \(4.1.60\|4.2.0\|4.2.21\|4.2.28\|5\)) *,* */, /g')
38
 
CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bdebhelper (>= 5)/ s/ *,* *\bdebhelper (>= \(4.1.60\|4.2.0\|4.2.21\|4.2.28\)) *,* */, /g')
39
 
CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bdebhelper (>= 4.2.28)/ s/ *,* *\bdebhelper (>= \(4.1.60\|4.2.0\|4.2.21\)) *,* */, /g')
40
 
CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bdebhelper (>= 4.2.21)/ s/ *,* *\bdebhelper (>= \(4.1.60\|4.2.0\)) *,* */, /g')
41
 
CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bdebhelper (>= 4.2.0)/ s/ *,* *\bdebhelper (>= \(4.1.60\)) *,* */, /g')
42
 
 
43
 
# Cleanup superfluous commas
44
 
CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e 's/ *,/,/g' -e 's/^ *, *//' -e 's/ *, *$$//')
45
 
 
46
 
# Apply CDBS-declared dependencies to binary packages
47
 
$(patsubst %,binary-predeb/%,$(DEB_PACKAGES)) :: binary-predeb/%:
48
 
        echo 'cdbs:Depends=$(CDBS_DEPENDS_ALL), $(or $(CDBS_DEPENDS_$(cdbs_curpkg)),$(CDBS_DEPENDS))' \
49
 
          | sed -e 's/ *,/,/g' -e 's/^ *, *//' -e 's/ *, *$$//' \
50
 
          >> debian/$(cdbs_curpkg).substvars
51
 
        echo 'cdbs:Pre-Depends=$(CDBS_PREDEPENDS_ALL), $(or $(CDBS_PREDEPENDS_$(cdbs_curpkg)),$(CDBS_PREDEPENDS))' \
52
 
          | sed -e 's/ *,/,/g' -e 's/^ *, *//' -e 's/ *, *$$//' \
53
 
          >> debian/$(cdbs_curpkg).substvars
54
 
        echo 'cdbs:Recommends=$(CDBS_RECOMMENDS_ALL), $(or $(CDBS_RECOMMENDS_$(cdbs_curpkg)),$(CDBS_RECOMMENDS))' \
55
 
          | sed -e 's/ *,/,/g' -e 's/^ *, *//' -e 's/ *, *$$//' \
56
 
          >> debian/$(cdbs_curpkg).substvars
57
 
        echo 'cdbs:Suggests=$(CDBS_SUGGESTS_ALL), $(or $(CDBS_SUGGESTS_$(cdbs_curpkg)),$(CDBS_SUGGESTS))' \
58
 
          | sed -e 's/ *,/,/g' -e 's/^ *, *//' -e 's/ *, *$$//' \
59
 
          >> debian/$(cdbs_curpkg).substvars
60
 
        echo 'cdbs:Breaks=$(CDBS_BREAKS_ALL), $(or $(CDBS_BREAKS_$(cdbs_curpkg)),$(CDBS_BREAKS))' \
61
 
          | sed -e 's/ *,/,/g' -e 's/^ *, *//' -e 's/ *, *$$//' \
62
 
          >> debian/$(cdbs_curpkg).substvars
63
 
        echo 'cdbs:Provides=$(CDBS_PROVIDES_ALL), $(or $(CDBS_PROVIDES_$(cdbs_curpkg)),$(CDBS_PROVIDES))' \
64
 
          | sed -e 's/ *,/,/g' -e 's/^ *, *//' -e 's/ *, *$$//' \
65
 
          >> debian/$(cdbs_curpkg).substvars
66
 
        echo 'cdbs:Replaces=$(CDBS_REPLACES_ALL), $(or $(CDBS_REPLACES_$(cdbs_curpkg)),$(CDBS_REPLACES))' \
67
 
          | sed -e 's/ *,/,/g' -e 's/^ *, *//' -e 's/ *, *$$//' \
68
 
          >> debian/$(cdbs_curpkg).substvars
69
 
        echo 'cdbs:Conflicts=$(CDBS_CONFLICTS_ALL), $(or $(CDBS_CONFLICTS_$(cdbs_curpkg)),$(CDBS_CONFLICTS))' \
70
 
          | sed -e 's/ *,/,/g' -e 's/^ *, *//' -e 's/ *, *$$//' \
71
 
          >> debian/$(cdbs_curpkg).substvars
72
 
        echo 'cdbs:Enhances=$(CDBS_ENHANCES_ALL), $(or $(CDBS_ENHANCES_$(cdbs_curpkg)),$(CDBS_ENHANCES))' \
73
 
          | sed -e 's/ *,/,/g' -e 's/^ *, *//' -e 's/ *, *$$//' \
74
 
          >> debian/$(cdbs_curpkg).substvars
75
 
 
76
 
endif