diff options
author | seb <seb@pkgsrc.org> | 2002-05-31 13:01:36 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2002-05-31 13:01:36 +0000 |
commit | c3b498ceffeb390ba58ca64926b90ae1674221fa (patch) | |
tree | 5474aa0cc7ab7af381f30a4c41a6c750f1bbc8ee /x11/xjman | |
parent | 9b3179d34e1bd6d64398495bd4a2652bc9d99c49 (diff) | |
download | pkgsrc-c3b498ceffeb390ba58ca64926b90ae1674221fa.tar.gz |
Reimport of package xjman from japanese/xjman into x11/xjman.
This is part of the japanese category retirement.
Pathnames to japanese/ adjusted.
Diffstat (limited to 'x11/xjman')
-rw-r--r-- | x11/xjman/DESCR | 12 | ||||
-rw-r--r-- | x11/xjman/MESSAGE | 13 | ||||
-rw-r--r-- | x11/xjman/Makefile | 74 | ||||
-rw-r--r-- | x11/xjman/PLIST | 5 | ||||
-rw-r--r-- | x11/xjman/distinfo | 4 | ||||
-rw-r--r-- | x11/xjman/files/COPYRIGHT | 396 | ||||
-rw-r--r-- | x11/xjman/files/COPYRIGHT.XJDP | 27 | ||||
-rw-r--r-- | x11/xjman/files/Makefile | 3 | ||||
-rw-r--r-- | x11/xjman/files/Makefile.inc | 9 |
9 files changed, 543 insertions, 0 deletions
diff --git a/x11/xjman/DESCR b/x11/xjman/DESCR new file mode 100644 index 00000000000..6f973655f93 --- /dev/null +++ b/x11/xjman/DESCR @@ -0,0 +1,12 @@ +Japanized X manual, presented by "The X Japanese Documentation Project". + +Copyright (c) 1993 The Regents of the University of California. +All rights reserved. +Copyright (c) 1998-1999 The X Japanese Documentation Project. + +This product includes software developed by +the University of California, Lawrence Berkeley Laboratory. + +X Japanese Documentation Project <URL:http://xjman.dsl.gr.jp/> +X Free86(TM): Home Page <URL:http://www.xfree86.org/> +The X Window System <URL:http://www.x.org/> diff --git a/x11/xjman/MESSAGE b/x11/xjman/MESSAGE new file mode 100644 index 00000000000..effadd657df --- /dev/null +++ b/x11/xjman/MESSAGE @@ -0,0 +1,13 @@ +====================================================================== +$NetBSD: MESSAGE,v 1.1.1.1 2002/05/31 13:01:36 seb Exp $ + +Copyright (c) 1993 The Regents of the University of California. +All rights reserved. +Copyright (c) 1998-1999 The X Japanese Documentation Project. +-- +This product includes software developed by +the University of California, Lawrence Berkeley Laboratory. +-- +Refer to the documentations at `${X11BASE}/share/doc/xjman/'. + +====================================================================== diff --git a/x11/xjman/Makefile b/x11/xjman/Makefile new file mode 100644 index 00000000000..1a5a078c0f0 --- /dev/null +++ b/x11/xjman/Makefile @@ -0,0 +1,74 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/05/31 13:01:36 seb Exp $ +# FreeBSD Id: ports/japanese/xjman/Makefile,v 1.10 1999/10/30 15:34:24 sada Exp + +DISTNAME= xjman-0.5 +CATEGORIES= japanese x11 +MASTER_SITES= http://xjman.dsl.gr.jp/ +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= sakamoto@netbsd.org +HOMEPAGE= http://xjman.dsl.gr.jp/ +COMMENT= Japanized X manual from "The X Japanese Documentation Project" + +DEPENDS+= ja-man-[0-9]*:../../misc/ja-man + +USE_X11BASE= yes +PLIST_SRC= ${WRKDIR}/PLIST +WRKSRC= ${WRKDIR}/man/ja_JP.eucJP +XJMANDIR= man/ja_JP.EUC +MAKE_ENV+= XJMANDIR=${XJMANDIR} + +NO_CONFIGURE= yes + +MANCOMPRESSED_IF_MANZ= yes + +.include "../../mk/bsd.prefs.mk" + +post-extract: +.for f in Makefile Makefile.inc + @${CP} ${FILESDIR}/${f} ${WRKSRC} +.endfor + +pre-build: +.for dir in man1 man3 man5 + @(cd ${WRKSRC}/${dir}; \ + for file in *; do \ + f=`${ECHO} $$file|${SED} -e 's|x$$||'`; \ + mlink=`head -1 $$file|${GREP} '^\.so man./'| \ + ${SED} -e 's|.*man./\(.*\)x|\1|'`; \ + if [ "$$mlink" = "" ]; then \ + ${ECHO} "MAN+= $$f" >> Makefile; \ + ${MV} $$file $$f; \ + else \ + ${ECHO} "MLINKS+= $$mlink $$f" >> Makefile; \ + ${SED} -e 's|x$$||' $$file > $$f; \ + ${RM} $$file; \ + fi; \ + done; \ + ${ECHO} ".include <bsd.prog.mk>" >> Makefile; \ + ) +.endfor + +MKCATPAGES?= yes + +post-build: + @${CP} ${PKGDIR}/PLIST ${PLIST_SRC} + @(cd ${WRKSRC}; \ + ${FIND} man1/*.1 man3/*.3 man5/*.5 -type f | \ + ${SED} -e 's|^|${XJMANDIR}/|' | sort >> ${PLIST_SRC}) +.if ${MKCATPAGES} != no + @(cd ${WRKSRC}; \ + ${FIND} man1/*.1 man3/*.3 man5/*.5 -type f | \ + ${SED} -e 's|^|${XJMANDIR}/|' \ + -e 's|man[135]\(/.*\)\.\([135]\)$$|cat\2\1.0|' | \ + sort >> ${PLIST_SRC}) +.endif + +post-install: + @${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xjman +.for i in COPYRIGHT COPYRIGHT.XJDP + @${INSTALL_DATA} ${FILESDIR}/$i ${PREFIX}/share/doc/xjman +.endfor + @${INSTALL_DATA} ${WRKDIR}/man/README ${PREFIX}/share/doc/xjman + +.include "../../mk/bsd.pkg.mk" diff --git a/x11/xjman/PLIST b/x11/xjman/PLIST new file mode 100644 index 00000000000..7825488e02a --- /dev/null +++ b/x11/xjman/PLIST @@ -0,0 +1,5 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2002/05/31 13:01:36 seb Exp $ +share/doc/xjman/COPYRIGHT +share/doc/xjman/COPYRIGHT.XJDP +share/doc/xjman/README +@dirrm share/doc/xjman diff --git a/x11/xjman/distinfo b/x11/xjman/distinfo new file mode 100644 index 00000000000..35fb71be7a8 --- /dev/null +++ b/x11/xjman/distinfo @@ -0,0 +1,4 @@ +$NetBSD: distinfo,v 1.1.1.1 2002/05/31 13:01:36 seb Exp $ + +SHA1 (xjman-0.5.tar.bz2) = 5282a9ec6fede402ee64c487b30ae52e885ec681 +Size (xjman-0.5.tar.bz2) = 799554 bytes diff --git a/x11/xjman/files/COPYRIGHT b/x11/xjman/files/COPYRIGHT new file mode 100644 index 00000000000..9c0a7f19e6b --- /dev/null +++ b/x11/xjman/files/COPYRIGHT @@ -0,0 +1,396 @@ + + + + + + + + + + Copyright + + The XFree86 Project, Inc. + + + +1. XFree86 Copyright + +XFree86 code without an explicit copyright is covered by the following copy- +right: + +Copyright (C) 1994-1998 The XFree86 Project, Inc. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT- +NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of the XFree86 Project shall not +be used in advertising or otherwise to promote the sale, use or other dealings +in this Software without prior written authorization from the XFree86 Project. + + +2. Other Copyrights + +Portions of code are covered by the following copyrights: + +2.1 X Consortium + +Copyright (C) 1996 X Consortium + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + + +Copyright 1 + + + + + +Copyright 2 + + + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT- +NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X +CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of the X Consortium shall not be +used in advertising or otherwise to promote the sale, use or other dealings in +this Software without prior written authorization from the X Consortium. + +X Window System is a trademark of X Consortium, Inc. + +2.2 Berkeley-based copyrights: + +2.2.1 General + +Redistribution and use in source and binary forms, with or without modifica- +tion, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. 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. + + 3. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER- +CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT +SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEM- +PLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTER- +RUPTION) 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. + +2.2.2 UCB/LBL + +Copyright (c) 1993 The Regents of the University of California. All rights +reserved. + +This software was developed by the Computer Systems Engineering group at +Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and contributed to +Berkeley. + +All advertising materials mentioning features or use of this software must dis- +play the following acknowledgement: This product includes software developed by +the University of California, Lawrence Berkeley Laboratory. + + + + + + + + + +Copyright 3 + + + +Redistribution and use in source and binary forms, with or without modifica- +tion, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. 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. + + 3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: This product includes soft- + ware developed by the University of California, Berkeley and its contrib- + utors. + + 4. Neither the name of the University 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 THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WAR- +RANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDI- +RECT, 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 LIA- +BILITY, 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. + +2.3 NVidia Corp + +Copyright (c) 1996-1998 NVIDIA, Corp. All rights reserved. + +NOTICE TO USER: The source code is copyrighted under U.S. and international +laws. NVIDIA, Corp. of Sunnyvale, California owns the copyright and as design +patents pending on the design and interface of the NV chips. Users and posses- +sors of this source code are hereby granted a nonexclusive, royalty-free copy- +right and design patent license to use this code in individual and commercial +software. + +Any use of this source code must include, in the user documentation and inter- +nal comments to the code, notices to the end user as follows: + +Copyright (c) 1996-1998 NVIDIA, Corp. NVIDIA design patents pending in the +U.S. and foreign countries. + +NVIDIA, CORP. MAKES NO REPRESENTATION ABOUT THE SUITABILITY OF THIS SOURCE +CODE FOR ANY PURPOSE. IT IS PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED WAR- +RANTY OF ANY KIND. NVIDIA, CORP. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS +SOURCE CODE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL NVIDIA, CORP. BE LIABLE FOR ANY +SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSO- +EVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF + + + + + + + + +Copyright 4 + + + +CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION +WITH THE USE OR PERFORMANCE OF THIS SOURCE CODE. + + Generated from XFree86: xc/programs/Xserver/hw/xfree86/doc/sgml/CPYRIGHT.sgml,v 3.9.2.2 1998/01/24 11:55:06 dawes Exp $ + + + + + + $XConsortium: CPYRIGHT.sgml /main/5 1996/10/25 16:24:53 kaleb $ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Copyright 5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CONTENTS + + + +1. XFree86 Copyright ........................................................ 1 + +2. Other Copyrights ......................................................... 1 + 2.1 X Consortium ......................................................... 1 + 2.2 Berkeley-based copyrights: ........................................... 2 + 2.3 NVidia Corp .......................................................... 3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + i + + diff --git a/x11/xjman/files/COPYRIGHT.XJDP b/x11/xjman/files/COPYRIGHT.XJDP new file mode 100644 index 00000000000..813cddc1d12 --- /dev/null +++ b/x11/xjman/files/COPYRIGHT.XJDP @@ -0,0 +1,27 @@ +Copyright (c),A 1998-1999 The X Japanese Documentation Project. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, dis- +tribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the fol- +lowing conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL- +ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE X JAPANESE DOCUMENTATION PROJECT BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR +THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of The X Japanese +Documentation Project shall not be used in advertising or otherwise to +promote the sale, use or other dealings in this Software without prior +written authorization from The X Japanese Documentation Project. + +X Window System is a trademark of The Open Group. diff --git a/x11/xjman/files/Makefile b/x11/xjman/files/Makefile new file mode 100644 index 00000000000..af0d7b795a5 --- /dev/null +++ b/x11/xjman/files/Makefile @@ -0,0 +1,3 @@ +SUBDIR= man1 man3 man5 + +.include <bsd.subdir.mk> diff --git a/x11/xjman/files/Makefile.inc b/x11/xjman/files/Makefile.inc new file mode 100644 index 00000000000..57436e9185c --- /dev/null +++ b/x11/xjman/files/Makefile.inc @@ -0,0 +1,9 @@ +NROFF= jgnroff -Tnippon +MANDIR= ${PREFIX}/${XJMANDIR} +TMACDIR= ${LOCALBASE}/share/groff/tmac +CATDEPS= ${TMACDIR}/tmac.andocj \ + ${TMACDIR}/tmac.docj \ + ${TMACDIR}/mdoc/doc-ditroffj \ + ${TMACDIR}/mdoc/doc-commonj \ + ${TMACDIR}/mdoc/doc-nroffj \ + ${TMACDIR}/mdoc/doc-symsj |