~ubuntu-branches/ubuntu/vivid/libicns/vivid

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Package Import Robot
  • Author(s): Paul Wise, Mathew Eis, Paul Wise
  • Date: 2012-06-14 10:16:49 UTC
  • mfrom: (1.1.3)
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: package-import@ubuntu.com-20120614101649-7e9vuqyd686l0h3z
[ Mathew Eis ]
* New upstream release
  - No longer crashes on ARM/SPARC (Closes: #612698)
  - Understands 'odrp' type (Closes: #614031)
  - Fails with non-zero return code (Closes: #614028)
  - Fixes FTBFS with newer libpng (Closes: #635952)
* debian/control
  - Bump to 3.9.3 Standards-Version (no change needed).

[ Paul Wise ]
* Include changes from Debian NMU
* Wrap and sort various files using wrap-and-sort -s
* Compile against libjpeg-dev instead of the old version (Closes: #643316)
* Compile against libpng-dev instead of the old version (Closes: #662403)
* Adjust the watch file to only look for release versions
* Switch to debhelper compat 9 and dh tiny rules
* Drop autotools_dev and use dh-autoreconf
* Switch to dpkg-source v3
* Use multi-arch paths and fields
* Add myself to uploaders
* Add Vcs-* headers
* Also install the API docs, drop from lib package
* Switch to Debian copyright format 1.0 for the source Debian copyright file

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
  samples/test2.rsrc \
10
10
  samples/test3.bin \
11
11
  @PACKAGE@.spec.in \
 
12
  COPYING.LGPL-2 \
 
13
  COPYING.LGPL-2.1 \
 
14
  README.install \
 
15
  DEVNOTES \
12
16
  MANIFEST.sources
13
17
 
14
18
rpm: @PACKAGE@.spec
16
20
 
17
21
distclean-local:
18
22
        -rm -f @PACKAGE@.spec
 
23
 
 
24
MAINTAINERCLEANFILES = \
 
25
  m4/lt~obsolete.m4 \
 
26
  m4/ltoptions.m4 \
 
27
  m4/ltversion.m4 \
 
28
  m4/ltsugar.m4 \
 
29
  m4/libtool.m4 \
 
30
  INSTALL \
 
31
  config.h.in \
 
32
  config.h.in~ \
 
33
  aclocal.m4 \
 
34
  config.guess \
 
35
  config.sub \
 
36
  configure \
 
37
  depcomp \
 
38
  install-sh \
 
39
  ltmain.sh \
 
40
  missing \
 
41
  Makefile.in
 
42
 
 
43
dist-hook:
 
44
        if test ! -e $(distdir)/ChangeLog -o \( $$(wc -l < $(distdir)/ChangeLog) -eq 1 -a -w $(distdir)/ChangeLog \) ; then \
 
45
                if test -d .git ; then \
 
46
                        LC_ALL=C git log --pretty --numstat --summary $(VERSION) | git2cl > $(distdir)/ChangeLog ; \
 
47
                elif test -d .svn ; then \
 
48
                        svn2cl -o $(distdir)/ChangeLog ; \
 
49
                fi \
 
50
        fi