~ubuntu-branches/ubuntu/utopic/gramps/utopic

« back to all changes in this revision

Viewing changes to src/plugins/drawreport/Makefile.in

  • Committer: Package Import Robot
  • Author(s): James A. Treacy
  • Date: 2012-05-22 17:18:36 UTC
  • mfrom: (39.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20120522171836-35fi62lp4w7jnrd7
Tags: 3.4.0-1
* New upstream version
* Updated desktop file. Closes: #667472

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
@SET_MAKE@
17
17
 
18
18
# This is the src/plugins/drawreport level Makefile for Gramps
 
19
# $Id: Makefile.am 18851 2012-02-10 20:25:15Z josipsf $
19
20
# We could use GNU make's ':=' syntax for nice wildcard use,
20
21
# but that is not necessarily portable.
21
22
# If not using GNU make, then list all .py files individually
22
23
VPATH = @srcdir@
 
24
pkgdatadir = $(datadir)/@PACKAGE@
23
25
pkgincludedir = $(includedir)/@PACKAGE@
24
26
pkglibdir = $(libdir)/@PACKAGE@
25
27
pkglibexecdir = $(libexecdir)/@PACKAGE@
36
38
PRE_UNINSTALL = :
37
39
POST_UNINSTALL = :
38
40
subdir = src/plugins/drawreport
39
 
DIST_COMMON = $(pkgdata_PYTHON) $(srcdir)/Makefile.am \
 
41
DIST_COMMON = $(pkgpython_PYTHON) $(srcdir)/Makefile.am \
40
42
        $(srcdir)/Makefile.in
41
43
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
42
44
am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
69
71
am__base_list = \
70
72
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
71
73
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
72
 
am__installdirs = "$(DESTDIR)$(pkgdatadir)"
 
74
am__installdirs = "$(DESTDIR)$(pkgpythondir)"
73
75
py_compile = $(top_srcdir)/py-compile
74
76
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
75
 
pkgdatadir = $(datadir)/@PACKAGE@/plugins/drawreport
76
77
ACLOCAL = @ACLOCAL@
77
78
ALL_LINGUAS = @ALL_LINGUAS@
78
79
AMTAR = @AMTAR@
181
182
oldincludedir = @oldincludedir@
182
183
pdfdir = @pdfdir@
183
184
pkgpyexecdir = @pkgpyexecdir@/plugins/drawreport
184
 
pkgpythondir = @pkgpythondir@/plugins/drawreport
 
185
pkgpythondir = $(datadir)/@PACKAGE@/plugins/drawreport
185
186
prefix = @prefix@
186
187
program_transform_name = @program_transform_name@
187
188
psdir = @psdir@
195
196
top_build_prefix = @top_build_prefix@
196
197
top_builddir = @top_builddir@
197
198
top_srcdir = @top_srcdir@
198
 
pkgdata_PYTHON = \
 
199
pkgpython_PYTHON = \
199
200
        AncestorTree.py \
200
201
        Calendar.py\
201
202
        DescendTree.py \
241
242
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
242
243
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
243
244
$(am__aclocal_m4_deps):
244
 
install-pkgdataPYTHON: $(pkgdata_PYTHON)
 
245
install-pkgpythonPYTHON: $(pkgpython_PYTHON)
245
246
        @$(NORMAL_INSTALL)
246
 
        test -z "$(pkgdatadir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)"
247
 
        @list='$(pkgdata_PYTHON)'; dlist=; list2=; test -n "$(pkgdatadir)" || list=; \
 
247
        test -z "$(pkgpythondir)" || $(MKDIR_P) "$(DESTDIR)$(pkgpythondir)"
 
248
        @list='$(pkgpython_PYTHON)'; dlist=; list2=; test -n "$(pkgpythondir)" || list=; \
248
249
        for p in $$list; do \
249
250
          if test -f "$$p"; then b=; else b="$(srcdir)/"; fi; \
250
251
          if test -f $$b$$p; then \
255
256
        done; \
256
257
        for file in $$list2; do echo $$file; done | $(am__base_list) | \
257
258
        while read files; do \
258
 
          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgdatadir)'"; \
259
 
          $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgdatadir)" || exit $$?; \
 
259
          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgpythondir)'"; \
 
260
          $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgpythondir)" || exit $$?; \
260
261
        done || exit $$?; \
261
262
        if test -n "$$dlist"; then \
262
263
          if test -z "$(DESTDIR)"; then \
263
 
            PYTHON=$(PYTHON) $(py_compile) --basedir "$(pkgdatadir)" $$dlist; \
 
264
            PYTHON=$(PYTHON) $(py_compile) --basedir "$(pkgpythondir)" $$dlist; \
264
265
          else \
265
 
            PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(pkgdatadir)" $$dlist; \
 
266
            PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(pkgpythondir)" $$dlist; \
266
267
          fi; \
267
268
        else :; fi
268
269
 
269
 
uninstall-pkgdataPYTHON:
 
270
uninstall-pkgpythonPYTHON:
270
271
        @$(NORMAL_UNINSTALL)
271
 
        @list='$(pkgdata_PYTHON)'; test -n "$(pkgdatadir)" || list=; \
 
272
        @list='$(pkgpython_PYTHON)'; test -n "$(pkgpythondir)" || list=; \
272
273
        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
273
274
        test -n "$$files" || exit 0; \
274
275
        filesc=`echo "$$files" | sed 's|$$|c|'`; \
275
276
        fileso=`echo "$$files" | sed 's|$$|o|'`; \
276
 
        echo " ( cd '$(DESTDIR)$(pkgdatadir)' && rm -f" $$files ")"; \
277
 
        cd "$(DESTDIR)$(pkgdatadir)" && rm -f $$files || exit $$?; \
278
 
        echo " ( cd '$(DESTDIR)$(pkgdatadir)' && rm -f" $$filesc ")"; \
279
 
        cd "$(DESTDIR)$(pkgdatadir)" && rm -f $$filesc || exit $$?; \
280
 
        echo " ( cd '$(DESTDIR)$(pkgdatadir)' && rm -f" $$fileso ")"; \
281
 
        cd "$(DESTDIR)$(pkgdatadir)" && rm -f $$fileso
 
277
        echo " ( cd '$(DESTDIR)$(pkgpythondir)' && rm -f" $$files ")"; \
 
278
        cd "$(DESTDIR)$(pkgpythondir)" && rm -f $$files || exit $$?; \
 
279
        echo " ( cd '$(DESTDIR)$(pkgpythondir)' && rm -f" $$filesc ")"; \
 
280
        cd "$(DESTDIR)$(pkgpythondir)" && rm -f $$filesc || exit $$?; \
 
281
        echo " ( cd '$(DESTDIR)$(pkgpythondir)' && rm -f" $$fileso ")"; \
 
282
        cd "$(DESTDIR)$(pkgpythondir)" && rm -f $$fileso
282
283
tags: TAGS
283
284
TAGS:
284
285
 
320
321
check: check-am
321
322
all-am: Makefile
322
323
installdirs:
323
 
        for dir in "$(DESTDIR)$(pkgdatadir)"; do \
 
324
        for dir in "$(DESTDIR)$(pkgpythondir)"; do \
324
325
          test -z "$$dir" || $(MKDIR_P) "$$dir"; \
325
326
        done
326
327
install: install-am
369
370
 
370
371
info-am:
371
372
 
372
 
install-data-am: install-pkgdataPYTHON
 
373
install-data-am: install-pkgpythonPYTHON
373
374
 
374
375
install-dvi: install-dvi-am
375
376
 
413
414
 
414
415
ps-am:
415
416
 
416
 
uninstall-am: uninstall-pkgdataPYTHON
 
417
uninstall-am: uninstall-pkgpythonPYTHON
417
418
 
418
419
.MAKE: install-am install-strip
419
420
 
422
423
        install install-am install-data install-data-am install-dvi \
423
424
        install-dvi-am install-exec install-exec-am install-html \
424
425
        install-html-am install-info install-info-am install-man \
425
 
        install-pdf install-pdf-am install-pkgdataPYTHON install-ps \
 
426
        install-pdf install-pdf-am install-pkgpythonPYTHON install-ps \
426
427
        install-ps-am install-strip installcheck installcheck-am \
427
428
        installdirs maintainer-clean maintainer-clean-generic \
428
429
        mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \
429
 
        uninstall-am uninstall-pkgdataPYTHON
 
430
        uninstall-am uninstall-pkgpythonPYTHON
430
431
 
431
432
 
432
433
pycheck: 
433
434
        (export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
434
 
        pychecker $(pkgdata_PYTHON));
 
435
        pychecker $(pkgpython_PYTHON));
435
436
 
436
437
# Tell versions [3.59,3.63) of GNU make to not export all variables.
437
438
# Otherwise a system limit (for SysV at least) may be exceeded.