~ubuntu-branches/ubuntu/vivid/xtables-addons/vivid-proposed

« back to all changes in this revision

Viewing changes to .pc/skip-depmod.patch/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2014-02-10 13:05:36 UTC
  • mfrom: (1.3.12)
  • Revision ID: package-import@ubuntu.com-20140210130536-n4hxbw8397s4dj09
Tags: 2.4-1
* New upstream version [January 2014].
* Dropped no longer needed "skip-depmod.patch".
* Added "unzip, wget" to Recommends to satisfy `xt_geoip_dl`
  (Closes: #714654).
* Fixed FTBFS in m-a/xtables-addons-source (Closes: #730074).
* Standards to 3.9.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- Makefile -*-
2
 
 
3
 
ACLOCAL_AMFLAGS  = -I m4
4
 
SUBDIRS          = extensions geoip
5
 
 
6
 
man_MANS := xtables-addons.8
7
 
 
8
 
.PHONY: FORCE
9
 
FORCE:
10
 
 
11
 
xtables-addons.8: FORCE
12
 
        ${MAKE} -f Makefile.mans all;
13
 
 
14
 
install-exec-hook:
15
 
        depmod -a || :;
16
 
 
17
 
clean-local-mans:
18
 
        ${MAKE} -f Makefile.mans clean;
19
 
 
20
 
clean-local: clean-local-mans
21
 
 
22
 
config.status: Makefile.iptrules.in
23
 
 
24
 
tmpdir := $(shell mktemp -dtu)
25
 
packer  = xz
26
 
packext = .tar.xz
27
 
 
28
 
.PHONY: tarball
29
 
tarball:
30
 
# do not use mkdir_p here.
31
 
        mkdir ${tmpdir}
32
 
        pushd ${top_srcdir} && git archive --prefix=${PACKAGE_NAME}-${PACKAGE_VERSION}/ HEAD | tar -C ${tmpdir} -x && popd;
33
 
        pushd ${tmpdir}/${PACKAGE_NAME}-${PACKAGE_VERSION} && ./autogen.sh && popd;
34
 
        tar --use=${packer} -C ${tmpdir} -cf ${PACKAGE_NAME}-${PACKAGE_VERSION}${packext} --owner=root --group=root ${PACKAGE_NAME}-${PACKAGE_VERSION}/;
35
 
        rm -Rf ${tmpdir};