diff options
author | Joseph Koshy <jkoshy@FreeBSD.org> | 2001-01-17 09:11:36 +0000 |
---|---|---|
committer | Joseph Koshy <jkoshy@FreeBSD.org> | 2001-01-17 09:11:36 +0000 |
commit | fd1acdaeba7615c3c13b8285f9fe535c45176877 (patch) | |
tree | d0edc7a10d681fff108d51f693b008b958939701 | |
parent | 6be5b50ca987fa61fa70adcff07a48b25cc3f71e (diff) | |
download | ports-fd1acdaeba7615c3c13b8285f9fe535c45176877.tar.gz ports-fd1acdaeba7615c3c13b8285f9fe535c45176877.zip |
Notes
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/rxp/Makefile | 31 | ||||
-rw-r--r-- | textproc/rxp/distinfo | 1 | ||||
-rw-r--r-- | textproc/rxp/pkg-comment | 1 | ||||
-rw-r--r-- | textproc/rxp/pkg-descr | 4 | ||||
-rw-r--r-- | textproc/rxp/pkg-plist | 16 |
6 files changed, 54 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index b585f4eafd2e..8df93243235c 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -118,6 +118,7 @@ SUBDIR += ruby-html-parser SUBDIR += ruby-rdtool SUBDIR += ruby-xmlparser + SUBDIR += rxp SUBDIR += sablotron SUBDIR += sarep SUBDIR += sdf diff --git a/textproc/rxp/Makefile b/textproc/rxp/Makefile new file mode 100644 index 000000000000..3df57dd958d5 --- /dev/null +++ b/textproc/rxp/Makefile @@ -0,0 +1,31 @@ +# New ports collection Makefile for: rxp +# Date created: 12 Jan 2001 +# Whom: jkoshy +# +# $FreeBSD$ +# + +PORTNAME= rxp +PORTVERSION= 1.2.3 +CATEGORIES= textproc +MASTER_SITES= ftp://ftp.cogsci.ed.ac.uk/pub/richard/ +DISTFILES= rxp.tar.gz + +MAINTAINER= jkoshy@freebsd.org + +MAN1= rxp.1 + +RXP_HEADERS= charset.h ctype16.h dtd.h hash.h input.h namespaces.h \ + rxputil.h stdio16.h string16.h system.h url.h version.h \ + xmlparser.h + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/rxp ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/librxp.a ${PREFIX}/lib + ${INSTALL_MAN} ${WRKSRC}/rxp.1 ${PREFIX}/man/man1 + ${MKDIR} ${PREFIX}/include/rxp +.for h in ${RXP_HEADERS} + ${INSTALL_DATA} ${WRKSRC}/${h} ${PREFIX}/include/rxp +.endfor + +.include <bsd.port.mk> diff --git a/textproc/rxp/distinfo b/textproc/rxp/distinfo new file mode 100644 index 000000000000..ba8fde1c4163 --- /dev/null +++ b/textproc/rxp/distinfo @@ -0,0 +1 @@ +MD5 (rxp.tar.gz) = b7c230a3053eb91d1c0a746942443cd7 diff --git a/textproc/rxp/pkg-comment b/textproc/rxp/pkg-comment new file mode 100644 index 000000000000..e33807f0c5a3 --- /dev/null +++ b/textproc/rxp/pkg-comment @@ -0,0 +1 @@ +A validating XML parser written in C diff --git a/textproc/rxp/pkg-descr b/textproc/rxp/pkg-descr new file mode 100644 index 000000000000..d5604336a1df --- /dev/null +++ b/textproc/rxp/pkg-descr @@ -0,0 +1,4 @@ +RXP is a validating XML parser written in C. It is licensed under the +GNU Public Licence. + +WWW: http://www.cogsci.ed.ac.uk/~richard/rxp.html diff --git a/textproc/rxp/pkg-plist b/textproc/rxp/pkg-plist new file mode 100644 index 000000000000..9a5bf5da2fbd --- /dev/null +++ b/textproc/rxp/pkg-plist @@ -0,0 +1,16 @@ +bin/rxp +lib/librxp.a +include/rxp/charset.h +include/rxp/ctype16.h +include/rxp/dtd.h +include/rxp/hash.h +include/rxp/input.h +include/rxp/namespaces.h +include/rxp/rxputil.h +include/rxp/stdio16.h +include/rxp/string16.h +include/rxp/system.h +include/rxp/url.h +include/rxp/version.h +include/rxp/xmlparser.h +@dirrm include/rxp |