blob: 8f0275ba27c5ebbe575a5f222462614491e8ccf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
--- a/Makefile.am
+++ b/Makefile.am
@@ -19,9 +19,9 @@
bin_SCRIPTS = nmz-config
-etcdir = $(pkgdatadir)/etc
-etc_DATA = AUTHORS ChangeLog ChangeLog.1 CREDITS COPYING INSTALL \
- INSTALL-ja README README-es README-ja NEWS THANKS TODO \
+etcdir = $(docdir)
+etc_DATA = AUTHORS ChangeLog ChangeLog.1 CREDITS \
+ README README-es README-ja NEWS THANKS TODO \
HACKING HACKING-ja
EXTRA_DIST = $(etc_DATA) maintMakefile namazu.spec namazu.spec.in \
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -2,7 +2,7 @@
AUTOMAKE_OPTIONS = 1.4 no-dependencies
SUBDIRS = en ja
-cssdir = $(pkgdatadir)/doc
+cssdir = $(htmldir)
css_DATA = namazu.css
EXTRA_DIST = $(css_DATA)
--- a/doc/en/Makefile.am
+++ b/doc/en/Makefile.am
@@ -1,4 +1,4 @@
-htmldir = $(pkgdatadir)/doc/en
+htmldir = @htmldir@/en
html_DATA = manual.html nmz.html tutorial.html tips.html
EXTRA_DIST = $(html_DATA)
--- a/doc/ja/Makefile.am
+++ b/doc/ja/Makefile.am
@@ -1,4 +1,4 @@
-htmldir = $(pkgdatadir)/doc/ja
+htmldir = @htmldir@/ja
html_DATA = manual.html nmz.html tips.html tutorial.html
EXTRA_DIST = $(html_DATA)
--- a/filter/Makefile.am
+++ b/filter/Makefile.am
@@ -51,9 +51,3 @@
ETAGS_ARGS = $(filter_DATA) --lang=perl
TAGS_DEPENDENCIES = $(filter_DATA)
-
-# To remove Windows specific files installed by Namazu 2.0 and/or 2.0.1
-# and old gfilter.pl (Namazu 2.0.7 or earlier).
-install-data-local:
- rm -f $(filterdir)/ole*.pl
- rm -f $(filterdir)/gfilter.pl
|