diff options
Diffstat (limited to 'textproc/domc')
-rw-r--r-- | textproc/domc/Makefile | 26 | ||||
-rw-r--r-- | textproc/domc/distinfo | 2 | ||||
-rw-r--r-- | textproc/domc/files/patch-Makefile | 46 | ||||
-rw-r--r-- | textproc/domc/files/patch-src_defines.h | 11 | ||||
-rw-r--r-- | textproc/domc/files/patch-src_domc.h | 11 | ||||
-rw-r--r-- | textproc/domc/pkg-descr | 3 | ||||
-rw-r--r-- | textproc/domc/pkg-plist | 12 |
7 files changed, 0 insertions, 111 deletions
diff --git a/textproc/domc/Makefile b/textproc/domc/Makefile deleted file mode 100644 index cfcb00f3d191..000000000000 --- a/textproc/domc/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -PORTNAME= domc -PORTVERSION= 0.8.0 -PORTREVISION= 5 -CATEGORIES= textproc -MASTER_SITES= http://www.ioplex.com/~miallen/domc/dl/ - -MAINTAINER= ports@FreeBSD.org -COMMENT= Lightweight implementation of the DOM in ANSI C -WWW= https://www.ioplex.com/~miallen/domc/ - -LICENSE= MIT - -DEPRECATED= Obsolete, doesn't support HTML5, DOM Level 4 and DOM 2020-06 -EXPIRATION_DATE=2025-04-30 - -LIB_DEPENDS= libexpat.so:textproc/expat2 \ - libmba.so:devel/libmba - -USES= gmake -MAKE_ENV= prefix="${LOCALBASE}" INSTDIR="${STAGEDIR}${PREFIX}" -MAKE_ARGS= CC="${CC}" RPM_OPT_FLAGS="${CFLAGS}" \ - MAJVERSION=${PORTVERSION:R:R} -CFLAGS+= -D__USE_XOPEN=__XSI_VISIBLE -USE_LDCONFIG= yes - -.include <bsd.port.mk> diff --git a/textproc/domc/distinfo b/textproc/domc/distinfo deleted file mode 100644 index 7fda586aef20..000000000000 --- a/textproc/domc/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (domc-0.8.0.tar.gz) = 37ce6e14a7c705ae9b9340a05c93c8dae89a7055d09e46ca1e84c3a8d7cffcbe -SIZE (domc-0.8.0.tar.gz) = 122571 diff --git a/textproc/domc/files/patch-Makefile b/textproc/domc/files/patch-Makefile deleted file mode 100644 index b0fef605251f..000000000000 --- a/textproc/domc/files/patch-Makefile +++ /dev/null @@ -1,46 +0,0 @@ ---- Makefile.orig 2004-09-09 22:31:42 UTC -+++ Makefile -@@ -1,7 +1,7 @@ --prefix = /usr/local -+prefix ?= /usr/local - includedir = $(prefix)/include - libdir = $(prefix)/lib --mandir = $(prefix)/man -+mandir = $(prefix)/share/man - CC = gcc - LIBNAME = domc - MAJVERSION = 0.8 -@@ -16,10 +16,10 @@ MAN = DOM_CharacterData.3m.gz DOM_Document.3m.g - OBJS = src/expatls.o src/events.o src/node.o src/nodelist.o src/namednodemap.o src/dom.o src/timestamp.o src/wcwidth.o src/mbs.o - MAN = DOM_CharacterData.3m.gz DOM_Document.3m.gz DOM_Element.3m.gz DOM_Implementation.3m.gz DOM_NamedNodeMap.3m.gz DOM_Node.3m.gz DOM_NodeList.3m.gz DOM_Text.3m.gz - --all: $(ARNAME)($(OBJS)) $(SONAME) src/defines.h -+all: $(SONAME) src/defines.h - - $(SONAME): $(OBJS) -- $(CC) -shared $(OBJS) -L$(libdir) -lmba -lexpat -Wl,-h,$(SOVERSION) -o $(SONAME) -+ $(CC) $(LDFLAGS) -shared $(OBJS) -L$(libdir) -lmba -lexpat -Wl,-h,$(SOVERSION) -o $(SONAME) - - .c.a: - $(CC) $(CFLAGS) -c -o $*.o $< -@@ -29,16 +29,15 @@ $(SONAME): $(OBJS) - .c.o: - $(CC) $(CFLAGS) -fpic -c -o $*.o $< - -+install: prefix=$(INSTDIR) - install: $(SONAME) - install -d $(libdir) - install -d $(includedir) - install -d $(mandir)/man3 -- install -m 644 $(ARNAME) $(libdir) -- install -m 755 $(SONAME) $(libdir) -+ ${BSD_INSTALL_LIB} $(SONAME) $(libdir) - cd $(libdir) && ln -sf $(SONAME) $(SOVERSION) && ln -sf $(SONAME) lib$(LIBNAME).so -- install -m 444 src/domc.h $(includedir) -- -install -m 444 docs/man/*.3m.gz $(mandir)/man3 -- -/sbin/ldconfig $(libdir) -+ ${BSD_INSTALL_DATA} src/domc.h $(includedir) -+ ${BSD_INSTALL_DATA} docs/man/*.3m.gz $(mandir)/man3 - - zip: - cd .. && zip -lr $(DISTRO)/.$(DISTRO).zip $(DISTRO) -x $(DISTRO)/.* $(DISTRO)/docs/man/* $(DISTRO)/tests/utf8* $(DISTRO)/domc.lib $(DISTRO)/domc.dll $(DISTRO)/domc_s.lib diff --git a/textproc/domc/files/patch-src_defines.h b/textproc/domc/files/patch-src_defines.h deleted file mode 100644 index 223a6be82cb3..000000000000 --- a/textproc/domc/files/patch-src_defines.h +++ /dev/null @@ -1,11 +0,0 @@ ---- src/defines.h~ -+++ src/defines.h -@@ -1,7 +1,7 @@ - #ifndef DEFINES_H - #define DEFINES_H - --#if defined(__sparc__) -+#if 0 //defined(__sparc__) - - #define NL "\n" - #define HAVE_ENCDEC 0 diff --git a/textproc/domc/files/patch-src_domc.h b/textproc/domc/files/patch-src_domc.h deleted file mode 100644 index d4e2ddcb22d3..000000000000 --- a/textproc/domc/files/patch-src_domc.h +++ /dev/null @@ -1,11 +0,0 @@ ---- src/domc.h.orig Thu Sep 9 23:52:10 2004 -+++ src/domc.h Sun Apr 10 22:14:52 2005 -@@ -33,7 +33,7 @@ - #include <errno.h> - #include <time.h> - --#if defined(__sparc__) -+#if 0 //defined(__sparc__) - #include <sys/inttypes.h> - #elif defined(_WIN32) - typedef unsigned __int64 uint64_t; diff --git a/textproc/domc/pkg-descr b/textproc/domc/pkg-descr deleted file mode 100644 index 64c059a9a60d..000000000000 --- a/textproc/domc/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -DOMC is a light weight implementation of the DOM in ANSI C as specified in -the W3C Document Object Model Level 1, Level 2, and Level 2 Events -recommendations. diff --git a/textproc/domc/pkg-plist b/textproc/domc/pkg-plist deleted file mode 100644 index cd4782f05020..000000000000 --- a/textproc/domc/pkg-plist +++ /dev/null @@ -1,12 +0,0 @@ -include/domc.h -lib/libdomc.so -lib/libdomc.so.0 -lib/libdomc.so.0.8.0 -share/man/man3/DOM_CharacterData.3m.gz -share/man/man3/DOM_Document.3m.gz -share/man/man3/DOM_Element.3m.gz -share/man/man3/DOM_Implementation.3m.gz -share/man/man3/DOM_NamedNodeMap.3m.gz -share/man/man3/DOM_Node.3m.gz -share/man/man3/DOM_NodeList.3m.gz -share/man/man3/DOM_Text.3m.gz |