Skip to content

Commit 415f47d

Browse files
author
taku@chasen.org
committed
mecab-jumandic-7.0-20130310
git-svn-id: http://mecab.googlecode.com/svn/trunk@138 22366562-2668-cd24-d2a3-fd8165afafd9
1 parent 75341fd commit 415f47d

File tree

4 files changed

+283
-192
lines changed

4 files changed

+283
-192
lines changed

mecab-jumandic/Makefile.in

Lines changed: 59 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Makefile.in generated by automake 1.11.1 from Makefile.am.
1+
# Makefile.in generated by automake 1.11.3 from Makefile.am.
22
# @configure_input@
33

44
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5-
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
6-
# Inc.
5+
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6+
# Foundation, Inc.
77
# This Makefile.in is free software; the Free Software Foundation
88
# gives unlimited permission to copy and/or distribute it,
99
# with or without modifications, as long as this notice is preserved.
@@ -68,18 +68,28 @@ am__nobase_list = $(am__nobase_strip_setup); \
6868
am__base_list = \
6969
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
7070
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
71+
am__uninstall_files_from_dir = { \
72+
test -z "$$files" \
73+
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
74+
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
75+
$(am__cd) "$$dir" && rm -f $$files; }; \
76+
}
7177
am__installdirs = "$(DESTDIR)$(dicdir)"
7278
DATA = $(dic_DATA)
7379
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
7480
distdir = $(PACKAGE)-$(VERSION)
7581
top_distdir = $(distdir)
7682
am__remove_distdir = \
77-
{ test ! -d "$(distdir)" \
78-
|| { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
79-
&& rm -fr "$(distdir)"; }; }
83+
if test -d "$(distdir)"; then \
84+
find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
85+
&& rm -rf "$(distdir)" \
86+
|| { sleep 5 && rm -rf "$(distdir)"; }; \
87+
else :; fi
8088
DIST_ARCHIVES = $(distdir).tar.gz
8189
GZIP_ENV = --best
8290
distuninstallcheck_listfiles = find . -type f -print
91+
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
92+
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
8393
distcleancheck_listfiles = find . -type f -print
8494
ACLOCAL = @ACLOCAL@
8595
AMTAR = @AMTAR@
@@ -171,7 +181,7 @@ CLEANFILES = @MECAB_GENDATA@
171181
all: all-am
172182

173183
.SUFFIXES:
174-
am--refresh:
184+
am--refresh: Makefile
175185
@:
176186
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
177187
@for dep in $?; do \
@@ -222,9 +232,7 @@ uninstall-dicDATA:
222232
@$(NORMAL_UNINSTALL)
223233
@list='$(dic_DATA)'; test -n "$(dicdir)" || list=; \
224234
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
225-
test -n "$$files" || exit 0; \
226-
echo " ( cd '$(DESTDIR)$(dicdir)' && rm -f" $$files ")"; \
227-
cd "$(DESTDIR)$(dicdir)" && rm -f $$files
235+
dir='$(DESTDIR)$(dicdir)'; $(am__uninstall_files_from_dir)
228236
tags: TAGS
229237
TAGS:
230238

@@ -276,15 +284,19 @@ dist-gzip: distdir
276284
$(am__remove_distdir)
277285

278286
dist-bzip2: distdir
279-
tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
287+
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
288+
$(am__remove_distdir)
289+
290+
dist-lzip: distdir
291+
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
280292
$(am__remove_distdir)
281293

282294
dist-lzma: distdir
283295
tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
284296
$(am__remove_distdir)
285297

286298
dist-xz: distdir
287-
tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
299+
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
288300
$(am__remove_distdir)
289301

290302
dist-tarZ: distdir
@@ -315,6 +327,8 @@ distcheck: dist
315327
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
316328
*.tar.lzma*) \
317329
lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
330+
*.tar.lz*) \
331+
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
318332
*.tar.xz*) \
319333
xz -dc $(distdir).tar.xz | $(am__untar) ;;\
320334
*.tar.Z*) \
@@ -334,6 +348,7 @@ distcheck: dist
334348
&& am__cwd=`pwd` \
335349
&& $(am__cd) $(distdir)/_build \
336350
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \
351+
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
337352
$(DISTCHECK_CONFIGURE_FLAGS) \
338353
&& $(MAKE) $(AM_MAKEFLAGS) \
339354
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
@@ -362,8 +377,16 @@ distcheck: dist
362377
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
363378
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
364379
distuninstallcheck:
365-
@$(am__cd) '$(distuninstallcheck_dir)' \
366-
&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
380+
@test -n '$(distuninstallcheck_dir)' || { \
381+
echo 'ERROR: trying to run $@ with an empty' \
382+
'$$(distuninstallcheck_dir)' >&2; \
383+
exit 1; \
384+
}; \
385+
$(am__cd) '$(distuninstallcheck_dir)' || { \
386+
echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
387+
exit 1; \
388+
}; \
389+
test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
367390
|| { echo "ERROR: files left after uninstall:" ; \
368391
if test -n "$(DESTDIR)"; then \
369392
echo " (check DESTDIR support)"; \
@@ -396,10 +419,15 @@ install-am: all-am
396419

397420
installcheck: installcheck-am
398421
install-strip:
399-
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
400-
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
401-
`test -z '$(STRIP)' || \
402-
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
422+
if test -z '$(STRIP)'; then \
423+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
424+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
425+
install; \
426+
else \
427+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
428+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
429+
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
430+
fi
403431
mostlyclean-generic:
404432

405433
clean-generic:
@@ -484,25 +512,26 @@ uninstall-am: uninstall-dicDATA
484512
.MAKE: install-am install-strip
485513

486514
.PHONY: all all-am am--refresh check check-am clean clean-generic dist \
487-
dist-all dist-bzip2 dist-gzip dist-lzma dist-shar dist-tarZ \
488-
dist-xz dist-zip distcheck distclean distclean-generic \
489-
distcleancheck distdir distuninstallcheck dvi dvi-am html \
490-
html-am info info-am install install-am install-data \
491-
install-data-am install-dicDATA install-dvi install-dvi-am \
492-
install-exec install-exec-am install-html install-html-am \
493-
install-info install-info-am install-man install-pdf \
494-
install-pdf-am install-ps install-ps-am install-strip \
495-
installcheck installcheck-am installdirs maintainer-clean \
496-
maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
497-
pdf-am ps ps-am uninstall uninstall-am uninstall-dicDATA
515+
dist-all dist-bzip2 dist-gzip dist-lzip dist-lzma dist-shar \
516+
dist-tarZ dist-xz dist-zip distcheck distclean \
517+
distclean-generic distcleancheck distdir distuninstallcheck \
518+
dvi dvi-am html html-am info info-am install install-am \
519+
install-data install-data-am install-dicDATA install-dvi \
520+
install-dvi-am install-exec install-exec-am install-html \
521+
install-html-am install-info install-info-am install-man \
522+
install-pdf install-pdf-am install-ps install-ps-am \
523+
install-strip installcheck installcheck-am installdirs \
524+
maintainer-clean maintainer-clean-generic mostlyclean \
525+
mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am \
526+
uninstall-dicDATA
498527

499528

500529
@MECAB_GENDATA@:
501530
$(mecab_dict_index) -f utf-8 -t @CHARSET@
502531
echo To enable dictionary, rewrite @MECAB_MECABRC@ as \"dicrc = @MECAB_DICDIR@\"
503532

504533
export-package:
505-
./upload.pl -p mecab -n @PACKAGE@ -r @VERSION@ -f @PACKAGE@-@VERSION@.tar.gz
534+
python googlecode_upload.py -p mecab -s @PACKAGE@ -u taku@chasen.org -w `cat ~/.googlecode_upload_password` @PACKAGE@-@VERSION@.tar.gz
506535

507536
# Tell versions [3.59,3.63) of GNU make to not export all variables.
508537
# Otherwise a system limit (for SysV at least) may be exceeded.

mecab-jumandic/aclocal.m4

Lines changed: 38 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
# generated automatically by aclocal 1.11.1 -*- Autoconf -*-
1+
# generated automatically by aclocal 1.11.3 -*- Autoconf -*-
22

33
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4-
# 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
4+
# 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
5+
# Inc.
56
# This file is free software; the Free Software Foundation
67
# gives unlimited permission to copy and/or distribute it,
78
# with or without modifications, as long as this notice is preserved.
@@ -13,18 +14,21 @@
1314

1415
m4_ifndef([AC_AUTOCONF_VERSION],
1516
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
16-
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.65],,
17-
[m4_warning([this file was generated for autoconf 2.65.
17+
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],,
18+
[m4_warning([this file was generated for autoconf 2.68.
1819
You have another version of autoconf. It may work, but is not guaranteed to.
1920
If you have problems, you may need to regenerate the build system entirely.
2021
To do so, use the procedure documented by the package, typically `autoreconf'.])])
2122

22-
# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
23+
# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software
24+
# Foundation, Inc.
2325
#
2426
# This file is free software; the Free Software Foundation
2527
# gives unlimited permission to copy and/or distribute it,
2628
# with or without modifications, as long as this notice is preserved.
2729

30+
# serial 1
31+
2832
# AM_AUTOMAKE_VERSION(VERSION)
2933
# ----------------------------
3034
# Automake X.Y traces this macro to ensure aclocal.m4 has been
@@ -34,7 +38,7 @@ AC_DEFUN([AM_AUTOMAKE_VERSION],
3438
[am__api_version='1.11'
3539
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
3640
dnl require some minimum version. Point them to the right macro.
37-
m4_if([$1], [1.11.1], [],
41+
m4_if([$1], [1.11.3], [],
3842
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
3943
])
4044

@@ -50,19 +54,21 @@ m4_define([_AM_AUTOCONF_VERSION], [])
5054
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
5155
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
5256
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
53-
[AM_AUTOMAKE_VERSION([1.11.1])dnl
57+
[AM_AUTOMAKE_VERSION([1.11.3])dnl
5458
m4_ifndef([AC_AUTOCONF_VERSION],
5559
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
5660
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
5761

5862
# AM_AUX_DIR_EXPAND -*- Autoconf -*-
5963

60-
# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
64+
# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
6165
#
6266
# This file is free software; the Free Software Foundation
6367
# gives unlimited permission to copy and/or distribute it,
6468
# with or without modifications, as long as this notice is preserved.
6569

70+
# serial 1
71+
6672
# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
6773
# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to
6874
# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
@@ -247,12 +253,15 @@ for _am_header in $config_headers :; do
247253
done
248254
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
249255

250-
# Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc.
256+
# Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation,
257+
# Inc.
251258
#
252259
# This file is free software; the Free Software Foundation
253260
# gives unlimited permission to copy and/or distribute it,
254261
# with or without modifications, as long as this notice is preserved.
255262

263+
# serial 1
264+
256265
# AM_PROG_INSTALL_SH
257266
# ------------------
258267
# Define $install_sh.
@@ -332,12 +341,15 @@ else
332341
fi
333342
])
334343

335-
# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
344+
# Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation,
345+
# Inc.
336346
#
337347
# This file is free software; the Free Software Foundation
338348
# gives unlimited permission to copy and/or distribute it,
339349
# with or without modifications, as long as this notice is preserved.
340350

351+
# serial 1
352+
341353
# AM_PROG_MKDIR_P
342354
# ---------------
343355
# Check for `mkdir -p'.
@@ -360,27 +372,28 @@ esac
360372

361373
# Helper functions for option handling. -*- Autoconf -*-
362374

363-
# Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc.
375+
# Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software
376+
# Foundation, Inc.
364377
#
365378
# This file is free software; the Free Software Foundation
366379
# gives unlimited permission to copy and/or distribute it,
367380
# with or without modifications, as long as this notice is preserved.
368381

369-
# serial 4
382+
# serial 5
370383

371384
# _AM_MANGLE_OPTION(NAME)
372385
# -----------------------
373386
AC_DEFUN([_AM_MANGLE_OPTION],
374387
[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
375388

376389
# _AM_SET_OPTION(NAME)
377-
# ------------------------------
390+
# --------------------
378391
# Set option NAME. Presently that only means defining a flag for this option.
379392
AC_DEFUN([_AM_SET_OPTION],
380393
[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
381394

382395
# _AM_SET_OPTIONS(OPTIONS)
383-
# ----------------------------------
396+
# ------------------------
384397
# OPTIONS is a space-separated list of Automake options.
385398
AC_DEFUN([_AM_SET_OPTIONS],
386399
[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
@@ -456,12 +469,14 @@ Check your system clock])
456469
fi
457470
AC_MSG_RESULT(yes)])
458471

459-
# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
472+
# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
460473
#
461474
# This file is free software; the Free Software Foundation
462475
# gives unlimited permission to copy and/or distribute it,
463476
# with or without modifications, as long as this notice is preserved.
464477

478+
# serial 1
479+
465480
# AM_PROG_INSTALL_STRIP
466481
# ---------------------
467482
# One issue with vendor `install' (even GNU) is that you can't
@@ -484,13 +499,13 @@ fi
484499
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
485500
AC_SUBST([INSTALL_STRIP_PROGRAM])])
486501

487-
# Copyright (C) 2006, 2008 Free Software Foundation, Inc.
502+
# Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc.
488503
#
489504
# This file is free software; the Free Software Foundation
490505
# gives unlimited permission to copy and/or distribute it,
491506
# with or without modifications, as long as this notice is preserved.
492507

493-
# serial 2
508+
# serial 3
494509

495510
# _AM_SUBST_NOTMAKE(VARIABLE)
496511
# ---------------------------
@@ -499,13 +514,13 @@ AC_SUBST([INSTALL_STRIP_PROGRAM])])
499514
AC_DEFUN([_AM_SUBST_NOTMAKE])
500515

501516
# AM_SUBST_NOTMAKE(VARIABLE)
502-
# ---------------------------
517+
# --------------------------
503518
# Public sister of _AM_SUBST_NOTMAKE.
504519
AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
505520

506521
# Check how to create a tarball. -*- Autoconf -*-
507522

508-
# Copyright (C) 2004, 2005 Free Software Foundation, Inc.
523+
# Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc.
509524
#
510525
# This file is free software; the Free Software Foundation
511526
# gives unlimited permission to copy and/or distribute it,
@@ -527,10 +542,11 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
527542
# a tarball read from stdin.
528543
# $(am__untar) < result.tar
529544
AC_DEFUN([_AM_PROG_TAR],
530-
[# Always define AMTAR for backward compatibility.
531-
AM_MISSING_PROG([AMTAR], [tar])
545+
[# Always define AMTAR for backward compatibility. Yes, it's still used
546+
# in the wild :-( We should find a proper way to deprecate it ...
547+
AC_SUBST([AMTAR], ['$${TAR-tar}'])
532548
m4_if([$1], [v7],
533-
[am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
549+
[am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
534550
[m4_case([$1], [ustar],, [pax],,
535551
[m4_fatal([Unknown tar format])])
536552
AC_MSG_CHECKING([how to create a $1 tar archive])

0 commit comments

Comments
 (0)