summaryrefslogtreecommitdiff
path: root/textproc/xmlcatmgr
diff options
context:
space:
mode:
authorjmmv <jmmv>2003-01-10 19:24:48 +0000
committerjmmv <jmmv>2003-01-10 19:24:48 +0000
commit512a2666ab4e2fd06d1a36755acc938bb9a22c52 (patch)
tree123d5a3e1ef962977eeb04956a129d2646187519 /textproc/xmlcatmgr
parent407d1bee1b80e0d1cd16e07b9ec4b513ce51fef7 (diff)
downloadpkgsrc-512a2666ab4e2fd06d1a36755acc938bb9a22c52.tar.gz
Initial import of xmlcatmgr, version 0.1:
xmlcatmgr is a command line script used to manipulate SGML and XML catalogs. It is designed with simplicity in mind: it does not depend on external programs nor libraries, so it is ideal to manage catalog files from inside pkgsrc. XML catalogs are files that contain mappings from public identifiers to system identifiers. This allows XML parsers to locate public identifiers in the local system.
Diffstat (limited to 'textproc/xmlcatmgr')
-rw-r--r--textproc/xmlcatmgr/DESCR8
-rw-r--r--textproc/xmlcatmgr/MESSAGE8
-rw-r--r--textproc/xmlcatmgr/Makefile24
-rw-r--r--textproc/xmlcatmgr/PLIST5
-rw-r--r--textproc/xmlcatmgr/buildlink2.mk22
-rw-r--r--textproc/xmlcatmgr/distinfo4
6 files changed, 71 insertions, 0 deletions
diff --git a/textproc/xmlcatmgr/DESCR b/textproc/xmlcatmgr/DESCR
new file mode 100644
index 00000000000..ce414c82f80
--- /dev/null
+++ b/textproc/xmlcatmgr/DESCR
@@ -0,0 +1,8 @@
+xmlcatmgr is a command line script used to manipulate SGML and XML catalogs.
+It is designed with simplicity in mind: it does not depend on external
+programs nor libraries, so it is ideal to manage catalog files from inside
+pkgsrc.
+
+XML catalogs are files that contain mappings from public identifiers to
+system identifiers. This allows XML parsers to locate public identifiers
+in the local system.
diff --git a/textproc/xmlcatmgr/MESSAGE b/textproc/xmlcatmgr/MESSAGE
new file mode 100644
index 00000000000..c9e550c0a7a
--- /dev/null
+++ b/textproc/xmlcatmgr/MESSAGE
@@ -0,0 +1,8 @@
+===========================================================================
+$NetBSD: MESSAGE,v 1.1.1.1 2003/01/10 19:24:48 jmmv Exp $
+
+The default catalog is ${PREFIX}/share/xml/catalog. If you will be
+using xmlcatmgr to manage catalogs from inside other packages, please do
+not manually specify it.
+
+===========================================================================
diff --git a/textproc/xmlcatmgr/Makefile b/textproc/xmlcatmgr/Makefile
new file mode 100644
index 00000000000..42bc17f0079
--- /dev/null
+++ b/textproc/xmlcatmgr/Makefile
@@ -0,0 +1,24 @@
+# $NetBSD: Makefile,v 1.1.1.1 2003/01/10 19:24:48 jmmv Exp $
+#
+
+DISTNAME= xmlcatmgr-0.1
+CATEGORIES= textproc
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=xmlcatmgr/}
+
+MAINTAINER= jmmv@netbsd.org
+HOMEPAGE= http://www.sourceforge.net/projects/xmlcatmgr/
+COMMENT= XML catalog manager
+
+USE_BUILDLINK2= YES
+
+MAKEFILE= Makefile.boot
+MAKE_ENV+= BT_PREFIX="${PREFIX}"
+MAKE_ENV+= BT_PROG_AWK="${AWK}"
+MAKE_ENV+= BT_PROG_SH="${SH}"
+MAKE_ENV+= BT_DIR_CATALOG="${PREFIX}/share/xml"
+
+post-install:
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/xml
+ ${PREFIX}/bin/xmlcatmgr create
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/textproc/xmlcatmgr/PLIST b/textproc/xmlcatmgr/PLIST
new file mode 100644
index 00000000000..9db69049928
--- /dev/null
+++ b/textproc/xmlcatmgr/PLIST
@@ -0,0 +1,5 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2003/01/10 19:24:48 jmmv Exp $
+bin/xmlcatmgr
+man/man1/xmlcatmgr.1
+share/xml/catalog
+@dirrm share/xml
diff --git a/textproc/xmlcatmgr/buildlink2.mk b/textproc/xmlcatmgr/buildlink2.mk
new file mode 100644
index 00000000000..8be4bdad851
--- /dev/null
+++ b/textproc/xmlcatmgr/buildlink2.mk
@@ -0,0 +1,22 @@
+# $NetBSD: buildlink2.mk,v 1.1.1.1 2003/01/10 19:24:48 jmmv Exp $
+#
+# This Makefile fragment is included by packages that use xmlcatmgr.
+#
+# This file was created automatically using createbuildlink 2.3.
+#
+
+.if !defined(XMLCATMGR_BUILDLINK2_MK)
+XMLCATMGR_BUILDLINK2_MK= # defined
+
+BUILDLINK_PACKAGES+= xmlcatmgr
+BUILDLINK_DEPENDS.xmlcatmgr?= xmlcatmgr>=0.1
+BUILDLINK_PKGSRCDIR.xmlcatmgr?= ../../textproc/xmlcatmgr
+
+EVAL_PREFIX+= BUILDLINK_PREFIX.xmlcatmgr=xmlcatmgr
+BUILDLINK_PREFIX.xmlcatmgr_DEFAULT= ${LOCALBASE}
+
+BUILDLINK_TARGETS+= xmlcatmgr-buildlink
+
+xmlcatmgr-buildlink: _BUILDLINK_USE
+
+.endif # XMLCATMGR_BUILDLINK2_MK
diff --git a/textproc/xmlcatmgr/distinfo b/textproc/xmlcatmgr/distinfo
new file mode 100644
index 00000000000..587e9797dbb
--- /dev/null
+++ b/textproc/xmlcatmgr/distinfo
@@ -0,0 +1,4 @@
+$NetBSD: distinfo,v 1.1.1.1 2003/01/10 19:24:48 jmmv Exp $
+
+SHA1 (xmlcatmgr-0.1.tar.gz) = 0b0e617642bd95f527ee2f70eb0521d661b27e62
+Size (xmlcatmgr-0.1.tar.gz) = 6757 bytes