summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorYing-Chieh Liao <ijliao@FreeBSD.org>2002-09-24 06:46:04 +0000
committerYing-Chieh Liao <ijliao@FreeBSD.org>2002-09-24 06:46:04 +0000
commitec6f60c5495d01cd1b97a5995744da8e8c31c7f7 (patch)
treee4b43f0c324ca360f0e346d504ec5cd8c42759f2 /devel
parentHook postgresql-devel up to the build (diff)
move devel/domc to textproc/
Approved by: kris
Notes
Notes: svn path=/head/; revision=67078
Diffstat (limited to 'devel')
-rw-r--r--devel/Makefile1
-rw-r--r--devel/domc/Makefile31
-rw-r--r--devel/domc/distinfo1
-rw-r--r--devel/domc/files/patch-Makefile38
-rw-r--r--devel/domc/files/patch-src::expatls.c10
-rw-r--r--devel/domc/pkg-comment1
-rw-r--r--devel/domc/pkg-descr5
-rw-r--r--devel/domc/pkg-plist8
8 files changed, 0 insertions, 95 deletions
diff --git a/devel/Makefile b/devel/Makefile
index 3cc8a2a6d7f0..699762180d31 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -141,7 +141,6 @@
SUBDIR += dmake
SUBDIR += dmalloc
SUBDIR += doc++
- SUBDIR += domc
SUBDIR += dotconf
SUBDIR += doxygen
SUBDIR += e4graph
diff --git a/devel/domc/Makefile b/devel/domc/Makefile
deleted file mode 100644
index 3e50f4749f3f..000000000000
--- a/devel/domc/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-# ex:ts=8
-# New ports collection makefile for: domc
-# Date created: Oct 8, 2001
-# Whom: ijliao
-#
-# $FreeBSD$
-#
-
-PORTNAME= domc
-PORTVERSION= 0.5.8
-CATEGORIES= devel
-MASTER_SITES= http://auditorymodels.org/domc/src/
-EXTRACT_SUFX= .tgz
-
-MAINTAINER= ports@FreeBSD.org
-
-LIB_DEPENDS= expat.1:${PORTSDIR}/textproc/expat
-
-SHLIB_MAJOR= 0
-
-MAKE_ENV= SHLIB_MAJOR="${SHLIB_MAJOR}"
-INSTALLS_SHLIB= yes
-PLIST_SUB= SHLIB_MAJOR="${SHLIB_MAJOR}"
-
-post-install:
-.if !defined(NOPORTDOCS)
- @${MKDIR} ${DOCSDIR}
- ${INSTALL_DATA} ${WRKSRC}/docs/*.* ${DOCSDIR}
-.endif
-
-.include <bsd.port.mk>
diff --git a/devel/domc/distinfo b/devel/domc/distinfo
deleted file mode 100644
index 0f6b80a045e3..000000000000
--- a/devel/domc/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (domc-0.5.8.tgz) = 318bf898a680af5b32399b78af31de06
diff --git a/devel/domc/files/patch-Makefile b/devel/domc/files/patch-Makefile
deleted file mode 100644
index f6ad1c422486..000000000000
--- a/devel/domc/files/patch-Makefile
+++ /dev/null
@@ -1,38 +0,0 @@
---- Makefile.orig Thu Dec 20 19:16:25 2001
-+++ Makefile Sun Dec 30 11:43:57 2001
-@@ -1,26 +1,26 @@
--INSTDIR = /usr/local
-+INSTDIR = ${PREFIX}
- OBJS = src/expatls.o src/events.o src/node.o src/dom.o src/msgno.o src/stack.o
- LIBNAME = domc
--SONAME = lib$(LIBNAME).so.0.5.8
--SOVERSION = lib$(LIBNAME).so.0.5
-+SONAME = lib$(LIBNAME).so.${SHLIB_MAJOR}
-+SOVERSION = lib$(LIBNAME).so.${SHLIB_MAJOR}
-
- all: lib$(LIBNAME).so
-
- lib$(LIBNAME).so: $(OBJS)
-- gcc -Wall -shared $(OBJS) -lc -Wl,-soname -Wl,$(SOVERSION) -o $(SONAME)
-+ ${CC} ${CFLAGS} -shared $(OBJS) -Wl,-soname -Wl,$(SOVERSION) -o $(SONAME) -L${LOCALBASE}/lib -lexpat -Wl,-rpath ${LOCALBASE}/lib
-
- example:
- $(MAKE) -C examples
-
- install:
-- cp src/dom.h $(INSTDIR)/include/dom.h
-- cp src/msgno.h $(INSTDIR)/include/msgno.h
-- cp $(SONAME) $(INSTDIR)/lib
-- cd $(INSTDIR)/lib && ln -sf $(SONAME) $(SOVERSION) && ln -sf $(SONAME) lib$(LIBNAME).so
-+ ${BSD_INSTALL_DATA} src/dom.h $(INSTDIR)/include/dom.h
-+ ${BSD_INSTALL_DATA} src/msgno.h $(INSTDIR)/include/msgno.h
-+ ${BSD_INSTALL_DATA} $(SONAME) $(INSTDIR)/lib
-+ ln -sf $(SONAME) $(INSTDIR)/lib/lib$(LIBNAME).so
-
- clean:
- rm $(OBJS) $(SONAME) $(INSTDIR)/include/dom.h $(INSTDIR)/include/msgno.h $(INSTDIR)/lib/$(SONAME) $(INSTDIR)/lib/$(SOVERSION) $(INSTDIR)/lib/lib$(LIBNAME).so
- if [ -f examples/d5.o ]; then $(MAKE) -C examples clean; fi
-
- .c.o:
-- gcc -Wall -I../include -Isrc -Lsrc -fPIC -DPIC -c -o $*.o $<
-+ ${CC} ${CFLAGS} -I${LOCALBASE}/include/xml -I../include -Isrc -Lsrc -fPIC -DPIC -c -o $*.o $<
diff --git a/devel/domc/files/patch-src::expatls.c b/devel/domc/files/patch-src::expatls.c
deleted file mode 100644
index 352ebde3c041..000000000000
--- a/devel/domc/files/patch-src::expatls.c
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/expatls.c.orig Thu Dec 20 19:00:30 2001
-+++ src/expatls.c Sun Dec 30 11:34:02 2001
-@@ -25,6 +25,7 @@
- /* expatls.c - DOM_DocumentLS
- */
-
-+#include <sys/types.h>
- #include <stdlib.h>
- #include <limits.h>
- #include <ctype.h>
diff --git a/devel/domc/pkg-comment b/devel/domc/pkg-comment
deleted file mode 100644
index e09ab8b91584..000000000000
--- a/devel/domc/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-A light weight implementation of the DOM in ANSI C
diff --git a/devel/domc/pkg-descr b/devel/domc/pkg-descr
deleted file mode 100644
index 8b75ef4a87fe..000000000000
--- a/devel/domc/pkg-descr
+++ /dev/null
@@ -1,5 +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.
-
-WWW: http://auditorymodels.org/domc/
diff --git a/devel/domc/pkg-plist b/devel/domc/pkg-plist
deleted file mode 100644
index ad82fbd3f4a4..000000000000
--- a/devel/domc/pkg-plist
+++ /dev/null
@@ -1,8 +0,0 @@
-include/dom.h
-include/msgno.h
-lib/libdomc.so
-lib/libdomc.so.%%SHLIB_MAJOR%%
-%%PORTDOCS%%share/doc/domc/domc.html
-%%PORTDOCS%%share/doc/domc/index.html
-%%PORTDOCS%%share/doc/domc/todo.txt
-%%PORTDOCS%%@dirrm share/doc/domc