~ubuntu-branches/ubuntu/trusty/config-package-dev/trusty-proposed

« back to all changes in this revision

Viewing changes to examples/cdbs/debathena-conffile-example-1.1/debian/rules

  • Committer: Package Import Robot
  • Author(s): Geoffrey Thomas
  • Date: 2013-03-06 17:14:42 UTC
  • Revision ID: package-import@ubuntu.com-20130306171442-k3sj6klfu28zghqr
Tags: 5.0
* Add Debhelper support (Debathena: #867) (Closes: #693672).  This
  release includes a new command, dh_configpackage, and a sequencer
  extension, dh --with config-package.
* Use the terms "displace" and "hide" for actions of the
  config-package-dev system, instead of the terms "divert" and
  "remove", which already have existing (related) meanings in the
  context of Debian packages.
* Move examples/* to examples/cdbs/*, and create examples/debhelper/*,
  with the same packages using Debhelper 7-style packaging.

* Change config-package-dev's own packaging to Debhelper 7.
* Bump Standards-Version to 3.9.4 (no changes required).
* Update Vcs-Git and Vcs-Browser locations to new upstream.
* Drop CDBS runtime dependency. CDBS users should be explicitly
  Build-Depending on CDBS, probably through use of the @cdbs@ macro in
  debian/control.in.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
 
 
3
DEB_DISPLACE_EXTENSION = .debathena
 
4
# Replace some base files with simple replacements.
 
5
DEB_DISPLACE_FILES_debathena-conffile-example += \
 
6
        /etc/issue.net.debathena
 
7
# These files are installed via dh_install from the files/ directory
 
8
# (see debian/debathena-conffile-example.install)
 
9
 
 
10
ifneq ($(wildcard /etc/sysctl.d/10-ptrace.conf),)
 
11
    DEB_HIDE_FILES_debathena-conffile-example += \
 
12
        /etc/sysctl.d/10-ptrace.conf
 
13
endif
 
14
 
 
15
include /usr/share/cdbs/1/rules/debhelper.mk
 
16
include /usr/share/cdbs/1/rules/config-package.mk