tnef 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. checksums.yaml +7 -0
  2. data/ext/tnef/ChangeLog +18 -0
  3. data/ext/tnef/Makefile.in +185 -132
  4. data/ext/tnef/NEWS +4 -1
  5. data/ext/tnef/aclocal.m4 +440 -266
  6. data/ext/tnef/autom4te.cache/output.0 +7001 -0
  7. data/ext/tnef/autom4te.cache/output.1 +7001 -0
  8. data/ext/tnef/autom4te.cache/requests +159 -0
  9. data/ext/tnef/autom4te.cache/traces.0 +545 -0
  10. data/ext/tnef/autom4te.cache/traces.1 +1036 -0
  11. data/ext/tnef/compile +347 -0
  12. data/ext/tnef/config.log +971 -0
  13. data/ext/tnef/configure +380 -194
  14. data/ext/tnef/configure.in +1 -1
  15. data/ext/tnef/contrib/evolution.helper +43 -0
  16. data/ext/tnef/contrib/evolution.helper.README +11 -0
  17. data/ext/tnef/contrib/tnef-alpine.perl +91 -0
  18. data/ext/tnef/contrib/tnef-alpine.perl.README +10 -0
  19. data/ext/tnef/doc/Makefile +659 -0
  20. data/ext/tnef/doc/Makefile.in +171 -135
  21. data/ext/tnef/doc/tnef.1 +185 -0
  22. data/ext/tnef/doc/tnef.1.in +34 -32
  23. data/ext/tnef/doc/www/Makefile +585 -0
  24. data/ext/tnef/doc/www/Makefile.in +158 -115
  25. data/ext/tnef/doc/www/cgi-bin/Makefile +405 -0
  26. data/ext/tnef/doc/www/cgi-bin/Makefile.in +83 -18
  27. data/ext/tnef/doc/www/htdocs/Makefile +405 -0
  28. data/ext/tnef/doc/www/htdocs/Makefile.in +83 -18
  29. data/ext/tnef/doc/www/htdocs/index.html +51 -0
  30. data/ext/tnef/doc/www/htdocs/style.css +13 -0
  31. data/ext/tnef/src/Makefile.in +193 -135
  32. data/ext/tnef/src/replace/Makefile.in +148 -55
  33. data/ext/tnef/src/tnef.c +10 -8
  34. data/ext/tnef/test-driver +127 -0
  35. data/ext/tnef/tests/Makefile.in +158 -115
  36. data/ext/tnef/tests/cmdline/Attic/mime-types.baseline +3 -0
  37. data/ext/tnef/tests/cmdline/Attic/mime-types.test +11 -0
  38. data/ext/tnef/tests/cmdline/Makefile.in +441 -110
  39. data/ext/tnef/tests/cmdline/body-test.html.baseline +95 -95
  40. data/ext/tnef/tests/cmdline/body.baseline +2 -2
  41. data/ext/tnef/tests/cmdline/interactive.baseline +0 -0
  42. data/ext/tnef/tests/cmdline/message.html.baseline +95 -95
  43. data/ext/tnef/tests/cmdline/version.baseline +2 -2
  44. data/ext/tnef/tests/files/Makefile.in +515 -205
  45. data/ext/tnef/tests/files/baselines/Makefile.in +83 -18
  46. data/ext/tnef/tests/files/datafiles/Makefile.in +83 -18
  47. data/lib/tnef/version.rb +1 -1
  48. metadata +34 -18
@@ -1,5 +1,5 @@
1
1
  AC_PREREQ(2.59)
2
- AC_INIT([tnef],[1.4.9],[verdammelt@users.sourceforge.net])
2
+ AC_INIT([tnef],[1.4.10],[verdammelt@users.sourceforge.net])
3
3
  AC_CONFIG_SRCDIR([src/tnef.c])
4
4
  AM_INIT_AUTOMAKE
5
5
  AC_CONFIG_HEADER([src/config.h])
@@ -0,0 +1,43 @@
1
+ #
2
+ # Crappy Micrsoft Exchange Archive File [winmail.dat]
3
+ #
4
+ # Assumes gxmessage is installed.
5
+ # You might want to point /users to $HOME or something else.
6
+ #
7
+ FILE_PASSED=$1
8
+ export FILE_PASSED
9
+ ARCHIVE_STAMP=`date +%Y%m%d%H%M%S`
10
+ ARCHIVE_DIR="outlook_archive_$ARCHIVE_STAMP"
11
+ rm /tmp/$USER.tnef 2>/dev/null
12
+ echo "The sender has sent you a proprietary file archive with unknown
13
+ files." > /tmp/$USER.tnef
14
+ echo " The file(s) found in this archive are displayed below:" >>
15
+ /tmp/$USER.tnef
16
+ echo "" >> /tmp/$USER.tnef
17
+ /usr/local/bin/tnef --list "$FILE_PASSED" >> /tmp/$USER.tnef
18
+ echo "" >> /tmp/$USER.tnef
19
+ echo "The file(s) can be extracted into your /users directory" >>
20
+ /tmp/$USER.tnef
21
+ echo "Use the appropriate application to open them." >>
22
+ /tmp/$USER.tnef
23
+ echo "Should I extract these files now?" >> /tmp/$USER.tnef
24
+ /usr/local/bin/gxmessage -center -file /tmp/$USER.tnef -buttons
25
+ "Yes,No" 2> /dev/null
26
+ case $? in
27
+ ������� 101)
28
+ ��������������� echo "They want it"
29
+ ������� ;;
30
+ ������� 102)
31
+ ��������������� echo "User exited"
32
+ ��������������� exit 0
33
+ ������� ;;
34
+ ������� *)
35
+ ��������������� echo "Window manager close"
36
+ ��������������� exit 0
37
+ ������� ;;
38
+ esac
39
+ mkdir "/users/$USER/$ARCHIVE_DIR" 2> /dev/null
40
+ /usr/local/bin/tnef --directory="/users/$USER/$ARCHIVE_DIR"
41
+ "$FILE_PASSED"
42
+ /usr/local/bin/gxmessage -center "The file(s) have been extracted and
43
+ placed in /users/$USER/$ARCHIVE_DIR" 2> /dev/nu
@@ -0,0 +1,11 @@
1
+ Mark-
2
+ �� We (The City of Largo) has implemented your tnef library in
3
+ Evolution as a helper application to open those pesky/dumb/stupid
4
+ winmail.dat
5
+ files that we get all the time.
6
+ I thought possibly, that you might want to include this little and
7
+ simple script in with the build as an example of how to deploy from
8
+ within Evolution.� It assumes they have gxmessage, but any graphical
9
+ front end utility would work.
10
+ Regards-
11
+ Dave Richards
@@ -0,0 +1,91 @@
1
+ #!/usr/bin/perl -w --
2
+ #
3
+ # decode a winmail.dat attachment and sent it's contents back to
4
+ # the user. this uses the tnef package from Mark Simpson.
5
+ # (just a hack by Urs Sch�rer - sitb - <urs@sitb.de>)
6
+ #
7
+ # usage: winmail.dat <tnef-file>
8
+ #
9
+ # just add: application/ms-tnef; winmail.pl %s
10
+ # to your .mailcap
11
+
12
+ use strict;
13
+ use warnings;
14
+ use Email::MIME::Creator;
15
+ use IO::All;
16
+ use Email::Send;
17
+
18
+
19
+ # ========================================================
20
+ # configure some constants here
21
+ # --------------------------------------------------------
22
+ use vars qw($SMTP $DOMAIN $subject $body);
23
+ $SMTP = "willow"; # enter your smtp host here (host[:port])
24
+ $DOMAIN = "sitb.de"; # your internal email domainname
25
+ $subject = "Deine MS-TNEF Attachments";
26
+ $body = "Hier sind Deine Attachments";
27
+ # ========================================================
28
+
29
+ my $user = getpwuid($<); # our user's name
30
+
31
+ my $winmail = $ARGV[0]; # the winmail.dat file
32
+ exit unless (stat($winmail)); # no file -- nothing to do
33
+
34
+ my $tmpdir = `mktemp -dt tnefXXXXXXXXXX`;
35
+ chomp $tmpdir;
36
+ my @attachments = `tnef -t \"$winmail\"`; # get a list of files included in the MS-TNEF
37
+
38
+ my $ret = system("tnef -f \"$winmail\" -C $tmpdir"); # extract everything into our tmpdir
39
+ exit if ($ret); # tnef failed
40
+
41
+ my @parts; # now compose a new mime email
42
+ my $part = Email::MIME->create( # ... with a little text body
43
+ attributes => {
44
+ content_type => "text/plain",
45
+ charset => "iso-8859-1",
46
+ },
47
+ body => $body,
48
+ );
49
+ push (@parts, $part);
50
+
51
+ foreach my $attachment (@attachments) # .. and loop over all attachments
52
+ {
53
+ chomp $attachment;
54
+ my $file = "$tmpdir/$attachment";
55
+ next unless (stat($file)); # skip stuff that isn't there
56
+ my $ftype = `file -i \"$file\"`; # .. determine its mime type
57
+ chomp $ftype;
58
+ $ftype =~ s#^.+:\s+(.+)#$1#;
59
+
60
+ $part = Email::MIME->create( # .. and add it as base64 attachment
61
+ attributes => { # (no idea whether this is right all the time)
62
+ filename => $attachment,
63
+ content_type => $ftype,
64
+ encoding => "base64",
65
+ name => $attachment,
66
+ disposition => "attachment"
67
+ },
68
+ body => io( $file )->all,
69
+ );
70
+ push (@parts, $part);
71
+ unlink ($file); # now we can remove the file
72
+ }
73
+
74
+ my $email = Email::MIME->create( # .. and compose the mail itself
75
+ header => [
76
+ From => $user . '@' . $DOMAIN,
77
+ To => $user . '@' . $DOMAIN,
78
+ Subject => $subject
79
+ ],
80
+ parts => \@parts
81
+ );
82
+
83
+
84
+ #print $email->as_string . "\n";
85
+
86
+ my $mailer = Email::Send->new({mailer => 'SMTP'}); # .. which we sent via smtp
87
+ $mailer->mailer_args([Host => $SMTP, ssl => 0]);
88
+ $mailer->send($email->as_string);
89
+
90
+ # clean up
91
+ rmdir ($tmpdir);
@@ -0,0 +1,10 @@
1
+ From Urs Sch�rer - sitb - <urs@sitb.de>
2
+
3
+ > Since it was difficult for me to include it into alpine (the successor
4
+ > of pine, but basically the same) I just did a simple perl hack, so
5
+ > that if I use this script in my .mailcap, it sends me back a mime
6
+ > message with the decoded attachments.
7
+ >
8
+ > The script is still pretty ugly yet and might fail in various
9
+ > situations, but I just thought maybe you might correct it a little bit
10
+ > and add it to a 'contrib' directory in the tnef package.
@@ -0,0 +1,659 @@
1
+ # Makefile.in generated by automake 1.14 from Makefile.am.
2
+ # doc/Makefile. Generated from Makefile.in by configure.
3
+
4
+ # Copyright (C) 1994-2013 Free Software Foundation, Inc.
5
+
6
+ # This Makefile.in is free software; the Free Software Foundation
7
+ # gives unlimited permission to copy and/or distribute it,
8
+ # with or without modifications, as long as this notice is preserved.
9
+
10
+ # This program is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12
+ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13
+ # PARTICULAR PURPOSE.
14
+
15
+
16
+
17
+ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
18
+ am__make_running_with_option = \
19
+ case $${target_option-} in \
20
+ ?) ;; \
21
+ *) echo "am__make_running_with_option: internal error: invalid" \
22
+ "target option '$${target_option-}' specified" >&2; \
23
+ exit 1;; \
24
+ esac; \
25
+ has_opt=no; \
26
+ sane_makeflags=$$MAKEFLAGS; \
27
+ if $(am__is_gnu_make); then \
28
+ sane_makeflags=$$MFLAGS; \
29
+ else \
30
+ case $$MAKEFLAGS in \
31
+ *\\[\ \ ]*) \
32
+ bs=\\; \
33
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
34
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
35
+ esac; \
36
+ fi; \
37
+ skip_next=no; \
38
+ strip_trailopt () \
39
+ { \
40
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
41
+ }; \
42
+ for flg in $$sane_makeflags; do \
43
+ test $$skip_next = yes && { skip_next=no; continue; }; \
44
+ case $$flg in \
45
+ *=*|--*) continue;; \
46
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
47
+ -*I?*) strip_trailopt 'I';; \
48
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
49
+ -*O?*) strip_trailopt 'O';; \
50
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
51
+ -*l?*) strip_trailopt 'l';; \
52
+ -[dEDm]) skip_next=yes;; \
53
+ -[JT]) skip_next=yes;; \
54
+ esac; \
55
+ case $$flg in \
56
+ *$$target_option*) has_opt=yes; break;; \
57
+ esac; \
58
+ done; \
59
+ test $$has_opt = yes
60
+ am__make_dryrun = (target_option=n; $(am__make_running_with_option))
61
+ am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
62
+ pkgdatadir = $(datadir)/tnef
63
+ pkgincludedir = $(includedir)/tnef
64
+ pkglibdir = $(libdir)/tnef
65
+ pkglibexecdir = $(libexecdir)/tnef
66
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
67
+ install_sh_DATA = $(install_sh) -c -m 644
68
+ install_sh_PROGRAM = $(install_sh) -c
69
+ install_sh_SCRIPT = $(install_sh) -c
70
+ INSTALL_HEADER = $(INSTALL_DATA)
71
+ transform = $(program_transform_name)
72
+ NORMAL_INSTALL = :
73
+ PRE_INSTALL = :
74
+ POST_INSTALL = :
75
+ NORMAL_UNINSTALL = :
76
+ PRE_UNINSTALL = :
77
+ POST_UNINSTALL = :
78
+ subdir = doc
79
+ DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
80
+ $(top_srcdir)/mkinstalldirs $(srcdir)/tnef.1.in
81
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
82
+ am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
83
+ $(top_srcdir)/configure.in
84
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
85
+ $(ACLOCAL_M4)
86
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
87
+ CONFIG_HEADER = $(top_builddir)/src/config.h
88
+ CONFIG_CLEAN_FILES = tnef.1
89
+ CONFIG_CLEAN_VPATH_FILES =
90
+ AM_V_P = $(am__v_P_$(V))
91
+ am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
92
+ am__v_P_0 = false
93
+ am__v_P_1 = :
94
+ AM_V_GEN = $(am__v_GEN_$(V))
95
+ am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
96
+ am__v_GEN_0 = @echo " GEN " $@;
97
+ am__v_GEN_1 =
98
+ AM_V_at = $(am__v_at_$(V))
99
+ am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
100
+ am__v_at_0 = @
101
+ am__v_at_1 =
102
+ SOURCES =
103
+ DIST_SOURCES =
104
+ RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
105
+ ctags-recursive dvi-recursive html-recursive info-recursive \
106
+ install-data-recursive install-dvi-recursive \
107
+ install-exec-recursive install-html-recursive \
108
+ install-info-recursive install-pdf-recursive \
109
+ install-ps-recursive install-recursive installcheck-recursive \
110
+ installdirs-recursive pdf-recursive ps-recursive \
111
+ tags-recursive uninstall-recursive
112
+ am__can_run_installinfo = \
113
+ case $$AM_UPDATE_INFO_DIR in \
114
+ n|no|NO) false;; \
115
+ *) (install-info --version) >/dev/null 2>&1;; \
116
+ esac
117
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
118
+ am__vpath_adj = case $$p in \
119
+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
120
+ *) f=$$p;; \
121
+ esac;
122
+ am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
123
+ am__install_max = 40
124
+ am__nobase_strip_setup = \
125
+ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
126
+ am__nobase_strip = \
127
+ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
128
+ am__nobase_list = $(am__nobase_strip_setup); \
129
+ for p in $$list; do echo "$$p $$p"; done | \
130
+ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
131
+ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
132
+ if (++n[$$2] == $(am__install_max)) \
133
+ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
134
+ END { for (dir in files) print dir, files[dir] }'
135
+ am__base_list = \
136
+ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
137
+ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
138
+ am__uninstall_files_from_dir = { \
139
+ test -z "$$files" \
140
+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
141
+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
142
+ $(am__cd) "$$dir" && rm -f $$files; }; \
143
+ }
144
+ man1dir = $(mandir)/man1
145
+ am__installdirs = "$(DESTDIR)$(man1dir)"
146
+ NROFF = nroff
147
+ MANS = $(man_MANS)
148
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
149
+ distclean-recursive maintainer-clean-recursive
150
+ am__recursive_targets = \
151
+ $(RECURSIVE_TARGETS) \
152
+ $(RECURSIVE_CLEAN_TARGETS) \
153
+ $(am__extra_recursive_targets)
154
+ AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
155
+ distdir
156
+ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
157
+ # Read a list of newline-separated strings from the standard input,
158
+ # and print each of them once, without duplicates. Input order is
159
+ # *not* preserved.
160
+ am__uniquify_input = $(AWK) '\
161
+ BEGIN { nonempty = 0; } \
162
+ { items[$$0] = 1; nonempty = 1; } \
163
+ END { if (nonempty) { for (i in items) print i; }; } \
164
+ '
165
+ # Make sure the list of sources is unique. This is necessary because,
166
+ # e.g., the same source file might be shared among _SOURCES variables
167
+ # for different programs/libraries.
168
+ am__define_uniq_tagged_files = \
169
+ list='$(am__tagged_files)'; \
170
+ unique=`for i in $$list; do \
171
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
172
+ done | $(am__uniquify_input)`
173
+ ETAGS = etags
174
+ CTAGS = ctags
175
+ DIST_SUBDIRS = $(SUBDIRS)
176
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
177
+ am__relativize = \
178
+ dir0=`pwd`; \
179
+ sed_first='s,^\([^/]*\)/.*$$,\1,'; \
180
+ sed_rest='s,^[^/]*/*,,'; \
181
+ sed_last='s,^.*/\([^/]*\)$$,\1,'; \
182
+ sed_butlast='s,/*[^/]*$$,,'; \
183
+ while test -n "$$dir1"; do \
184
+ first=`echo "$$dir1" | sed -e "$$sed_first"`; \
185
+ if test "$$first" != "."; then \
186
+ if test "$$first" = ".."; then \
187
+ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
188
+ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
189
+ else \
190
+ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
191
+ if test "$$first2" = "$$first"; then \
192
+ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
193
+ else \
194
+ dir2="../$$dir2"; \
195
+ fi; \
196
+ dir0="$$dir0"/"$$first"; \
197
+ fi; \
198
+ fi; \
199
+ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
200
+ done; \
201
+ reldir="$$dir2"
202
+ ACLOCAL = aclocal-1.14
203
+ AMTAR = $${TAR-tar}
204
+ AM_DEFAULT_VERBOSITY = 1
205
+ AUTOCONF = autoconf
206
+ AUTOHEADER = autoheader
207
+ AUTOMAKE = automake-1.14
208
+ AWK = awk
209
+ CC = gcc
210
+ CCDEPMODE = depmode=gcc3
211
+ CFLAGS = -I/opt/boxen/homebrew/include
212
+ CPP = gcc -E
213
+ CPPFLAGS =
214
+ CXX = g++
215
+ CXXDEPMODE = depmode=gcc3
216
+ CXXFLAGS = -g -O2
217
+ CYGPATH_W = echo
218
+ DEFS = -DHAVE_CONFIG_H
219
+ DEPDIR = .deps
220
+ ECHO_C = \c
221
+ ECHO_N =
222
+ ECHO_T =
223
+ EGREP = /usr/bin/grep -E
224
+ EXEEXT =
225
+ GREP = /usr/bin/grep
226
+ INSTALL = /usr/bin/install -c
227
+ INSTALL_DATA = ${INSTALL} -m 644
228
+ INSTALL_PROGRAM = ${INSTALL}
229
+ INSTALL_SCRIPT = ${INSTALL}
230
+ INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
231
+ LDFLAGS = -L/opt/boxen/homebrew/lib
232
+ LIBOBJS =
233
+ LIBS =
234
+ LN_S = ln -s
235
+ LTLIBOBJS =
236
+ MAINT = #
237
+ MAKEINFO = makeinfo
238
+ MKDIR_P = .././install-sh -c -d
239
+ OBJEXT = o
240
+ PACKAGE = tnef
241
+ PACKAGE_BUGREPORT = verdammelt@users.sourceforge.net
242
+ PACKAGE_NAME = tnef
243
+ PACKAGE_STRING = tnef 1.4.10
244
+ PACKAGE_TARNAME = tnef
245
+ PACKAGE_URL =
246
+ PACKAGE_VERSION = 1.4.10
247
+ PATH_SEPARATOR = :
248
+ RANLIB = ranlib
249
+ SET_MAKE =
250
+ SHELL = /bin/sh
251
+ STRIP =
252
+ VERSION = 1.4.10
253
+ abs_builddir = /Users/mgrosser/Code/tools/tnef/ext/tnef/doc
254
+ abs_srcdir = /Users/mgrosser/Code/tools/tnef/ext/tnef/doc
255
+ abs_top_builddir = /Users/mgrosser/Code/tools/tnef/ext/tnef
256
+ abs_top_srcdir = /Users/mgrosser/Code/tools/tnef/ext/tnef
257
+ ac_ct_CC = gcc
258
+ ac_ct_CXX = g++
259
+ am__include = include
260
+ am__leading_dot = .
261
+ am__quote =
262
+ am__tar = $${TAR-tar} chof - "$$tardir"
263
+ am__untar = $${TAR-tar} xf -
264
+ bindir = ${exec_prefix}/bin
265
+ build_alias =
266
+ builddir = .
267
+ datadir = ${datarootdir}
268
+ datarootdir = ${prefix}/share
269
+ docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
270
+ dvidir = ${docdir}
271
+ exec_prefix = ${prefix}
272
+ host_alias =
273
+ htmldir = ${docdir}
274
+ includedir = ${prefix}/include
275
+ infodir = ${datarootdir}/info
276
+ install_sh = ${SHELL} /Users/mgrosser/Code/tools/tnef/ext/tnef/install-sh
277
+ libdir = ${exec_prefix}/lib
278
+ libexecdir = ${exec_prefix}/libexec
279
+ localedir = ${datarootdir}/locale
280
+ localstatedir = ${prefix}/var
281
+ mandir = ${datarootdir}/man
282
+ mkdir_p = $(MKDIR_P)
283
+ oldincludedir = /usr/include
284
+ pdfdir = ${docdir}
285
+ prefix = /usr/local
286
+ program_transform_name = s,x,x,
287
+ psdir = ${docdir}
288
+ sbindir = ${exec_prefix}/sbin
289
+ sharedstatedir = ${prefix}/com
290
+ srcdir = .
291
+ sysconfdir = ${prefix}/etc
292
+ target_alias =
293
+ top_build_prefix = ../
294
+ top_builddir = ..
295
+ top_srcdir = ..
296
+ SUBDIRS = www
297
+ man_MANS = tnef.1
298
+ EXTRA_DIST = file-format.tex tnef.1.in FAQ
299
+ all: all-recursive
300
+
301
+ .SUFFIXES:
302
+ $(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps)
303
+ @for dep in $?; do \
304
+ case '$(am__configure_deps)' in \
305
+ *$$dep*) \
306
+ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
307
+ && { if test -f $@; then exit 0; else break; fi; }; \
308
+ exit 1;; \
309
+ esac; \
310
+ done; \
311
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile'; \
312
+ $(am__cd) $(top_srcdir) && \
313
+ $(AUTOMAKE) --gnu doc/Makefile
314
+ .PRECIOUS: Makefile
315
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
316
+ @case '$?' in \
317
+ *config.status*) \
318
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
319
+ *) \
320
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
321
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
322
+ esac;
323
+
324
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
325
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
326
+
327
+ $(top_srcdir)/configure: # $(am__configure_deps)
328
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
329
+ $(ACLOCAL_M4): # $(am__aclocal_m4_deps)
330
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
331
+ $(am__aclocal_m4_deps):
332
+ tnef.1: $(top_builddir)/config.status $(srcdir)/tnef.1.in
333
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
334
+ install-man1: $(man_MANS)
335
+ @$(NORMAL_INSTALL)
336
+ @list1=''; \
337
+ list2='$(man_MANS)'; \
338
+ test -n "$(man1dir)" \
339
+ && test -n "`echo $$list1$$list2`" \
340
+ || exit 0; \
341
+ echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
342
+ $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
343
+ { for i in $$list1; do echo "$$i"; done; \
344
+ if test -n "$$list2"; then \
345
+ for i in $$list2; do echo "$$i"; done \
346
+ | sed -n '/\.1[a-z]*$$/p'; \
347
+ fi; \
348
+ } | while read p; do \
349
+ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
350
+ echo "$$d$$p"; echo "$$p"; \
351
+ done | \
352
+ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
353
+ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
354
+ sed 'N;N;s,\n, ,g' | { \
355
+ list=; while read file base inst; do \
356
+ if test "$$base" = "$$inst"; then list="$$list $$file"; else \
357
+ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
358
+ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
359
+ fi; \
360
+ done; \
361
+ for i in $$list; do echo "$$i"; done | $(am__base_list) | \
362
+ while read files; do \
363
+ test -z "$$files" || { \
364
+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
365
+ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
366
+ done; }
367
+
368
+ uninstall-man1:
369
+ @$(NORMAL_UNINSTALL)
370
+ @list=''; test -n "$(man1dir)" || exit 0; \
371
+ files=`{ for i in $$list; do echo "$$i"; done; \
372
+ l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
373
+ sed -n '/\.1[a-z]*$$/p'; \
374
+ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
375
+ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
376
+ dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
377
+
378
+ # This directory's subdirectories are mostly independent; you can cd
379
+ # into them and run 'make' without going through this Makefile.
380
+ # To change the values of 'make' variables: instead of editing Makefiles,
381
+ # (1) if the variable is set in 'config.status', edit 'config.status'
382
+ # (which will cause the Makefiles to be regenerated when you run 'make');
383
+ # (2) otherwise, pass the desired values on the 'make' command line.
384
+ $(am__recursive_targets):
385
+ @fail=; \
386
+ if $(am__make_keepgoing); then \
387
+ failcom='fail=yes'; \
388
+ else \
389
+ failcom='exit 1'; \
390
+ fi; \
391
+ dot_seen=no; \
392
+ target=`echo $@ | sed s/-recursive//`; \
393
+ case "$@" in \
394
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
395
+ *) list='$(SUBDIRS)' ;; \
396
+ esac; \
397
+ for subdir in $$list; do \
398
+ echo "Making $$target in $$subdir"; \
399
+ if test "$$subdir" = "."; then \
400
+ dot_seen=yes; \
401
+ local_target="$$target-am"; \
402
+ else \
403
+ local_target="$$target"; \
404
+ fi; \
405
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
406
+ || eval $$failcom; \
407
+ done; \
408
+ if test "$$dot_seen" = "no"; then \
409
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
410
+ fi; test -z "$$fail"
411
+
412
+ ID: $(am__tagged_files)
413
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
414
+ tags: tags-recursive
415
+ TAGS: tags
416
+
417
+ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
418
+ set x; \
419
+ here=`pwd`; \
420
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
421
+ include_option=--etags-include; \
422
+ empty_fix=.; \
423
+ else \
424
+ include_option=--include; \
425
+ empty_fix=; \
426
+ fi; \
427
+ list='$(SUBDIRS)'; for subdir in $$list; do \
428
+ if test "$$subdir" = .; then :; else \
429
+ test ! -f $$subdir/TAGS || \
430
+ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
431
+ fi; \
432
+ done; \
433
+ $(am__define_uniq_tagged_files); \
434
+ shift; \
435
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
436
+ test -n "$$unique" || unique=$$empty_fix; \
437
+ if test $$# -gt 0; then \
438
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
439
+ "$$@" $$unique; \
440
+ else \
441
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
442
+ $$unique; \
443
+ fi; \
444
+ fi
445
+ ctags: ctags-recursive
446
+
447
+ CTAGS: ctags
448
+ ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
449
+ $(am__define_uniq_tagged_files); \
450
+ test -z "$(CTAGS_ARGS)$$unique" \
451
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
452
+ $$unique
453
+
454
+ GTAGS:
455
+ here=`$(am__cd) $(top_builddir) && pwd` \
456
+ && $(am__cd) $(top_srcdir) \
457
+ && gtags -i $(GTAGS_ARGS) "$$here"
458
+ cscopelist: cscopelist-recursive
459
+
460
+ cscopelist-am: $(am__tagged_files)
461
+ list='$(am__tagged_files)'; \
462
+ case "$(srcdir)" in \
463
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
464
+ *) sdir=$(subdir)/$(srcdir) ;; \
465
+ esac; \
466
+ for i in $$list; do \
467
+ if test -f "$$i"; then \
468
+ echo "$(subdir)/$$i"; \
469
+ else \
470
+ echo "$$sdir/$$i"; \
471
+ fi; \
472
+ done >> $(top_builddir)/cscope.files
473
+
474
+ distclean-tags:
475
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
476
+
477
+ distdir: $(DISTFILES)
478
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
479
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
480
+ list='$(DISTFILES)'; \
481
+ dist_files=`for file in $$list; do echo $$file; done | \
482
+ sed -e "s|^$$srcdirstrip/||;t" \
483
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
484
+ case $$dist_files in \
485
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
486
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
487
+ sort -u` ;; \
488
+ esac; \
489
+ for file in $$dist_files; do \
490
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
491
+ if test -d $$d/$$file; then \
492
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
493
+ if test -d "$(distdir)/$$file"; then \
494
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
495
+ fi; \
496
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
497
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
498
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
499
+ fi; \
500
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
501
+ else \
502
+ test -f "$(distdir)/$$file" \
503
+ || cp -p $$d/$$file "$(distdir)/$$file" \
504
+ || exit 1; \
505
+ fi; \
506
+ done
507
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
508
+ if test "$$subdir" = .; then :; else \
509
+ $(am__make_dryrun) \
510
+ || test -d "$(distdir)/$$subdir" \
511
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
512
+ || exit 1; \
513
+ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
514
+ $(am__relativize); \
515
+ new_distdir=$$reldir; \
516
+ dir1=$$subdir; dir2="$(top_distdir)"; \
517
+ $(am__relativize); \
518
+ new_top_distdir=$$reldir; \
519
+ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
520
+ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
521
+ ($(am__cd) $$subdir && \
522
+ $(MAKE) $(AM_MAKEFLAGS) \
523
+ top_distdir="$$new_top_distdir" \
524
+ distdir="$$new_distdir" \
525
+ am__remove_distdir=: \
526
+ am__skip_length_check=: \
527
+ am__skip_mode_fix=: \
528
+ distdir) \
529
+ || exit 1; \
530
+ fi; \
531
+ done
532
+ check-am: all-am
533
+ check: check-recursive
534
+ all-am: Makefile $(MANS)
535
+ installdirs: installdirs-recursive
536
+ installdirs-am:
537
+ for dir in "$(DESTDIR)$(man1dir)"; do \
538
+ test -z "$$dir" || $(MKDIR_P) "$$dir"; \
539
+ done
540
+ install: install-recursive
541
+ install-exec: install-exec-recursive
542
+ install-data: install-data-recursive
543
+ uninstall: uninstall-recursive
544
+
545
+ install-am: all-am
546
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
547
+
548
+ installcheck: installcheck-recursive
549
+ install-strip:
550
+ if test -z '$(STRIP)'; then \
551
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
552
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
553
+ install; \
554
+ else \
555
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
556
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
557
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
558
+ fi
559
+ mostlyclean-generic:
560
+
561
+ clean-generic:
562
+
563
+ distclean-generic:
564
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
565
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
566
+
567
+ maintainer-clean-generic:
568
+ @echo "This command is intended for maintainers to use"
569
+ @echo "it deletes files that may require special tools to rebuild."
570
+ clean: clean-recursive
571
+
572
+ clean-am: clean-generic mostlyclean-am
573
+
574
+ distclean: distclean-recursive
575
+ -rm -f Makefile
576
+ distclean-am: clean-am distclean-generic distclean-tags
577
+
578
+ dvi: dvi-recursive
579
+
580
+ dvi-am:
581
+
582
+ html: html-recursive
583
+
584
+ html-am:
585
+
586
+ info: info-recursive
587
+
588
+ info-am:
589
+
590
+ install-data-am: install-man
591
+
592
+ install-dvi: install-dvi-recursive
593
+
594
+ install-dvi-am:
595
+
596
+ install-exec-am:
597
+
598
+ install-html: install-html-recursive
599
+
600
+ install-html-am:
601
+
602
+ install-info: install-info-recursive
603
+
604
+ install-info-am:
605
+
606
+ install-man: install-man1
607
+
608
+ install-pdf: install-pdf-recursive
609
+
610
+ install-pdf-am:
611
+
612
+ install-ps: install-ps-recursive
613
+
614
+ install-ps-am:
615
+
616
+ installcheck-am:
617
+
618
+ maintainer-clean: maintainer-clean-recursive
619
+ -rm -f Makefile
620
+ maintainer-clean-am: distclean-am maintainer-clean-generic
621
+
622
+ mostlyclean: mostlyclean-recursive
623
+
624
+ mostlyclean-am: mostlyclean-generic
625
+
626
+ pdf: pdf-recursive
627
+
628
+ pdf-am:
629
+
630
+ ps: ps-recursive
631
+
632
+ ps-am:
633
+
634
+ uninstall-am: uninstall-man
635
+
636
+ uninstall-man: uninstall-man1
637
+
638
+ .MAKE: $(am__recursive_targets) install-am install-strip
639
+
640
+ .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
641
+ check-am clean clean-generic cscopelist-am ctags ctags-am \
642
+ distclean distclean-generic distclean-tags distdir dvi dvi-am \
643
+ html html-am info info-am install install-am install-data \
644
+ install-data-am install-dvi install-dvi-am install-exec \
645
+ install-exec-am install-html install-html-am install-info \
646
+ install-info-am install-man install-man1 install-pdf \
647
+ install-pdf-am install-ps install-ps-am install-strip \
648
+ installcheck installcheck-am installdirs installdirs-am \
649
+ maintainer-clean maintainer-clean-generic mostlyclean \
650
+ mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \
651
+ uninstall-am uninstall-man uninstall-man1
652
+
653
+
654
+ web-build web-test web-push:
655
+ (cd www && $(MAKE) $(AM_MAKEFLAGS) $@)
656
+
657
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
658
+ # Otherwise a system limit (for SysV at least) may be exceeded.
659
+ .NOEXPORT: