--- old/usr/src/Makefile.master Fri Jul 17 10:02:02 2009 +++ new/usr/src/Makefile.master Fri Jul 17 10:02:02 2009 @@ -21,7 +21,7 @@ # Copyright 2009 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -#ident "@(#)Makefile.master 1.41 09/05/14 SMI" +#ident "@(#)Makefile.master 1.42 09/07/17 SMI" # # Makefile.master, global definitions for system source # @@ -195,7 +195,7 @@ ROOTUSRSBIN= $(ROOT)$(CFGUSRSBIN) ROOTETC= $(ROOT)$(CFGETC) ROOTBIN32= $(ROOT)$(CFGBIN32) -ROOTBIN64= $(ROOT)$(CFGBIN32) +ROOTBIN64= $(ROOT)$(CFGBIN64) ROOTLIB64= $(ROOT)$(CFGLIB64) ROOTUSRSBIN32= $(ROOT)$(CFGUSRSBIN32) ROOTUSRSBIN64= $(ROOT)$(CFGUSRSBIN64) --- old/usr/src/Targetdirs Fri Jul 17 10:02:02 2009 +++ new/usr/src/Targetdirs Fri Jul 17 10:02:02 2009 @@ -23,7 +23,7 @@ # Copyright 2009 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "@(#)Targetdirs 1.223 09/07/10 SMI" +# ident "@(#)Targetdirs 1.224 09/07/17 SMI" # # @@ -263,6 +263,7 @@ /usr/include/wx-2.8/wx/xml \ /usr/include/wx-2.8/wx/xrc \ /usr/include/xmlrpc-c \ + /usr/include/yaz \ /usr/jruby \ /usr/jruby/1.1.3 \ /usr/lib \ @@ -1104,6 +1105,8 @@ /usr/share/doc/xpp3-min \ /usr/share/doc/xsdlib \ /usr/share/doc/xstream \ + /usr/share/doc/yaz \ + /usr/share/doc/yaz/common \ /usr/share/emacs \ /usr/share/emacs/22.1 \ /usr/share/emacs/22.1/etc \ @@ -1680,7 +1683,11 @@ /usr/share/locale/zh_CN \ /usr/share/locale/zh_CN/LC_MESSAGES \ /usr/share/locale/zh_TW \ - /usr/share/locale/zh_TW/LC_MESSAGES + /usr/share/locale/zh_TW/LC_MESSAGES \ + /usr/share/yaz \ + /usr/share/yaz/etc \ + /usr/share/yaz/ill \ + /usr/share/yaz/z39.50 LP.LP= \ /etc/lp --- old/usr/src/lib/Makefile Fri Jul 17 10:02:02 2009 +++ new/usr/src/lib/Makefile Fri Jul 17 10:02:02 2009 @@ -23,7 +23,7 @@ # Copyright 2009 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "@(#)Makefile 1.83 09/07/07 SMI" +# ident "@(#)Makefile 1.84 09/07/17 SMI" # # @@ -106,6 +106,7 @@ libsndfile \ libtorrent \ libxmlrpc-c \ + libyaz \ logilab-common \ log4j \ logilab-astng \ --- /dev/null Fri Jul 17 10:02:03 2009 +++ new/usr/src/lib/libyaz/METADATA Fri Jul 17 10:02:03 2009 @@ -0,0 +1,11 @@ +NAME: yaz +VERSION: 3.0.46 +DESCRIPTION: toolkit supporting the development of Z39.50/SRW/SRU clients and servers +LICENSE: BSD-LIKE +PACKAGE: SUNWlibyaz +PROJECT_URL: http://www.indexdata.dk/yaz +SOURCE_DOWNLOAD: http://ftp.indexdata.dk/pub/yaz/yaz-3.0.46.tar.gz +SUPPORT: Community +BUGTRAQ: solaris/utility/yaz +OSR: 11329 +COMMENTS: --- /dev/null Fri Jul 17 10:02:03 2009 +++ new/usr/src/lib/libyaz/Makefile.sfw Fri Jul 17 10:02:03 2009 @@ -0,0 +1,123 @@ +# +# CDDL HEADER START +# +# The contents of this file are subject to the terms of the +# Common Development and Distribution License (the "License"). +# You may not use this file except in compliance with the License. +# +# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE +# or http://www.opensolaris.org/os/licensing. +# See the License for the specific language governing permissions +# and limitations under the License. +# +# When distributing Covered Code, include this CDDL HEADER in each +# file and include the License file at usr/src/OPENSOLARIS.LICENSE. +# If applicable, add the following below this CDDL HEADER, with the +# fields enclosed by brackets "[]" replaced with your own identifying +# information: Portions Copyright [yyyy] [name of copyright owner] +# +# CDDL HEADER END +# + +# +# Copyright 2009 Sun Microsystems, Inc. All rights reserved. +# Use is subject to license terms. +# +# ident "@(#)Makefile.sfw 1.1 09/07/17 SMI" +# + +# +# lib/libyaz/Makefile.sfw +# + +VER = $(COMPONENT_NAME:sh)-$(COMPONENT_VERSION:sh) +VER64 = $(VER)-64 +TARBALL = $(VER).tar.gz + +PREFIX = $(ROOT)/usr + +CONFIGURE_GENERIC = LDFLAGS="$(LDFLAGS)" +CONFIGURE_GENERIC += PATH=$(SFW_PATH) +CONFIGURE_GENERIC += MAKE="$(CCSMAKE)" + +PRE_CONFIGURE = CC="$(CC)" +PRE_CONFIGURE += CFLAGS="$(CFLAGS)" +PRE_CONFIGURE += $(CONFIGURE_GENERIC) + +PRE_CONFIGURE_64 = CC="$(CC64)" +PRE_CONFIGURE_64 += CFLAGS="$(CFLAGS64)" +PRE_CONFIGURE_64 += $(CONFIGURE_GENERIC) + +GENERIC_OPTIONS = --datarootdir="/usr/share" +GENERIC_OPTIONS += --includedir=$(CFGINC) +GENERIC_OPTIONS += --mandir=$(CFGMAN) +GENERIC_OPTIONS += INSTALL="$(INSTALL_PROTO)" +GENERIC_OPTIONS += INSTALL_DATA="$(INSTALL_PROTO) -m 444" + +CONFIGURE_OPTIONS_32 = --bindir=$(CFGBIN) +CONFIGURE_OPTIONS_32 += --libdir=$(CFGLIB) +CONFIGURE_OPTIONS_32 += $(GENERIC_OPTIONS) + +CONFIGURE_OPTIONS_64 = --bindir=$(CFGBIN64) +CONFIGURE_OPTIONS_64 += --libdir=$(CFGLIB64) +CONFIGURE_OPTIONS_64 += $(GENERIC_OPTIONS) + +include ../Makefile.lib + +all: all32 test32 install32 all64 test64 install64 + +all32: $(VER)/config.status + (cd $(VER); env - "CFLAGS=$(CFLAGS)" $(CONFIGURE_GENERIC) $(CCSMAKE)) + +all64: $(VER64)/config.status + (cd $(VER64); env - "CFLAGS=$(CFLAGS64)" $(CONFIGURE_GENERIC) $(CCSMAKE)) + +test32: + (cd $(VER); env - $(CCSMAKE) check) + +test64: + (cd $(VER64); env - $(CCSMAKE) check) + +install: all + for pkg in $(COMPONENT_PACKAGES:sh) ; do \ + $(SRC)/tools/protofix --pkg $$pkg --perm ; \ + done + + ($(RM) \ + $(ROOTBIN)/yaz-icu \ + $(ROOTMAN1)/yaz-icu.1 \ + $(ROOTLIB)/libyaz*.a \ + $(ROOTLIB)/libyaz*.la \ + $(ROOTBIN64)/yaz-* \ + $(ROOTBIN64)/zoomsh \ + $(ROOTLIB64)/libyaz*.a \ + $(ROOTLIB64)/libyaz*.la \ + $(ROOTLIB64)/pkgconfig/yaz.pc) + +install32: + (cd $(VER); env - $(CCSMAKE) MANSCRIPT=$(COMPONENT_TOP)/sunman-stability DESTDIR=$(ROOT) install) + +install64: + (cd $(VER64); env - $(CCSMAKE) MANSCRIPT=$(COMPONENT_TOP)/sunman-stability DESTDIR=$(ROOT) install) + +$(VER)/config.status: $(VER)/configure + (cd $(VER); env - $(PRE_CONFIGURE) $(SHELL) ./configure $(CONFIGURE_OPTIONS_32)) + +$(VER64)/config.status: $(VER64)/configure + (cd $(VER64); env - $(PRE_CONFIGURE_64) $(SHELL) ./configure $(CONFIGURE_OPTIONS_64)) + +$(VER)/configure: $(TARBALL) + $(GTAR) xzpf $(TARBALL) --no-same-owner + $(TOUCH) $(VER)/configure + +$(VER64)/configure: $(TARBALL) + $(MKDIR) -p tmp; (cd tmp; $(GTAR) xzpf ../$(TARBALL) --no-same-owner) + $(MV) tmp/$(VER) $(VER64); $(RMDIR) tmp + $(TOUCH) $(VER64)/configure + +clean: + -rm -rf $(VER) $(VER64) + +install_h: + +include ../Makefile.targ --- /dev/null Fri Jul 17 10:02:03 2009 +++ new/usr/src/lib/libyaz/sunman-stability Fri Jul 17 10:02:03 2009 @@ -0,0 +1,52 @@ +# +# CDDL HEADER START +# +# The contents of this file are subject to the terms of the +# Common Development and Distribution License (the "License"). +# You may not use this file except in compliance with the License. +# +# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE +# or http://www.opensolaris.org/os/licensing. +# See the License for the specific language governing permissions +# and limitations under the License. +# +# When distributing Covered Code, include this CDDL HEADER in each +# file and include the License file at usr/src/OPENSOLARIS.LICENSE. +# If applicable, add the following below this CDDL HEADER, with the +# fields enclosed by brackets "[]" replaced with your own identifying +# information: Portions Copyright [yyyy] [name of copyright owner] +# +# CDDL HEADER END +# +# Copyright 2009 Sun Microsystems, Inc. All rights reserved. +# Use is subject to license terms. +# +# ident "@(#)sunman-stability 1.1 09/07/17 SMI" +# +1i\ +'\\" t\ +\.\\"\ +\.\\" Modified for Solaris to to add the Solaris stability classification,\ +\.\\" and to add a note about source availability.\ +\.\\"\ +$a\ +\.\\" Begin Sun update\ +.SH ATTRIBUTES\ +See\ +.BR attributes (5)\ +for descriptions of the following attributes:\ +.sp\ +.TS\ +box;\ +cbp-1 | cbp-1\ +l | l .\ +ATTRIBUTE TYPE ATTRIBUTE VALUE\ +=\ +Availability SUNWlibyaz \ +=\ +Interface Stability Uncommitted \ +.TE \ +.PP\ +.SH NOTES\ +Source for YAZ is available on http://opensolaris.org.\ +\.\\" End Sun update Binary files /tmp/djaayRU and new/usr/src/lib/libyaz/yaz-3.0.46.tar.gz differ --- old/usr/src/pkgdefs/Makefile Fri Jul 17 10:02:03 2009 +++ new/usr/src/pkgdefs/Makefile Fri Jul 17 10:02:03 2009 @@ -23,7 +23,7 @@ # Copyright 2009 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "@(#)Makefile 1.251 09/07/12 SMI" +# ident "@(#)Makefile 1.252 09/07/17 SMI" # # @@ -226,6 +226,7 @@ SUNWlibtool \ SUNWlibtorrent \ SUNWlibxmlrpc-c \ + SUNWlibyaz \ SUNWlinks \ SUNWlogilab-common \ SUNWlogrotater \ --- /dev/null Fri Jul 17 10:02:03 2009 +++ new/usr/src/pkgdefs/SUNWlibyaz/Makefile Fri Jul 17 10:02:03 2009 @@ -0,0 +1,40 @@ +# +# CDDL HEADER START +# +# The contents of this file are subject to the terms of the +# Common Development and Distribution License (the "License"). +# You may not use this file except in compliance with the License. +# +# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE +# or http://www.opensolaris.org/os/licensing. +# See the License for the specific language governing permissions +# and limitations under the License. +# +# When distributing Covered Code, include this CDDL HEADER in each +# file and include the License file at usr/src/OPENSOLARIS.LICENSE. +# If applicable, add the following below this CDDL HEADER, with the +# fields enclosed by brackets "[]" replaced with your own identifying +# information: Portions Copyright [yyyy] [name of copyright owner] +# +# CDDL HEADER END +# + +# +# Copyright 2009 Sun Microsystems, Inc. All rights reserved. +# Use is subject to license terms. +# +# ident "@(#)Makefile 1.1 09/07/17 SMI" +# + +# +# pkgdefs/SUNWlibyaz/Makefile +# + +include ../Makefile.com + +.KEEP_STATE: + +all: $(FILES) +install: all pkg + +include ../Makefile.targ --- /dev/null Fri Jul 17 10:02:03 2009 +++ new/usr/src/pkgdefs/SUNWlibyaz/copyright Fri Jul 17 10:02:03 2009 @@ -0,0 +1,41 @@ +The copyright owners of this package license the public to copy it +(and do other things with it which are controlled by copyright law) +under a few simple conditions. + +Each source files describes the copyright license for that particular +file. This file summarizes the licenses for your convenience. + +An electronic copy can be found here: http://www.indexdata.dk/licensing/bsd + + Index Data +-------------------------------------------------------------------- + Revised BSD License +-------------------------------------------------------------------- +Copyright (C) 1995-2009 Index Data + +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: +Redistributions of source code must retain the above copyright notice, this list +of conditions and the following disclaimer. + +Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +Neither the name of Index Data nor the names of its contributors may be used to +endorse or promote products derived from this software without specific prior +written permission. + +THIS SOFTWARE IS PROVIDED BY INDEX DATA ``AS IS'' AND ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +IN NO EVENT SHALL INDEX DATA BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + --- /dev/null Fri Jul 17 10:02:03 2009 +++ new/usr/src/pkgdefs/SUNWlibyaz/depend Fri Jul 17 10:02:03 2009 @@ -0,0 +1,63 @@ +# +# CDDL HEADER START +# +# The contents of this file are subject to the terms of the +# Common Development and Distribution License (the "License"). +# You may not use this file except in compliance with the License. +# +# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE +# or http://www.opensolaris.org/os/licensing. +# See the License for the specific language governing permissions +# and limitations under the License. +# +# When distributing Covered Code, include this CDDL HEADER in each +# file and include the License file at usr/src/OPENSOLARIS.LICENSE. +# If applicable, add the following below this CDDL HEADER, with the +# fields enclosed by brackets "[]" replaced with your own identifying +# information: Portions Copyright [yyyy] [name of copyright owner] +# +# CDDL HEADER END +# + +# +# Copyright 2009 Sun Microsystems, Inc. All rights reserved. +# Use is subject to license terms. +# +# ident "@(#)depend 1.1 09/07/17 SMI" +# + +# +# This package information file defines software dependencies associated +# with the pkg. You can define three types of pkg dependencies with this file: +# P indicates a prerequisite for installation +# I indicates an incompatible package +# R indicates a reverse dependency +# see pkginfo(4), PKG parameter +# see pkginfo(4), NAME parameter +# see pkginfo(4), VERSION parameter +# see pkginfo(4), ARCH parameter +# +# () +# () +# ... +# +# ... +# + +# +# pkgdefs/SUNWlibyaz/depend +# + +P SUNWcar Core Architecture, (Root) +P SUNWcakr Core Solaris Kernel Architecture (Root) +P SUNWkvm Core Architecture, (Kvm) +P SUNWcsr Core Solaris, (Root) +P SUNWckr Core Solaris Kernel (Root) +P SUNWcnetr Core Solaris Network Infrastructure (Root) +P SUNWcsu Core Solaris, (Usr) +P SUNWcsd Core Solaris Devices +P SUNWcsl Core Solaris Libraries +P SUNWcslr Core Solaris Libraries (Root) +P SUNWgnutls GNU transport layer security library +P SUNWlxsl The XSLT library +P SUNWgnu-readline GNU readline --- /dev/null Fri Jul 17 10:02:03 2009 +++ new/usr/src/pkgdefs/SUNWlibyaz/pkginfo.tmpl Fri Jul 17 10:02:03 2009 @@ -0,0 +1,64 @@ +# +# CDDL HEADER START +# +# The contents of this file are subject to the terms of the +# Common Development and Distribution License (the "License"). +# You may not use this file except in compliance with the License. +# +# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE +# or http://www.opensolaris.org/os/licensing. +# See the License for the specific language governing permissions +# and limitations under the License. +# +# When distributing Covered Code, include this CDDL HEADER in each +# file and include the License file at usr/src/OPENSOLARIS.LICENSE. +# If applicable, add the following below this CDDL HEADER, with the +# fields enclosed by brackets "[]" replaced with your own identifying +# information: Portions Copyright [yyyy] [name of copyright owner] +# +# CDDL HEADER END +# + +# +# Copyright 2009 Sun Microsystems, Inc. All rights reserved. +# Use is subject to license terms. +# +# ident "@(#)pkginfo.tmpl 1.1 09/07/17 SMI" +# + +# +# This required package information file describes characteristics of the +# package, such as package abbreviation, full package name, package version, +# and package architecture. +# + +# +# pkgdefs/SUNWlibyaz/pkginfo.tmpl +# + +PKG="SUNWlibyaz" +NAME="yaz" +ARCH="ISA" +VERSION="SFWVERS,REV=0.0.0" +SUNW_PRODNAME="SunOS" +SUNW_PRODVERS="RELEASE/VERSION" +SUNW_PKGTYPE="usr" +MAXINST="1000" +CATEGORY="system" +DESC="Z39.50/SRW/SRU client/server development toolkit (3.0.46)" +VENDOR="Sun Microsystems, Inc." +HOTLINE="Please contact your local service provider" +EMAIL="" +CLASSES="none" +BASEDIR=/ +SUNW_PKGVERS="1.0" +SUNW_PKG_ALLZONES="false" +SUNW_PKG_HOLLOW="false" +SUNW_PKG_THISZONE="false" +#VSTOCK="" +#ISTATES="" +#RSTATES='' +#ULIMIT="" +#ORDER="" +#PSTAMP="" +#INTONLY="" --- /dev/null Fri Jul 17 10:02:03 2009 +++ new/usr/src/pkgdefs/SUNWlibyaz/prototype_com Fri Jul 17 10:02:03 2009 @@ -0,0 +1,289 @@ +# +# CDDL HEADER START +# +# The contents of this file are subject to the terms of the +# Common Development and Distribution License (the "License"). +# You may not use this file except in compliance with the License. +# +# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE +# or http://www.opensolaris.org/os/licensing. +# See the License for the specific language governing permissions +# and limitations under the License. +# +# When distributing Covered Code, include this CDDL HEADER in each +# file and include the License file at usr/src/OPENSOLARIS.LICENSE. +# If applicable, add the following below this CDDL HEADER, with the +# fields enclosed by brackets "[]" replaced with your own identifying +# information: Portions Copyright [yyyy] [name of copyright owner] +# +# CDDL HEADER END +# + +# +# Copyright 2009 Sun Microsystems, Inc. All rights reserved. +# Use is subject to license terms. +# +# ident "@(#)prototype_com 1.1 09/07/17 SMI" +# + +# +# This required package information file contains a list of package contents. +# The 'pkgmk' command uses this file to identify the contents of a package +# and their location on the development machine when building the package. +# Can be created via a text editor or through use of the 'pkgproto' command. +# + +# +#!search # where to find pkg objects +#!include # include another 'prototype' file +#!default # default used if not specified on entry +#!= # puts parameter in pkg environment +# + +# +# pkgdefs/SUNWlibyaz/prototype_com +# + +# packaging files +i pkginfo +i copyright +i depend +# +# source locations relative to the prototype file +# +# SUNWlibyaz +# +d none usr 0755 root sys +d none usr/bin 0755 root bin +f none usr/bin/yaz-asncomp 0555 root bin +f none usr/bin/yaz-client 0555 root bin +f none usr/bin/yaz-config 0555 root bin +f none usr/bin/yaz-iconv 0555 root bin +f none usr/bin/yaz-illclient 0555 root bin +f none usr/bin/yaz-marcdump 0555 root bin +f none usr/bin/yaz-ztest 0555 root bin +f none usr/bin/zoomsh 0555 root bin +d none usr/include 0755 root bin +d none usr/include/yaz 0755 root bin +f none usr/include/yaz/backend.h 0444 root bin +f none usr/include/yaz/ccl.h 0444 root bin +f none usr/include/yaz/ccl_xml.h 0444 root bin +f none usr/include/yaz/charneg.h 0444 root bin +f none usr/include/yaz/comstack.h 0444 root bin +f none usr/include/yaz/copy_types.h 0444 root bin +f none usr/include/yaz/cql.h 0444 root bin +f none usr/include/yaz/daemon.h 0444 root bin +f none usr/include/yaz/diagbib1.h 0444 root bin +f none usr/include/yaz/diagsru_update.h 0444 root bin +f none usr/include/yaz/diagsrw.h 0444 root bin +f none usr/include/yaz/errno.h 0444 root bin +f none usr/include/yaz/icu.h 0444 root bin +f none usr/include/yaz/ill-core.h 0444 root bin +f none usr/include/yaz/ill.h 0444 root bin +f none usr/include/yaz/item-req.h 0444 root bin +f none usr/include/yaz/libxml2_error.h 0444 root bin +f none usr/include/yaz/log.h 0444 root bin +f none usr/include/yaz/logrpn.h 0444 root bin +f none usr/include/yaz/marcdisp.h 0444 root bin +f none usr/include/yaz/match_glob.h 0444 root bin +f none usr/include/yaz/matchstr.h 0444 root bin +f none usr/include/yaz/mutex.h 0444 root bin +f none usr/include/yaz/nmem.h 0444 root bin +f none usr/include/yaz/nmem_xml.h 0444 root bin +f none usr/include/yaz/oclc-ill-req-ext.h 0444 root bin +f none usr/include/yaz/odr.h 0444 root bin +f none usr/include/yaz/oid_db.h 0444 root bin +f none usr/include/yaz/oid_std.h 0444 root bin +f none usr/include/yaz/oid_util.h 0444 root bin +f none usr/include/yaz/options.h 0444 root bin +f none usr/include/yaz/otherinfo.h 0444 root bin +f none usr/include/yaz/poll.h 0444 root bin +f none usr/include/yaz/pquery.h 0444 root bin +f none usr/include/yaz/proto.h 0444 root bin +f none usr/include/yaz/prt-ext.h 0444 root bin +f none usr/include/yaz/query-charset.h 0444 root bin +f none usr/include/yaz/querytowrbuf.h 0444 root bin +f none usr/include/yaz/readconf.h 0444 root bin +f none usr/include/yaz/record_conv.h 0444 root bin +f none usr/include/yaz/retrieval.h 0444 root bin +f none usr/include/yaz/rpn2cql.h 0444 root bin +f none usr/include/yaz/sc.h 0444 root bin +f none usr/include/yaz/snprintf.h 0444 root bin +f none usr/include/yaz/soap.h 0444 root bin +f none usr/include/yaz/sortspec.h 0444 root bin +f none usr/include/yaz/srw.h 0444 root bin +f none usr/include/yaz/statserv.h 0444 root bin +f none usr/include/yaz/tcpip.h 0444 root bin +f none usr/include/yaz/test.h 0444 root bin +f none usr/include/yaz/timing.h 0444 root bin +f none usr/include/yaz/tokenizer.h 0444 root bin +f none usr/include/yaz/tpath.h 0444 root bin +f none usr/include/yaz/unix.h 0444 root bin +f none usr/include/yaz/wrbuf.h 0444 root bin +f none usr/include/yaz/xmalloc.h 0444 root bin +f none usr/include/yaz/xmlquery.h 0444 root bin +f none usr/include/yaz/xmltypes.h 0444 root bin +f none usr/include/yaz/yaz-ccl.h 0444 root bin +f none usr/include/yaz/yaz-iconv.h 0444 root bin +f none usr/include/yaz/yaz-util.h 0444 root bin +f none usr/include/yaz/yaz-version.h 0444 root bin +f none usr/include/yaz/yconfig.h 0444 root bin +f none usr/include/yaz/z-accdes1.h 0444 root bin +f none usr/include/yaz/z-accform1.h 0444 root bin +f none usr/include/yaz/z-acckrb1.h 0444 root bin +f none usr/include/yaz/z-charneg.h 0444 root bin +f none usr/include/yaz/z-core.h 0444 root bin +f none usr/include/yaz/z-date.h 0444 root bin +f none usr/include/yaz/z-diag1.h 0444 root bin +f none usr/include/yaz/z-espec1.h 0444 root bin +f none usr/include/yaz/z-estask.h 0444 root bin +f none usr/include/yaz/z-exp.h 0444 root bin +f none usr/include/yaz/z-grs.h 0444 root bin +f none usr/include/yaz/z-mterm2.h 0444 root bin +f none usr/include/yaz/z-oclcui.h 0444 root bin +f none usr/include/yaz/z-opac.h 0444 root bin +f none usr/include/yaz/z-rrf1.h 0444 root bin +f none usr/include/yaz/z-rrf2.h 0444 root bin +f none usr/include/yaz/z-sum.h 0444 root bin +f none usr/include/yaz/z-sutrs.h 0444 root bin +f none usr/include/yaz/z-uifr1.h 0444 root bin +f none usr/include/yaz/z-univ.h 0444 root bin +f none usr/include/yaz/zes-admin.h 0444 root bin +f none usr/include/yaz/zes-expi.h 0444 root bin +f none usr/include/yaz/zes-exps.h 0444 root bin +f none usr/include/yaz/zes-order.h 0444 root bin +f none usr/include/yaz/zes-pquery.h 0444 root bin +f none usr/include/yaz/zes-psched.h 0444 root bin +f none usr/include/yaz/zes-pset.h 0444 root bin +f none usr/include/yaz/zes-update.h 0444 root bin +f none usr/include/yaz/zes-update0.h 0444 root bin +f none usr/include/yaz/zgdu.h 0444 root bin +f none usr/include/yaz/zoom.h 0444 root bin +d none usr/lib 0755 root bin +s none usr/lib/libyaz.so=./libyaz.so.3.0.0 +s none usr/lib/libyaz.so.3=./libyaz.so.3.0.0 +f none usr/lib/libyaz.so.3.0.0 0555 root bin +s none usr/lib/libyaz_icu.so=./libyaz_icu.so.3.0.0 +s none usr/lib/libyaz_icu.so.3=./libyaz_icu.so.3.0.0 +f none usr/lib/libyaz_icu.so.3.0.0 0555 root bin +s none usr/lib/libyaz_server.so=./libyaz_server.so.3.0.0 +s none usr/lib/libyaz_server.so.3=./libyaz_server.so.3.0.0 +f none usr/lib/libyaz_server.so.3.0.0 0555 root bin +d none usr/lib/pkgconfig 0755 root other +f none usr/lib/pkgconfig/yaz.pc 0444 root bin +d none usr/share 0755 root sys +d none usr/share/aclocal 0755 root other +f none usr/share/aclocal/yaz.m4 0444 root bin +d none usr/share/doc 0755 root other +d none usr/share/doc/yaz 0755 root bin +f none usr/share/doc/yaz/apilayer.png 0444 root bin +f none usr/share/doc/yaz/asn.external.html 0444 root bin +f none usr/share/doc/yaz/asn.html 0444 root bin +f none usr/share/doc/yaz/asn.pdu.html 0444 root bin +f none usr/share/doc/yaz/asn.preparing.html 0444 root bin +f none usr/share/doc/yaz/bib1.html 0444 root bin +d none usr/share/doc/yaz/common 0755 root bin +f none usr/share/doc/yaz/common/id.png 0444 root bin +f none usr/share/doc/yaz/common/style1.css 0444 root bin +f none usr/share/doc/yaz/comstack.addresses.html 0444 root bin +f none usr/share/doc/yaz/comstack.client.html 0444 root bin +f none usr/share/doc/yaz/comstack.common.html 0444 root bin +f none usr/share/doc/yaz/comstack.diagnostics.html 0444 root bin +f none usr/share/doc/yaz/comstack.html 0444 root bin +f none usr/share/doc/yaz/comstack.introduction.html 0444 root bin +f none usr/share/doc/yaz/comstack.server.html 0444 root bin +f none usr/share/doc/yaz/comstack.ssl.html 0444 root bin +f none usr/share/doc/yaz/comstack.summary.html 0444 root bin +f none usr/share/doc/yaz/credits.html 0444 root bin +f none usr/share/doc/yaz/future.html 0444 root bin +f none usr/share/doc/yaz/index.html 0444 root bin +f none usr/share/doc/yaz/indexdata.html 0444 root bin +f none usr/share/doc/yaz/installation.html 0444 root bin +f none usr/share/doc/yaz/installation.unix.html 0444 root bin +f none usr/share/doc/yaz/installation.win32.html 0444 root bin +f none usr/share/doc/yaz/introduction.api.html 0444 root bin +f none usr/share/doc/yaz/introduction.html 0444 root bin +f none usr/share/doc/yaz/license.html 0444 root bin +f none usr/share/doc/yaz/list-oids.html 0444 root bin +f none usr/share/doc/yaz/marc.html 0444 root bin +f none usr/share/doc/yaz/odr.debugging.html 0444 root bin +f none usr/share/doc/yaz/odr.html 0444 root bin +f none usr/share/doc/yaz/odr.programming.html 0444 root bin +f none usr/share/doc/yaz/odr.use.html 0444 root bin +f none usr/share/doc/yaz/reference.html 0444 root bin +f none usr/share/doc/yaz/server.backend.html 0444 root bin +f none usr/share/doc/yaz/server.backendfunctions.html 0444 root bin +f none usr/share/doc/yaz/server.frontend.html 0444 root bin +f none usr/share/doc/yaz/server.html 0444 root bin +f none usr/share/doc/yaz/server.invocation.html 0444 root bin +f none usr/share/doc/yaz/server.main.html 0444 root bin +f none usr/share/doc/yaz/server.vhosts.html 0444 root bin +f none usr/share/doc/yaz/soap.html 0444 root bin +f none usr/share/doc/yaz/soap.http.html 0444 root bin +f none usr/share/doc/yaz/soap.srw.html 0444 root bin +f none usr/share/doc/yaz/soap.xml.html 0444 root bin +f none usr/share/doc/yaz/tools.html 0444 root bin +f none usr/share/doc/yaz/tools.log.html 0444 root bin +f none usr/share/doc/yaz/tools.nmem.html 0444 root bin +f none usr/share/doc/yaz/tools.oid.html 0444 root bin +f none usr/share/doc/yaz/tools.retrieval.html 0444 root bin +f none usr/share/doc/yaz/yaz-asncomp.html 0444 root bin +f none usr/share/doc/yaz/yaz-client.html 0444 root bin +f none usr/share/doc/yaz/yaz-config.html 0444 root bin +f none usr/share/doc/yaz/yaz-iconv.html 0444 root bin +f none usr/share/doc/yaz/yaz-icu.html 0444 root bin +f none usr/share/doc/yaz/yaz-illclient.html 0444 root bin +f none usr/share/doc/yaz/yaz-log.html 0444 root bin +f none usr/share/doc/yaz/yaz-marcdump.html 0444 root bin +f none usr/share/doc/yaz/yaz-ztest.html 0444 root bin +f none usr/share/doc/yaz/yaz.html 0444 root bin +f none usr/share/doc/yaz/zoom.events.html 0444 root bin +f none usr/share/doc/yaz/zoom.extendedservices.html 0444 root bin +f none usr/share/doc/yaz/zoom.html 0444 root bin +f none usr/share/doc/yaz/zoom.options.html 0444 root bin +f none usr/share/doc/yaz/zoom.query.html 0444 root bin +f none usr/share/doc/yaz/zoom.records.html 0444 root bin +f none usr/share/doc/yaz/zoom.resultsets.html 0444 root bin +f none usr/share/doc/yaz/zoom.scan.html 0444 root bin +f none usr/share/doc/yaz/zoomsh.html 0444 root bin +d none usr/share/man 0755 root bin +d none usr/share/man/man1 0755 root bin +f none usr/share/man/man1/yaz-asncomp.1 0444 root bin +f none usr/share/man/man1/yaz-client.1 0444 root bin +f none usr/share/man/man1/yaz-iconv.1 0444 root bin +f none usr/share/man/man1/yaz-illclient.1 0444 root bin +f none usr/share/man/man1/yaz-marcdump.1 0444 root bin +f none usr/share/man/man1/zoomsh.1 0444 root bin +d none usr/share/man/man7 0755 root bin +f none usr/share/man/man7/bib1-attr.7 0444 root bin +f none usr/share/man/man7/yaz-log.7 0444 root bin +f none usr/share/man/man7/yaz.7 0444 root bin +d none usr/share/man/man8 0755 root bin +f none usr/share/man/man8/yaz-config.8 0444 root bin +f none usr/share/man/man8/yaz-ztest.8 0444 root bin +d none usr/share/yaz 0755 root bin +d none usr/share/yaz/etc 0755 root bin +f none usr/share/yaz/etc/MARC21slim2DC.xsl 0444 root bin +f none usr/share/yaz/etc/MARC21slim2MODS.xsl 0444 root bin +f none usr/share/yaz/etc/MARC21slim2RDFDC.xsl 0444 root bin +f none usr/share/yaz/etc/MARC21slimUtils.xsl 0444 root bin +f none usr/share/yaz/etc/cqlpass.properties 0444 root bin +f none usr/share/yaz/etc/maps.xml 0444 root bin +f none usr/share/yaz/etc/opacxml.xsd 0444 root bin +f none usr/share/yaz/etc/pqf.properties 0444 root bin +f none usr/share/yaz/etc/yazgfs.xml 0444 root bin +d none usr/share/yaz/ill 0755 root bin +f none usr/share/yaz/ill/ill.tcl 0444 root bin +f none usr/share/yaz/ill/ill9702.asn 0444 root bin +f none usr/share/yaz/ill/item-req.asn 0444 root bin +f none usr/share/yaz/ill/oclc-ill-req-ext.asn 0444 root bin +d none usr/share/yaz/z39.50 0755 root bin +f none usr/share/yaz/z39.50/charneg-3.asn 0444 root bin +f none usr/share/yaz/z39.50/datetime.asn 0444 root bin +f none usr/share/yaz/z39.50/esadmin.asn 0444 root bin +f none usr/share/yaz/z39.50/esupdate.asn 0444 root bin +f none usr/share/yaz/z39.50/mterm2.asn 0444 root bin +f none usr/share/yaz/z39.50/oclcui.asn 0444 root bin +f none usr/share/yaz/z39.50/univres.asn 0444 root bin +f none usr/share/yaz/z39.50/z.tcl 0444 root bin +f none usr/share/yaz/z39.50/z3950v3.asn 0444 root bin --- /dev/null Fri Jul 17 10:02:04 2009 +++ new/usr/src/pkgdefs/SUNWlibyaz/prototype_i386 Fri Jul 17 10:02:04 2009 @@ -0,0 +1,70 @@ +# +# CDDL HEADER START +# +# The contents of this file are subject to the terms of the +# Common Development and Distribution License (the "License"). +# You may not use this file except in compliance with the License. +# +# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE +# or http://www.opensolaris.org/os/licensing. +# See the License for the specific language governing permissions +# and limitations under the License. +# +# When distributing Covered Code, include this CDDL HEADER in each +# file and include the License file at usr/src/OPENSOLARIS.LICENSE. +# If applicable, add the following below this CDDL HEADER, with the +# fields enclosed by brackets "[]" replaced with your own identifying +# information: Portions Copyright [yyyy] [name of copyright owner] +# +# CDDL HEADER END +# + +# +# Copyright 2009 Sun Microsystems, Inc. All rights reserved. +# Use is subject to license terms. +# +# ident "@(#)prototype_i386 1.1 09/07/17 SMI" +# + +# +# This required package information file contains a list of package contents. +# The 'pkgmk' command uses this file to identify the contents of a package +# and their location on the development machine when building the package. +# Can be created via a text editor or through use of the 'pkgproto' command. +# + +# +#!search # where to find pkg objects +#!include # include another 'prototype' file +#!default # default used if not specified on entry +#!= # puts parameter in pkg environment +# + +# +# pkgdefs/SUNWlibyaz/prototype_i386 +# + +# +# Include ISA independent files (prototype_com) +# +!include prototype_com +# +# +# +# List files which are I386 specific here +# +# source locations relative to the prototype file +# +# +# SUNWlibyaz +# +d none usr/lib/amd64 0755 root bin +s none usr/lib/amd64/libyaz.so=./libyaz.so.3.0.0 +s none usr/lib/amd64/libyaz.so.3=./libyaz.so.3.0.0 +f none usr/lib/amd64/libyaz.so.3.0.0 0555 root bin +s none usr/lib/amd64/libyaz_icu.so=./libyaz_icu.so.3.0.0 +s none usr/lib/amd64/libyaz_icu.so.3=./libyaz_icu.so.3.0.0 +f none usr/lib/amd64/libyaz_icu.so.3.0.0 0555 root bin +s none usr/lib/amd64/libyaz_server.so=./libyaz_server.so.3.0.0 +s none usr/lib/amd64/libyaz_server.so.3=./libyaz_server.so.3.0.0 +f none usr/lib/amd64/libyaz_server.so.3.0.0 0555 root bin --- /dev/null Fri Jul 17 10:02:04 2009 +++ new/usr/src/pkgdefs/SUNWlibyaz/prototype_sparc Fri Jul 17 10:02:04 2009 @@ -0,0 +1,67 @@ +# +# CDDL HEADER START +# +# The contents of this file are subject to the terms of the +# Common Development and Distribution License (the "License"). +# You may not use this file except in compliance with the License. +# +# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE +# or http://www.opensolaris.org/os/licensing. +# See the License for the specific language governing permissions +# and limitations under the License. +# +# When distributing Covered Code, include this CDDL HEADER in each +# file and include the License file at usr/src/OPENSOLARIS.LICENSE. +# If applicable, add the following below this CDDL HEADER, with the +# fields enclosed by brackets "[]" replaced with your own identifying +# information: Portions Copyright [yyyy] [name of copyright owner] +# +# CDDL HEADER END +# + +# +# Copyright 2009 Sun Microsystems, Inc. All rights reserved. +# Use is subject to license terms. +# +# ident "@(#)prototype_sparc 1.1 09/07/17 SMI" +# + +# +# This required package information file contains a list of package contents. +# The 'pkgmk' command uses this file to identify the contents of a package +# and their location on the development machine when building the package. +# Can be created via a text editor or through use of the 'pkgproto' command. + +#!search # where to find pkg objects +#!include # include another 'prototype' file +#!default # default used if not specified on entry +#!= # puts parameter in pkg environment + +# +# pkgdefs/SUNWlibyaz/prototype_sparc +# + +# +# Include ISA independent files (prototype_com) +# +!include prototype_com +# +# +# +# List files which are SPARC specific here +# +# source locations relative to the prototype file +# +# +# SUNWlibyaz +# +d none usr/lib/sparcv9 0755 root bin +s none usr/lib/sparcv9/libyaz.so=./libyaz.so.3.0.0 +s none usr/lib/sparcv9/libyaz.so.3=./libyaz.so.3.0.0 +f none usr/lib/sparcv9/libyaz.so.3.0.0 0555 root bin +s none usr/lib/sparcv9/libyaz_icu.so=./libyaz_icu.so.3.0.0 +s none usr/lib/sparcv9/libyaz_icu.so.3=./libyaz_icu.so.3.0.0 +f none usr/lib/sparcv9/libyaz_icu.so.3.0.0 0555 root bin +s none usr/lib/sparcv9/libyaz_server.so=./libyaz_server.so.3.0.0 +s none usr/lib/sparcv9/libyaz_server.so.3=./libyaz_server.so.3.0.0 +f none usr/lib/sparcv9/libyaz_server.so.3.0.0 0555 root bin