~ubuntu-branches/debian/sid/apophenia/sid

« back to all changes in this revision

Viewing changes to cmd/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Jerome Benoit
  • Date: 2014-09-11 12:36:28 UTC
  • Revision ID: package-import@ubuntu.com-20140911123628-4a3h0ko7fns8nq21
Tags: 0.999b+ds1-1
* Initial release (Closes: #755493).
* Debianization:
  - debian/copyright in DEP-5 format;
  - debian/control:
    - debhelper build-dep to >= 9;
    - Standards Version 3.9.5;
    - Vcs-* headers.
  - debian/source, format 3.0 (quilt);
  - debian/patches/ patches in DEP-3 format;
  - debian/watch file;
  - debian/repack, repack script to clean up and gain weight;
  - debian/rules:
    - autoreconf-iguration;
    - full and minal dh integration;
    - hardened dh_auto_clean;
    - get-orig-source uscan based target which downloads the currently
      packaged upstream tarball and repacks it;
    - default target which basically queries package status with uscan
      -- output in DEHS format;
  - gpg-signature check support, neutralize;
  - ad hoc script to build/clean the upstream source examples, provide.
* Fixes, enhancements, request for a better autotools machinery support
  (more rational, passing the `make distcheck' test, explicit gnulib
  support) and bug reports were submitted and have been integrated or
  discussed; thanks to the upstream maintainer.
* Wipe out library exit calls (shlib-calls-exit Lintian tag).

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
        -I $(top_srcdir) \
9
9
        $(GSL_CFLAGS)
10
10
 
 
11
man_MANS = \
 
12
        apop_text_to_db.1 \
 
13
        apop_db_to_crosstab.1 \
 
14
        apop_plot_query.1
 
15
 
11
16
LDADD = \
12
17
        $(top_builddir)/libapophenia.la \
13
18
        $(GSL_LIBS)
14
19
 
 
20
AM_H2MFLAGS = \
 
21
        --manual="Apophenia" \
 
22
        --version-string="$(PACKAGE_VERSION)" \
 
23
        --source="Apophenia (Debian $(DEB_PKG_VERSION))" \
 
24
        --libtool \
 
25
        --no-info
 
26
 
 
27
%.1: %
 
28
        $(HELP2MAN) \
 
29
                        -s 1 \
 
30
                        $(AM_H2MFLAGS) \
 
31
                        -I $(top_srcdir)/debian/man/$(subst nauty-,,$*).h2m \
 
32
                        -n $(if $($(subst -,_,$*)_DESCRIPTION), $($(subst -,_,$*)_DESCRIPTION), "manual page for $*") \
 
33
                        -o $@ \
 
34
                $(top_builddir)/cmd/$<
 
35
 
 
36
## short descriptions inspired from the header of the C source files
 
37
apop_text_to_db_DESCRIPTION =     "command line utility to convert a text file into a database table"
 
38
apop_db_to_crosstab_DESCRIPTION = "command line utility to convert a three-column table to a crosstab"
 
39
apop_plot_query_DESCRIPTION =     "command line utility to take in a query and put out a Gnuplot table file"
 
40
 
 
41
CLEANFILES = \
 
42
        $(man_MANS)