diff options
author | tron <tron@pkgsrc.org> | 1998-12-30 17:49:03 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1998-12-30 17:49:03 +0000 |
commit | f27ceef623c70e52717638df66aba3375300ed9c (patch) | |
tree | 7293152260164d8ffd045b5c5e2f6287b0e4a61b /print/rtf2latex/files | |
parent | ff0d1e64bbaf693e00391013bad8e4413cdba2bc (diff) | |
download | pkgsrc-f27ceef623c70e52717638df66aba3375300ed9c.tar.gz |
Initial import of FreeBSD's "rtf2latex" port:
rtf2LaTeX is a filter built on Paul DuBois' RTF reader that converts
RTF (Microsoft's Rich Text Format) into LaTeX.
Diffstat (limited to 'print/rtf2latex/files')
-rw-r--r-- | print/rtf2latex/files/Makefile | 76 | ||||
-rw-r--r-- | print/rtf2latex/files/md5 | 1 |
2 files changed, 77 insertions, 0 deletions
diff --git a/print/rtf2latex/files/Makefile b/print/rtf2latex/files/Makefile new file mode 100644 index 00000000000..f1985ea98d9 --- /dev/null +++ b/print/rtf2latex/files/Makefile @@ -0,0 +1,76 @@ +SHELL=/bin/sh +INSTALL_PROGRAM=${BSD_INSTALL_PROGRAM} +INSTALL_MAN=${BSD_INSTALL_MAN} +INSTALL_DATA=${BSD_INSTALL_DATA} +LD=cc -s +PREFIX?=/usr/local +# if your compiler needs -o option for creating .o files uncomment this line: +#OOPT = -o $@ +# +# XCFLAGS holds a combination of -DNO_MALLOC_H -DSTDARG -DVARARGS -DSYSV. +# -DSTDARG and -DVARARGS are mutually exclusive. -DNO_MALLOC_H is only +# needed if you don't have a standard C compiler AND you don't have malloc.h +# if you have a standard C compiler, it is automatically asumed you have stdarg +# you can override this by specifying -DVARARGS. If you don't specify +# any of -DSTDARG and -DVARARGS, an uggly replacement that works on most +# K&R compilers will be used. +# -DSYSV is currently used only for defining index to strchr. You may +# want to specify this for ULTRIX - ULTRIX has both, strchr and index but +# lacks prototypes for the latter. +# +# uncomment this line and delete unneccesary flags if needed. +#XCFLAGS=-DNO_MALLOC_H -DSTDARG -DVARARGS -DSYSV +#XCFLAGS = -DSYSV + +# This is where executables, man-pages and support files are installed +BINDIR = ${PREFIX}/bin +MANDIR = ${PREFIX}/man/man1 +RTFDIR = ${PREFIX}/share/rtf + +############### No configuration parameters below this line ############### + +# RTF-to-LaTeX translator +COMMONOBJS = reader.o +LATEXOBJS = rtf2LaTeX.o $(COMMONOBJS) +SOURCES = rtf.h Makefile.2LaTeX fonts.h rtf2LaTeX.c r2L_version.h \ + rtf2LaTeX.h reader.c +SUPPORT = mac.code ansi.code english.land german.land +DOCFILS = Copyright interna.tex README.2LaTeX interna.rtf rtf2LaTeX.man \ + INSTALL.2LaTeX +MACFILES = getopt.c macintosh.h macintosh.c readme.mac + +all: rtf2LaTeX + +rtf2LaTeX: $(LATEXOBJS) + $(LD) $(LDFLAGS) -o $@ $(LATEXOBJS) +install: rtf2LaTeX $(DOCFILS) $(SUPPORT) + $(INSTALL_PROGRAM) rtf2LaTeX $(BINDIR) + $(INSTALL_MAN) rtf2LaTeX.man $(MANDIR)/rtf2LaTeX.1 + -mkdir $(RTFDIR) + $(INSTALL_DATA) ansi.code mac.code german.land english.land $(RTFDIR) +tags: + etags -et *.[ch] +clean:: + -rm -f rtf2LaTeX *~ core *.o *.aux *.log *.dvi TAGS \ + rtf2LaTeX.tar.z rtf2LaTeX.tar.gz +test: + ./rtf2LaTeX interna.rtf > interna.test + diff interna.test interna.tex + rm interna.test +# +reader.o : rtf.h + $(CC) $(CFLAGS) $(XCFLAGS) -c $(OOPT) reader.c + +rtf2LaTeX.o : fonts.h r2L_version.h rtf2LaTeX.h rtf.h + $(CC) $(CFLAGS) $(XCFLAGS) -c -DRTFDIR=\"$(RTFDIR)\" $(OOPT) rtf2LaTeX.c + +sources: $(SOURCES) $(DOCFILS) $(SUPPORT) $(MACFILES) + +$(SOURCES) $(DOCFILS) $(SUPPORT) $(MACFILES): + co $@ + +dist: sources + mkdir rtf2LaTeX + ln $(SOURCES) $(DOCFILS) $(SUPPORT) $(MACFILES) rtf2LaTeX + tar cf - rtf2LaTeX | gzip -best > rtf2LaTeX.tar.gz + rm -rf rtf2LaTeX diff --git a/print/rtf2latex/files/md5 b/print/rtf2latex/files/md5 new file mode 100644 index 00000000000..2b4304cc7e2 --- /dev/null +++ b/print/rtf2latex/files/md5 @@ -0,0 +1 @@ +MD5 (rtf2LaTeX.1.5.tar.gz) = 90964f786d149d314a57511ed9ceaaee |