jade has been replaced by openjade
This commit is contained in:
parent
0b55a1bc2a
commit
bf0666fb03
@ -1,27 +0,0 @@
|
|||||||
# $FreeBSD: Makefile,v 1.9 1998/03/13 15:05:20 jfieber Exp $
|
|
||||||
# $OpenBSD: Makefile,v 1.6 2000/06/10 00:02:38 espie Exp $
|
|
||||||
#
|
|
||||||
|
|
||||||
DISTNAME= jade-1.2.1
|
|
||||||
CATEGORIES= textproc
|
|
||||||
MASTER_SITES= ftp://ftp.jclark.com/pub/jade/
|
|
||||||
|
|
||||||
MAINTAINER= matthieu@laas.fr
|
|
||||||
|
|
||||||
LICENSE_TYPE= BSD
|
|
||||||
PERMIT_PACKAGE_CDROM= Yes
|
|
||||||
PERMIT_PACKAGE_FTP= Yes
|
|
||||||
PERMIT_DISTFILES_CDROM= Yes
|
|
||||||
PERMIT_DISTFILES_FTP= Yes
|
|
||||||
|
|
||||||
# Unfortunately, jade needs libg++
|
|
||||||
.if !exists(/usr/lib/libstdc++.a)
|
|
||||||
BROKEN= Requires OpenBSD 2.1 or later.
|
|
||||||
.endif
|
|
||||||
|
|
||||||
FAKE_FLAGS=PREFIX=${PREFIX}
|
|
||||||
# Shared libraries are currently broken for this port.
|
|
||||||
# post-install:
|
|
||||||
# ${LDCONFIG} -m ${PREFIX}/lib
|
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
|
@ -1,7 +0,0 @@
|
|||||||
SUBDIR= generic include lib nsgmls sgmlnorm spam spent sx
|
|
||||||
SUBDIR+= grove spgrove style jade dsssl
|
|
||||||
.if !defined(NOPORTDOCS)
|
|
||||||
SUBDIR+= doc jadedoc
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.include <bsd.subdir.mk>
|
|
@ -1,64 +0,0 @@
|
|||||||
BINDIR= ${PREFIX}/bin
|
|
||||||
LIBDIR= ${PREFIX}/lib
|
|
||||||
DOCDIR= ${PREFIX}/share/doc/jade
|
|
||||||
INCDIR= ${PREFIX}/include/sp
|
|
||||||
SGMLDIR= ${PREFIX}/share/sgml/jade
|
|
||||||
PERL?= perl
|
|
||||||
M4?= m4
|
|
||||||
|
|
||||||
# Prevent descent into non existant subdirectories passed through
|
|
||||||
# from an assignment of SUBDIR on the make command line.
|
|
||||||
SUBDIR=
|
|
||||||
|
|
||||||
# The 2.1.x series of FreeBSD doesn't have libstdc++.
|
|
||||||
.if exists(/usr/lib/libstdc++.a)
|
|
||||||
CPPLIB= -lstdc++
|
|
||||||
# SHLIB_MAJOR?= 1
|
|
||||||
# SHLIB_MINOR?= 5
|
|
||||||
.else
|
|
||||||
CPPLIB= -lg++
|
|
||||||
.endif
|
|
||||||
|
|
||||||
# If you use gcc, then you must have at least version 2.7.2 and
|
|
||||||
# you must use -fno-implicit-templates
|
|
||||||
# and -O (or any optimization level >= 1).
|
|
||||||
# c++ is a front-end for gcc which takes care of linking with -lstdc++
|
|
||||||
# the -idirafter option is to work around the bsd.sys.mk lossage with C++
|
|
||||||
CXX=c++ -fno-implicit-templates -O2 -idirafter=${DESTDIR}/usr/include/g++
|
|
||||||
#WARN=-Wall -Wno-reorder -Wwrite-strings -Wpointer-arith -Wnested-externs -Woverloaded-virtual -Wbad-function-cast -Wno-unused
|
|
||||||
# Executables will be *very* large if you use -g.
|
|
||||||
DEBUG=
|
|
||||||
# Add -DSP_HAVE_BOOL if you have the bool type.
|
|
||||||
# Add -DSP_ANSI_CLASS_INST for ANSI style explicit class template instantiation.
|
|
||||||
# Add -DSP_MULTI_BYTE for multi-byte support.
|
|
||||||
# Add -DSP_HAVE_LOCALE if you have setlocale().
|
|
||||||
# Add -DSP_HAVE_GETTEXT if you gettext() and friends (eg Solaris 2.3).
|
|
||||||
# Add -DSP_HAVE_SOCKET if you have sockets and you want support for HTTP
|
|
||||||
# Add -DSGML_CATALOG_FILES_DEFAULT=\"/usr/local/lib/sgml/catalog\"
|
|
||||||
# (for example) to change the value used if the SGML_CATALOG_FILES
|
|
||||||
# environment variable is unset. SP now automatically searches for a file
|
|
||||||
# called "catalog" in the same directory as the document entity.
|
|
||||||
DEFINES=-DSGML_CATALOG_FILES_DEFAULT=\"${PREFIX}/share/sgml/catalog\"
|
|
||||||
DEFINES+=-DSP_HAVE_BOOL -DSP_ANSI_CLASS_INST
|
|
||||||
INCLUDES+=-I. -I${.CURDIR}/../include -I${.CURDIR}/../generic
|
|
||||||
CXXFLAGS=-ansi $(DEBUG) $(WARN) $(DEFINES) $(INCLUDES)
|
|
||||||
|
|
||||||
.SUFFIXES: .m4 .msg .h .cc .C .cxx .o .po .so
|
|
||||||
|
|
||||||
.m4.cxx:
|
|
||||||
rm -f $@
|
|
||||||
${M4} ${.CURDIR}/../lib/instmac.m4 $< >$@
|
|
||||||
chmod -w $@
|
|
||||||
|
|
||||||
.msg.h:
|
|
||||||
${PERL} -w ${.CURDIR}/../msggen.pl ${MSGGENFLAGS} $<
|
|
||||||
|
|
||||||
# Some of the C++ targets in bsd.lib.mk are messed up in FreeBSD 2.1.x
|
|
||||||
|
|
||||||
.if !exists(/usr/lib/libstdc++.a)
|
|
||||||
.cc.so .C.so .cxx.so:
|
|
||||||
${CXX} ${PICFLAG} -DPIC ${CXXFLAGS} -c ${.IMPSRC} -o ${.TARGET}
|
|
||||||
@${LD} -x -r ${.TARGET}
|
|
||||||
@mv a.out ${.TARGET}
|
|
||||||
|
|
||||||
.endif
|
|
@ -1,14 +0,0 @@
|
|||||||
FILES= archform.htm build.htm catalog.htm charset.htm features.htm
|
|
||||||
FILES+= generic.htm ideas.htm index.htm new.htm nsgmls.htm sgmldecl.htm
|
|
||||||
FILES+= sgmlnorm.htm sgmlsout.htm spam.htm spent.htm sysdecl.htm
|
|
||||||
FILES+= sysid.htm sx.htm xml.htm
|
|
||||||
NOOBJ= noobj
|
|
||||||
|
|
||||||
all clean cleandir depend lint tags:
|
|
||||||
|
|
||||||
afterinstall:
|
|
||||||
mkdir -p ${DESTDIR}${DOCDIR}
|
|
||||||
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
|
|
||||||
${DESTDIR}${DOCDIR}
|
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
|
@ -1,14 +0,0 @@
|
|||||||
FILES= catalog demo.dsl demo.sgm dsssl.dtd
|
|
||||||
FILES+= fot.dtd style-sheet.dtd
|
|
||||||
NOOBJ= noobj
|
|
||||||
|
|
||||||
all clean cleandir depend lint tags:
|
|
||||||
|
|
||||||
afterinstall:
|
|
||||||
mkdir -p ${DESTDIR}${SGMLDIR}
|
|
||||||
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
|
|
||||||
${DESTDIR}${SGMLDIR}
|
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
|
||||||
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
|||||||
FILES= EventGenerator.h ParserEventGeneratorKit.h SGMLApplication.h
|
|
||||||
NOOBJ= noobj
|
|
||||||
|
|
||||||
all clean cleandir depend lint tags:
|
|
||||||
|
|
||||||
afterinstall:
|
|
||||||
mkdir -p ${DESTDIR}${INCDIR}
|
|
||||||
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
|
|
||||||
${DESTDIR}${INCDIR}
|
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
|
@ -1,10 +0,0 @@
|
|||||||
LIB= grove
|
|
||||||
NOPIC= nopic # currently boken
|
|
||||||
SRCS= Node.cxx LocNode.cxx
|
|
||||||
NOPROFILE= noprofile
|
|
||||||
CPLUSPLUSLIB= 1 # include c++rt0.o for constructors
|
|
||||||
|
|
||||||
install:
|
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
|
||||||
|
|
@ -1,43 +0,0 @@
|
|||||||
FILES= Allocator.h ArcEngine.h Attribute.h Attributed.h Big5CodingSystem.h
|
|
||||||
FILES+= Boolean.h CharMap.cxx CharMap.h CharsetDecl.h CharsetInfo.h
|
|
||||||
FILES+= CharsetRegistry.h CmdLineApp.h CodingSystem.h CodingSystemKit.h
|
|
||||||
FILES+= ConsoleOutput.h ContentState.h ContentToken.h CopyOwner.cxx
|
|
||||||
FILES+= CopyOwner.h DescriptorManager.h Dtd.h EUCJPCodingSystem.h
|
|
||||||
FILES+= ElementType.h Entity.h EntityApp.h EntityCatalog.h EntityDecl.h
|
|
||||||
FILES+= EntityManager.h ErrnoMessageArg.h ErrorCountEventHandler.h Event.h
|
|
||||||
FILES+= EventsWanted.h ExtendEntityManager.h ExternalId.h
|
|
||||||
FILES+= Fixed2CodingSystem.h GenericEventHandler.h Hash.h HashTable.cxx
|
|
||||||
FILES+= HashTable.h HashTableItemBase.cxx HashTableItemBase.h IList.h
|
|
||||||
FILES+= IListBase.h IListIter.h IListIterBase.h IQueue.cxx IQueue.h ISet.cxx
|
|
||||||
FILES+= ISet.h ISetIter.h IdentityCodingSystem.h InputSource.h
|
|
||||||
FILES+= InternalInputSource.h Link.h LinkProcess.h List.cxx List.h ListIter.h
|
|
||||||
FILES+= LiteralStorage.h Location.h Lpd.h Markup.h Message.h
|
|
||||||
FILES+= MessageArg.h MessageBuilder.h MessageEventHandler.h
|
|
||||||
FILES+= MessageFormatter.h MessageReporter.h MessageTable.h Mode.h NCVector.h
|
|
||||||
FILES+= NCVector.sed Named.h NamedResource.h NamedResourceTable.h
|
|
||||||
FILES+= NamedTable.h Notation.h NotationStorage.h OpenElement.h Options.cxx
|
|
||||||
FILES+= Options.h
|
|
||||||
FILES+= OutputByteStream.h OutputCharStream.h Owner.cxx Owner.h
|
|
||||||
FILES+= OwnerTable.cxx OwnerTable.h ParserApp.h ParserOptions.h
|
|
||||||
FILES+= PointerTable.cxx PointerTable.h PosixStorage.h Ptr.cxx Ptr.h
|
|
||||||
FILES+= RangeMap.cxx RangeMap.h Resource.h RewindStorageObject.h
|
|
||||||
FILES+= SJISCodingSystem.h SOEntityCatalog.h Sd.h SdText.h
|
|
||||||
FILES+= SearchResultMessageArg.h SgmlParser.h ShortReferenceMap.h
|
|
||||||
FILES+= StdioStorage.h StorageManager.h StringC.h StringOf.cxx StringOf.h
|
|
||||||
FILES+= StringResource.h SubstTable.cxx SubstTable.h Syntax.h Text.h
|
|
||||||
FILES+= TranslateCodingSystem.h TypeId.h URLStorage.h UTF8CodingSystem.h
|
|
||||||
FILES+= UnicodeCodingSystem.h UnivCharsetDesc.h Vector.cxx Vector.h
|
|
||||||
FILES+= Win32CodingSystem.h WinApp.h WinInetStorage.h XcharMap.cxx
|
|
||||||
FILES+= XcharMap.h config.h XMLCodingSystem.h
|
|
||||||
FILES+= constant.h macros.h rtti.h sptchar.h types.h xnew.h
|
|
||||||
NOOBJ= noobj
|
|
||||||
|
|
||||||
all clean cleandir depend lint tags:
|
|
||||||
|
|
||||||
afterinstall:
|
|
||||||
mkdir -p ${DESTDIR}${INCDIR}
|
|
||||||
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
|
|
||||||
${DESTDIR}${INCDIR}
|
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
|||||||
PROG= jade
|
|
||||||
SRCS= jade.cxx SgmlFOTBuilder.cxx RtfFOTBuilder.cxx
|
|
||||||
SRCS+= HtmlFOTBuilder.cxx TeXFOTBuilder.cxx TransformFOTBuilder.cxx
|
|
||||||
|
|
||||||
INCLUDES=-I${.CURDIR}/../grove -I${.CURDIR}/../spgrove -I${.CURDIR}/../style
|
|
||||||
LDADD= -L${.CURDIR}/../style -L${.CURDIR}/../spgrove
|
|
||||||
LDADD+= -L${.CURDIR}/../grove -L${.CURDIR}/../lib
|
|
||||||
LDADD+= -lstyle -lspgrove -lgrove -lsp -lm ${CPPLIB}
|
|
||||||
|
|
||||||
NOMAN=noman
|
|
||||||
|
|
||||||
DPSRCS=JadeMessages.h HtmlMessages.h RtfMessages.h TeXMessages.h \
|
|
||||||
HtmlFOTBuilder_inst.cxx RtfFOTBuilder_inst.cxx TransformFOTBuilder_inst.cxx
|
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
|
@ -1,11 +0,0 @@
|
|||||||
FILES= TeX.htm copying.txt jade.htm transform.htm dsssl2.htm
|
|
||||||
NOOBJ= noobj
|
|
||||||
|
|
||||||
all clean cleandir depend lint tags:
|
|
||||||
|
|
||||||
afterinstall:
|
|
||||||
mkdir -p ${DESTDIR}${DOCDIR}
|
|
||||||
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
|
|
||||||
${DESTDIR}${DOCDIR}
|
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
|
@ -1,54 +0,0 @@
|
|||||||
LIB=sp
|
|
||||||
NOPIC= nopic # currently broken
|
|
||||||
NOPROFILE= noprofile
|
|
||||||
CPLUSPLUSLIB= 1 # include c++rt0.o for constructors
|
|
||||||
|
|
||||||
MSGGENFLAGS=-l
|
|
||||||
COMMON_SRCS=Allocator.cxx Link.cxx IListBase.cxx TypeId.cxx assert.cxx
|
|
||||||
ENTMGR_SRCS=CharsetInfo.cxx EntityCatalog.cxx EntityDecl.cxx EntityManager.cxx \
|
|
||||||
Hash.cxx InputSource.cxx Location.cxx Message.cxx MessageArg.cxx \
|
|
||||||
UnivCharsetDesc.cxx entmgr_inst.cxx
|
|
||||||
XENTMGR_SRCS=LiteralStorage.cxx URLStorage.cxx RewindStorageObject.cxx \
|
|
||||||
ErrnoMessageArg.cxx OffsetOrderedList.cxx DescriptorManager.cxx \
|
|
||||||
ExtendEntityManager.cxx PosixStorage.cxx StdioStorage.cxx \
|
|
||||||
StorageManager.cxx CodingSystem.cxx IdentityCodingSystem.cxx \
|
|
||||||
UTF8CodingSystem.cxx Fixed2CodingSystem.cxx UnicodeCodingSystem.cxx \
|
|
||||||
EUCJPCodingSystem.cxx SJISCodingSystem.cxx TranslateCodingSystem.cxx \
|
|
||||||
Big5CodingSystem.cxx SearchResultMessageArg.cxx SOEntityCatalog.cxx \
|
|
||||||
CodingSystemKit.cxx OutputByteStream.cxx xentmgr_inst.cxx \
|
|
||||||
XMLCodingSystem.cxx
|
|
||||||
PARSER_SRCS=ContentState.cxx ParserState.cxx parser_inst.cxx parseSd.cxx Parser.cxx \
|
|
||||||
parseInstance.cxx parseMode.cxx parseAttribute.cxx \
|
|
||||||
LinkProcess.cxx Lpd.cxx parseDecl.cxx ShortReferenceMap.cxx \
|
|
||||||
parseParam.cxx parseCommon.cxx SgmlParser.cxx \
|
|
||||||
Entity.cxx Attribute.cxx OpenElement.cxx Notation.cxx NotationStorage.cxx ParserOptions.cxx Dtd.cxx \
|
|
||||||
Undo.cxx Param.cxx TokenMessageArg.cxx Group.cxx \
|
|
||||||
CharsetDecl.cxx CharsetRegistry.cxx ExternalId.cxx \
|
|
||||||
TrieBuilder.cxx Sd.cxx Syntax.cxx Partition.cxx ModeInfo.cxx Recognizer.cxx \
|
|
||||||
Markup.cxx Text.cxx ContentToken.cxx ElementType.cxx Event.cxx \
|
|
||||||
InternalInputSource.cxx OutputState.cxx ParserMessages.cxx \
|
|
||||||
SdText.cxx NumericCharRefOrigin.cxx Id.cxx StringVectorMessageArg.cxx
|
|
||||||
APP_SRCS=ErrorCountEventHandler.cxx MessageEventHandler.cxx MessageFormatter.cxx \
|
|
||||||
MessageReporter.cxx MessageTable.cxx OutputCharStream.cxx ConsoleOutput.cxx \
|
|
||||||
CmdLineApp.cxx EntityApp.cxx ParserApp.cxx app_inst.cxx \
|
|
||||||
ArcEngine.cxx arc_inst.cxx
|
|
||||||
GENERIC_SRCS=ParserEventGeneratorKit.cxx SGMLApplication.cxx EventGenerator.cxx \
|
|
||||||
GenericEventHandler.cxx
|
|
||||||
|
|
||||||
DPSRCS=version.h entmgr_inst.cxx \
|
|
||||||
xentmgr_inst.cxx EntityManagerMessages.h CatalogMessages.h \
|
|
||||||
PosixStorageMessages.h URLStorageMessages.h StdioStorageMessages.h \
|
|
||||||
ParserMessages.h parser_inst.cxx app_inst.cxx \
|
|
||||||
ParserAppMessages.h CmdLineAppMessages.h \
|
|
||||||
ArcEngineMessages.h arc_inst.cxx MessageReporterMessages.h \
|
|
||||||
MessageFormatterMessages.h
|
|
||||||
|
|
||||||
SRCS=$(COMMON_SRCS) $(ENTMGR_SRCS) $(XENTMGR_SRCS) $(PARSER_SRCS) $(APP_SRCS) \
|
|
||||||
$(GENERIC_SRCS)
|
|
||||||
|
|
||||||
${.CURDIR}/version.h: ${.CURDIR}/../VERSION ${.CURDIR}/mkversion.pl
|
|
||||||
rm -f $@
|
|
||||||
${PERL} -w ${.CURDIR}/mkversion.pl ${.CURDIR}/../VERSION >$@
|
|
||||||
chmod -w $@
|
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
|
@ -1,3 +0,0 @@
|
|||||||
MD5 (jade-1.2.1.tar.gz) = 4239670ca6b578bff68b8c2e7cd1225f
|
|
||||||
RMD160 (jade-1.2.1.tar.gz) = 615ebcc1b17a284d60a7976f13649a0ea78aa58d
|
|
||||||
SHA1 (jade-1.2.1.tar.gz) = 4326e73b7f0b865515e1bb90c622a8b2aa6ecd06
|
|
@ -1,10 +0,0 @@
|
|||||||
PROG= nsgmls
|
|
||||||
SRCS= nsgmls.cxx SgmlsEventHandler.cxx RastEventHandler.cxx
|
|
||||||
SRCS+= StringSet.cxx nsgmls_inst.o
|
|
||||||
LDADD= ${CPPLIB} -L${.CURDIR}/../lib -lsp
|
|
||||||
|
|
||||||
NOMAN= noman
|
|
||||||
|
|
||||||
DPSRCS= nsgmls_inst.cxx NsgmlsMessages.h RastEventHandlerMessages.h
|
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
|
@ -1,7 +0,0 @@
|
|||||||
PROG= sgmlnorm
|
|
||||||
SRCS= SGMLGenerator.cxx sgmlnorm.cxx
|
|
||||||
LDADD= ${CPPLIB} -L${.CURDIR}/../lib -lsp
|
|
||||||
|
|
||||||
NOMAN= noman
|
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
|
@ -1,9 +0,0 @@
|
|||||||
PROG= spam
|
|
||||||
SRCS= spam.cxx CopyEventHandler.cxx MarkupEventHandler.cxx spam_inst.cxx
|
|
||||||
LDADD= ${CPPLIB} -L${.CURDIR}/../lib -lsp
|
|
||||||
|
|
||||||
NOMAN= noman
|
|
||||||
|
|
||||||
DPSRCS= spam_inst.cxx SpamMessages.h
|
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
|
@ -1,7 +0,0 @@
|
|||||||
PROG= spent
|
|
||||||
SRCS= spent.cxx
|
|
||||||
LDADD= ${CPPLIB} -L${.CURDIR}/../lib -lsp
|
|
||||||
|
|
||||||
NOMAN= noman
|
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
|
@ -1,11 +0,0 @@
|
|||||||
LIB= spgrove
|
|
||||||
NOPIC= nopic # Currently broken
|
|
||||||
SRCS= GroveApp.cxx GroveBuilder.cxx SdNode.cxx
|
|
||||||
NOPROFILE= noprofile
|
|
||||||
CPLUSPLUSLIB= 1 # include c++rt0.o for constructors
|
|
||||||
|
|
||||||
install:
|
|
||||||
|
|
||||||
INCLUDES=-I${.CURDIR}/../grove
|
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
|
@ -1,18 +0,0 @@
|
|||||||
LIB= style
|
|
||||||
NOPIC= nopic # Currently broken
|
|
||||||
SRCS= Collector.cxx DssslApp.cxx DssslSpecEventHandler.cxx ELObj.cxx
|
|
||||||
SRCS+= ELObjMessageArg.cxx Expression.cxx FOTBuilder.cxx FlowObj.cxx
|
|
||||||
SRCS+= GroveManager.cxx
|
|
||||||
SRCS+= InheritedC.cxx Insn.cxx Interpreter.cxx InterpreterMessages.cxx
|
|
||||||
SRCS+= NumberCache.cxx ProcessContext.cxx ProcessingMode.cxx Style.cxx
|
|
||||||
SRCS+= StyleEngine.cxx primitive.cxx style_inst.cxx
|
|
||||||
SRCS+= MacroFlowObj.cxx Pattern.cxx SchemeParser.cxx
|
|
||||||
|
|
||||||
NOPROFILE= noprofile
|
|
||||||
CPLUSPLUSLIB= 1 # include c++rt0.o for constructors
|
|
||||||
|
|
||||||
install:
|
|
||||||
|
|
||||||
INCLUDES=-I${.CURDIR}/../grove -I${.CURDIR}/../spgrove
|
|
||||||
|
|
||||||
.include <bsd.lib.mk>
|
|
@ -1,7 +0,0 @@
|
|||||||
PROG= sx
|
|
||||||
SRCS= sx.cxx XmlOutputEventHandler.cxx sx_inst.cxx
|
|
||||||
LDADD= ${CPPLIB} -L${.CURDIR}/../lib -lsp
|
|
||||||
|
|
||||||
NOMAN= noman
|
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
|
@ -1,17 +0,0 @@
|
|||||||
*** include/config.h.orig Wed Jun 12 11:56:06 1996
|
|
||||||
--- include/config.h Tue Oct 15 17:08:09 1996
|
|
||||||
***************
|
|
||||||
*** 7,12 ****
|
|
||||||
--- 7,18 ----
|
|
||||||
#define SP_INCLUDE_UNISTD_H
|
|
||||||
#define SP_POSIX_FILENAMES
|
|
||||||
|
|
||||||
+ #if (defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__))
|
|
||||||
+ #define SP_HAVE_LOCALE
|
|
||||||
+ #define SP_HAVE_SOCKET
|
|
||||||
+ #define SP_MULTI_BYTE
|
|
||||||
+ #endif
|
|
||||||
+
|
|
||||||
#ifdef __GNUG__
|
|
||||||
// It's not missing, but it pulls in libg++
|
|
||||||
#define SP_NEW_H_MISSING
|
|
@ -1,56 +0,0 @@
|
|||||||
--- lib/entmgr_inst.cxx.orig Wed Jul 21 16:21:12 1999
|
|
||||||
+++ lib/entmgr_inst.cxx Wed Jul 21 16:22:00 1999
|
|
||||||
@@ -436,7 +436,7 @@
|
|
||||||
#pragma define(Vector<String<EquivCode> >)
|
|
||||||
#else
|
|
||||||
#ifdef SP_ANSI_CLASS_INST
|
|
||||||
-template class Vector<String<EquivCode> >;
|
|
||||||
+//template class Vector<String<EquivCode> >;
|
|
||||||
#else
|
|
||||||
typedef Vector<String<EquivCode> > Dummy_30;
|
|
||||||
#endif
|
|
||||||
@@ -566,7 +566,7 @@
|
|
||||||
#pragma define(SharedXcharMap<unsigned char>)
|
|
||||||
#else
|
|
||||||
#ifdef SP_ANSI_CLASS_INST
|
|
||||||
-template class SharedXcharMap<unsigned char>;
|
|
||||||
+//template class SharedXcharMap<unsigned char>;
|
|
||||||
#else
|
|
||||||
typedef SharedXcharMap<unsigned char> Dummy_40;
|
|
||||||
#endif
|
|
||||||
@@ -592,7 +592,7 @@
|
|
||||||
#pragma define(String<EquivCode>)
|
|
||||||
#else
|
|
||||||
#ifdef SP_ANSI_CLASS_INST
|
|
||||||
-template class String<EquivCode>;
|
|
||||||
+//template class String<EquivCode>;
|
|
||||||
#else
|
|
||||||
typedef String<EquivCode> Dummy_42;
|
|
||||||
#endif
|
|
||||||
@@ -631,7 +631,7 @@
|
|
||||||
#pragma define(XcharMap<unsigned char>)
|
|
||||||
#else
|
|
||||||
#ifdef SP_ANSI_CLASS_INST
|
|
||||||
-template class XcharMap<unsigned char>;
|
|
||||||
+//template class XcharMap<unsigned char>;
|
|
||||||
#else
|
|
||||||
typedef XcharMap<unsigned char> Dummy_45;
|
|
||||||
#endif
|
|
||||||
@@ -670,7 +670,7 @@
|
|
||||||
#pragma define(Vector<PackedBoolean>)
|
|
||||||
#else
|
|
||||||
#ifdef SP_ANSI_CLASS_INST
|
|
||||||
-template class Vector<PackedBoolean>;
|
|
||||||
+//template class Vector<PackedBoolean>;
|
|
||||||
#else
|
|
||||||
typedef Vector<PackedBoolean> Dummy_48;
|
|
||||||
#endif
|
|
||||||
@@ -683,7 +683,7 @@
|
|
||||||
#pragma define(SubstTable<Char>)
|
|
||||||
#else
|
|
||||||
#ifdef SP_ANSI_CLASS_INST
|
|
||||||
-template class SubstTable<Char>;
|
|
||||||
+//template class SubstTable<Char>;
|
|
||||||
#else
|
|
||||||
typedef SubstTable<Char> Dummy_49;
|
|
||||||
#endif
|
|
@ -1,19 +0,0 @@
|
|||||||
*** lib/instmac.m4.orig Sun Jul 6 20:20:04 1997
|
|
||||||
--- lib/instmac.m4 Sun Jul 6 20:20:54 1997
|
|
||||||
***************
|
|
||||||
*** 75,81 ****
|
|
||||||
__undefine(`undefine')__dnl
|
|
||||||
__undefine(`undivert')__dnl
|
|
||||||
__undefine(`unix')__dnl
|
|
||||||
! __dnl __changequote(,)__dnl disable quoting
|
|
||||||
|
|
||||||
#ifdef SP_NAMESPACE
|
|
||||||
}
|
|
||||||
--- 75,81 ----
|
|
||||||
__undefine(`undefine')__dnl
|
|
||||||
__undefine(`undivert')__dnl
|
|
||||||
__undefine(`unix')__dnl
|
|
||||||
! __dnl __changequote(,)__dnl
|
|
||||||
|
|
||||||
#ifdef SP_NAMESPACE
|
|
||||||
}
|
|
@ -1,11 +0,0 @@
|
|||||||
--- lib/parser_inst.cxx.orig Wed Jul 21 16:26:55 1999
|
|
||||||
+++ lib/parser_inst.cxx Wed Jul 21 16:27:09 1999
|
|
||||||
@@ -1344,7 +1344,7 @@
|
|
||||||
#pragma define(Vector<unsigned int>)
|
|
||||||
#else
|
|
||||||
#ifdef SP_ANSI_CLASS_INST
|
|
||||||
-template class Vector<unsigned int>;
|
|
||||||
+//template class Vector<unsigned int>;
|
|
||||||
#else
|
|
||||||
typedef Vector<unsigned int> Dummy_97;
|
|
||||||
#endif
|
|
@ -1 +0,0 @@
|
|||||||
object-oriented SGML/XML parser toolkit and DSSSL engine
|
|
@ -1,22 +0,0 @@
|
|||||||
An object-oriented SGML/XML parser toolkit and DSSSL engine.
|
|
||||||
|
|
||||||
Features summary:
|
|
||||||
|
|
||||||
* Includes nsgmls
|
|
||||||
* Provides access to all information about SGML document
|
|
||||||
* Supports almost all optional SGML features
|
|
||||||
* Sophisticated entity manager
|
|
||||||
* Supports multi-byte character sets
|
|
||||||
* Object-oriented
|
|
||||||
* Written in C++ from scratch
|
|
||||||
* Fast
|
|
||||||
* Portable
|
|
||||||
* Production quality
|
|
||||||
* Free
|
|
||||||
|
|
||||||
Note: This port is a superset of the sp port. If you have sp
|
|
||||||
installed, it is recommended that you remove it before installing
|
|
||||||
jade.
|
|
||||||
|
|
||||||
John Fieber
|
|
||||||
jfieber@FreeBSD.org
|
|
@ -1,182 +0,0 @@
|
|||||||
@pkgcfl sp-*
|
|
||||||
bin/jade
|
|
||||||
bin/nsgmls
|
|
||||||
bin/sgmlnorm
|
|
||||||
bin/spam
|
|
||||||
bin/spent
|
|
||||||
bin/sx
|
|
||||||
include/sp/Allocator.h
|
|
||||||
include/sp/ArcEngine.h
|
|
||||||
include/sp/Attribute.h
|
|
||||||
include/sp/Attributed.h
|
|
||||||
include/sp/Big5CodingSystem.h
|
|
||||||
include/sp/Boolean.h
|
|
||||||
include/sp/CharMap.cxx
|
|
||||||
include/sp/CharMap.h
|
|
||||||
include/sp/CharsetDecl.h
|
|
||||||
include/sp/CharsetInfo.h
|
|
||||||
include/sp/CharsetRegistry.h
|
|
||||||
include/sp/CmdLineApp.h
|
|
||||||
include/sp/CodingSystem.h
|
|
||||||
include/sp/CodingSystemKit.h
|
|
||||||
include/sp/ConsoleOutput.h
|
|
||||||
include/sp/ContentState.h
|
|
||||||
include/sp/ContentToken.h
|
|
||||||
include/sp/CopyOwner.cxx
|
|
||||||
include/sp/CopyOwner.h
|
|
||||||
include/sp/DescriptorManager.h
|
|
||||||
include/sp/Dtd.h
|
|
||||||
include/sp/EUCJPCodingSystem.h
|
|
||||||
include/sp/ElementType.h
|
|
||||||
include/sp/Entity.h
|
|
||||||
include/sp/EntityApp.h
|
|
||||||
include/sp/EntityCatalog.h
|
|
||||||
include/sp/EntityDecl.h
|
|
||||||
include/sp/EntityManager.h
|
|
||||||
include/sp/ErrnoMessageArg.h
|
|
||||||
include/sp/ErrorCountEventHandler.h
|
|
||||||
include/sp/Event.h
|
|
||||||
include/sp/EventGenerator.h
|
|
||||||
include/sp/EventsWanted.h
|
|
||||||
include/sp/ExtendEntityManager.h
|
|
||||||
include/sp/ExternalId.h
|
|
||||||
include/sp/Fixed2CodingSystem.h
|
|
||||||
include/sp/GenericEventHandler.h
|
|
||||||
include/sp/Hash.h
|
|
||||||
include/sp/HashTable.cxx
|
|
||||||
include/sp/HashTable.h
|
|
||||||
include/sp/HashTableItemBase.cxx
|
|
||||||
include/sp/HashTableItemBase.h
|
|
||||||
include/sp/IList.h
|
|
||||||
include/sp/IListBase.h
|
|
||||||
include/sp/IListIter.h
|
|
||||||
include/sp/IListIterBase.h
|
|
||||||
include/sp/IQueue.cxx
|
|
||||||
include/sp/IQueue.h
|
|
||||||
include/sp/ISet.cxx
|
|
||||||
include/sp/ISet.h
|
|
||||||
include/sp/ISetIter.h
|
|
||||||
include/sp/IdentityCodingSystem.h
|
|
||||||
include/sp/InputSource.h
|
|
||||||
include/sp/InternalInputSource.h
|
|
||||||
include/sp/Link.h
|
|
||||||
include/sp/LinkProcess.h
|
|
||||||
include/sp/List.cxx
|
|
||||||
include/sp/List.h
|
|
||||||
include/sp/ListIter.h
|
|
||||||
include/sp/LiteralStorage.h
|
|
||||||
include/sp/Location.h
|
|
||||||
include/sp/Lpd.h
|
|
||||||
include/sp/Markup.h
|
|
||||||
include/sp/Message.h
|
|
||||||
include/sp/MessageArg.h
|
|
||||||
include/sp/MessageBuilder.h
|
|
||||||
include/sp/MessageEventHandler.h
|
|
||||||
include/sp/MessageFormatter.h
|
|
||||||
include/sp/MessageReporter.h
|
|
||||||
include/sp/MessageTable.h
|
|
||||||
include/sp/Mode.h
|
|
||||||
include/sp/NCVector.h
|
|
||||||
include/sp/NCVector.sed
|
|
||||||
include/sp/Named.h
|
|
||||||
include/sp/NamedResource.h
|
|
||||||
include/sp/NamedResourceTable.h
|
|
||||||
include/sp/NamedTable.h
|
|
||||||
include/sp/Notation.h
|
|
||||||
include/sp/NotationStorage.h
|
|
||||||
include/sp/OpenElement.h
|
|
||||||
include/sp/Options.cxx
|
|
||||||
include/sp/Options.h
|
|
||||||
include/sp/OutputByteStream.h
|
|
||||||
include/sp/OutputCharStream.h
|
|
||||||
include/sp/Owner.cxx
|
|
||||||
include/sp/Owner.h
|
|
||||||
include/sp/OwnerTable.cxx
|
|
||||||
include/sp/OwnerTable.h
|
|
||||||
include/sp/ParserApp.h
|
|
||||||
include/sp/ParserEventGeneratorKit.h
|
|
||||||
include/sp/ParserOptions.h
|
|
||||||
include/sp/PointerTable.cxx
|
|
||||||
include/sp/PointerTable.h
|
|
||||||
include/sp/PosixStorage.h
|
|
||||||
include/sp/Ptr.cxx
|
|
||||||
include/sp/Ptr.h
|
|
||||||
include/sp/RangeMap.cxx
|
|
||||||
include/sp/RangeMap.h
|
|
||||||
include/sp/Resource.h
|
|
||||||
include/sp/RewindStorageObject.h
|
|
||||||
include/sp/SGMLApplication.h
|
|
||||||
include/sp/SJISCodingSystem.h
|
|
||||||
include/sp/SOEntityCatalog.h
|
|
||||||
include/sp/Sd.h
|
|
||||||
include/sp/SdText.h
|
|
||||||
include/sp/SearchResultMessageArg.h
|
|
||||||
include/sp/SgmlParser.h
|
|
||||||
include/sp/ShortReferenceMap.h
|
|
||||||
include/sp/StdioStorage.h
|
|
||||||
include/sp/StorageManager.h
|
|
||||||
include/sp/StringC.h
|
|
||||||
include/sp/StringOf.cxx
|
|
||||||
include/sp/StringOf.h
|
|
||||||
include/sp/StringResource.h
|
|
||||||
include/sp/SubstTable.cxx
|
|
||||||
include/sp/SubstTable.h
|
|
||||||
include/sp/Syntax.h
|
|
||||||
include/sp/Text.h
|
|
||||||
include/sp/TranslateCodingSystem.h
|
|
||||||
include/sp/TypeId.h
|
|
||||||
include/sp/URLStorage.h
|
|
||||||
include/sp/UTF8CodingSystem.h
|
|
||||||
include/sp/UnicodeCodingSystem.h
|
|
||||||
include/sp/UnivCharsetDesc.h
|
|
||||||
include/sp/Vector.cxx
|
|
||||||
include/sp/Vector.h
|
|
||||||
include/sp/Win32CodingSystem.h
|
|
||||||
include/sp/WinInetStorage.h
|
|
||||||
include/sp/WinApp.h
|
|
||||||
include/sp/XcharMap.cxx
|
|
||||||
include/sp/XcharMap.h
|
|
||||||
include/sp/XMLCodingSystem.h
|
|
||||||
include/sp/config.h
|
|
||||||
include/sp/constant.h
|
|
||||||
include/sp/macros.h
|
|
||||||
include/sp/rtti.h
|
|
||||||
include/sp/sptchar.h
|
|
||||||
include/sp/types.h
|
|
||||||
include/sp/xnew.h
|
|
||||||
lib/libsp.a
|
|
||||||
@comment lib/libsp.so.1.4
|
|
||||||
share/doc/jade/TeX.htm
|
|
||||||
share/doc/jade/archform.htm
|
|
||||||
share/doc/jade/build.htm
|
|
||||||
share/doc/jade/catalog.htm
|
|
||||||
share/doc/jade/charset.htm
|
|
||||||
share/doc/jade/copying.txt
|
|
||||||
share/doc/jade/dsssl2.htm
|
|
||||||
share/doc/jade/features.htm
|
|
||||||
share/doc/jade/generic.htm
|
|
||||||
share/doc/jade/ideas.htm
|
|
||||||
share/doc/jade/index.htm
|
|
||||||
share/doc/jade/jade.htm
|
|
||||||
share/doc/jade/new.htm
|
|
||||||
share/doc/jade/nsgmls.htm
|
|
||||||
share/doc/jade/sgmldecl.htm
|
|
||||||
share/doc/jade/sgmlnorm.htm
|
|
||||||
share/doc/jade/sgmlsout.htm
|
|
||||||
share/doc/jade/spam.htm
|
|
||||||
share/doc/jade/spent.htm
|
|
||||||
share/doc/jade/sx.htm
|
|
||||||
share/doc/jade/sysdecl.htm
|
|
||||||
share/doc/jade/sysid.htm
|
|
||||||
share/doc/jade/transform.htm
|
|
||||||
share/doc/jade/xml.htm
|
|
||||||
share/sgml/jade/catalog
|
|
||||||
share/sgml/jade/demo.dsl
|
|
||||||
share/sgml/jade/demo.sgm
|
|
||||||
share/sgml/jade/dsssl.dtd
|
|
||||||
share/sgml/jade/fot.dtd
|
|
||||||
share/sgml/jade/style-sheet.dtd
|
|
||||||
@comment @exec /sbin/ldconfig -m %D/lib
|
|
||||||
@dirrm include/sp
|
|
||||||
@dirrm share/doc/jade
|
|
||||||
@dirrm share/sgml/jade
|
|
17
textproc/jade/scripts/configure
vendored
17
textproc/jade/scripts/configure
vendored
@ -1,17 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
cd $WRKSRC
|
|
||||||
|
|
||||||
# Move the all directory out of the way; it messes with the all target
|
|
||||||
if [ -e all ]; then
|
|
||||||
mv all xall
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Copy the bmake files into place
|
|
||||||
install -c $FILESDIR/Makefile Makefile
|
|
||||||
install -c $FILESDIR/Makefile.inc Makefile.inc
|
|
||||||
|
|
||||||
for i in doc dsssl generic grove include jade jadedoc lib nsgmls \
|
|
||||||
sgmlnorm spam spent spgrove style sx; do
|
|
||||||
install -c $FILESDIR/$i-Makefile $i/Makefile
|
|
||||||
done
|
|
Loading…
Reference in New Issue
Block a user