Move all quick views into plugins/quickview.

svn: r11635
This commit is contained in:
Brian Matherly
2009-01-16 21:39:51 +00:00
parent 96f9411caa
commit a12989719b
17 changed files with 48 additions and 22 deletions

View File

@@ -4,19 +4,17 @@
# If not using GNU make, then list all .py files individually
SUBDIRS = \
drawreport \
quickview \
rel \
tool
pkgdatadir = $(datadir)/@PACKAGE@/plugins
pkgdata_PYTHON = \
all_events.py\
all_relations.py\
AgeOnDate.py\
AgeStats.py\
AncestorTree.py\
AncestorReport.py\
AttributeMatch.py\
AttributesGramplet.py\
BookReport.py\
Calendar.py \
@@ -39,7 +37,6 @@ pkgdata_PYTHON = \
ExportXml.py\
FamilyGroup.py\
FanChart.py\
FilterByName.py\
GivenNameGramplet.py\
GVFamilyLines.py \
GVHourGlass.py\
@@ -54,16 +51,11 @@ pkgdata_PYTHON = \
ImportXml.py\
IndivComplete.py\
KinshipReport.py\
lineage.py\
MarkerReport.py\
NarrativeWeb.py\
NumberOfAncestorsReport.py\
OnThisDay.py\
PlaceReport.py\
Records.py\
References.py\
SameSurnames.py\
siblings.py\
SimpleBookTitle.py\
StatisticsChart.py\
Summary.py\

View File

@@ -1,4 +1,4 @@
# This is the src/plugins/rel level Makefile for Gramps
# This is the src/plugins/drawreport level Makefile for Gramps
# We could use GNU make's ':=' syntax for nice wildcard use,
# but that is not necessarily portable.
# If not using GNU make, then list all .py files individually

View File

@@ -0,0 +1,32 @@
# This is the src/plugins/quickview level Makefile for Gramps
# We could use GNU make's ':=' syntax for nice wildcard use,
# but that is not necessarily portable.
# If not using GNU make, then list all .py files individually
pkgdatadir = $(datadir)/@PACKAGE@/plugins/quickview
pkgdata_PYTHON = \
AgeOnDate.py \
all_events.py \
all_relations.py \
AttributeMatch.py \
FilterByName.py \
lineage.py \
OnThisDay.py \
Query.py \
References.py \
Reporef.py \
SameSurnames.py\
siblings.py
pkgpyexecdir = @pkgpyexecdir@/plugins/quickview
pkgpythondir = @pkgpythondir@/plugins/quickview
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgdata_PYTHON));

View File

@@ -1,4 +1,4 @@
# This is the src/plugins/rel level Makefile for Gramps
# This is the src/plugins/tool level Makefile for Gramps
# We could use GNU make's ':=' syntax for nice wildcard use,
# but that is not necessarily portable.
# If not using GNU make, then list all .py files individually