From c9b8ed639a2d256bf0d935351ac22d9a8cda3456 Mon Sep 17 00:00:00 2001 From: kei Date: Sun, 3 Sep 2000 14:15:27 +0000 Subject: delete japanese/samba, since its feature is merged into net/samba. --- japanese/samba/Makefile | 100 ------- japanese/samba/files/md5 | 3 - japanese/samba/files/patch-sum | 7 - japanese/samba/files/samba.sh | 12 - japanese/samba/files/smb.conf.sample | 252 ---------------- japanese/samba/patches/patch-aa | 67 ----- japanese/samba/patches/patch-ac | 14 - japanese/samba/patches/patch-ad | 76 ----- japanese/samba/patches/patch-ae | 55 ---- japanese/samba/patches/patch-af | 35 --- japanese/samba/pkg/COMMENT | 1 - japanese/samba/pkg/DEINSTALL | 28 -- japanese/samba/pkg/DESCR | 22 -- japanese/samba/pkg/INSTALL | 33 --- japanese/samba/pkg/PLIST | 559 ----------------------------------- 15 files changed, 1264 deletions(-) delete mode 100644 japanese/samba/Makefile delete mode 100644 japanese/samba/files/md5 delete mode 100644 japanese/samba/files/patch-sum delete mode 100644 japanese/samba/files/samba.sh delete mode 100644 japanese/samba/files/smb.conf.sample delete mode 100644 japanese/samba/patches/patch-aa delete mode 100644 japanese/samba/patches/patch-ac delete mode 100644 japanese/samba/patches/patch-ad delete mode 100644 japanese/samba/patches/patch-ae delete mode 100644 japanese/samba/patches/patch-af delete mode 100644 japanese/samba/pkg/COMMENT delete mode 100644 japanese/samba/pkg/DEINSTALL delete mode 100644 japanese/samba/pkg/DESCR delete mode 100644 japanese/samba/pkg/INSTALL delete mode 100644 japanese/samba/pkg/PLIST (limited to 'japanese') diff --git a/japanese/samba/Makefile b/japanese/samba/Makefile deleted file mode 100644 index 2b14de8e8c6..00000000000 --- a/japanese/samba/Makefile +++ /dev/null @@ -1,100 +0,0 @@ -# $NetBSD: Makefile,v 1.2 2000/08/30 17:46:18 kei Exp $ - -DISTNAME= samba-2.0.7-ja-1.2 -WRKSRC= ${WRKDIR}/${DISTNAME}/source -CATEGORIES= japanese -MASTER_SITES= ftp://ftp.samba.gr.jp/pub/samba-jp/samba-2.0.7-ja/ -EXTRACT_SUFX= .tar.bz2 - -MAINTAINER= oishi@ims.ac.jp -HOMEPAGE= http://www.samba.gr.jp/ - -CONFLICTS+= samba-* - -BUILD_DEPENDS+= ${LOCALBASE}/bin/autoreconf:../../devel/autoconf - -.if !exists(/usr/include/readline.h) -DEPENDS+= readline>=4.0:../../devel/readline -.endif - -GNU_CONFIGURE= # defined - -.include "../../mk/bsd.prefs.mk" - -STARTUP_SCRIPT= ${PREFIX}/etc/rc.d/samba.sh.sample -SAMPLE_CONFIG= ${PREFIX}/share/examples/samba/smb.conf.sample -SAMBA_LOGDIR= /var/log -SAMBA_LOCKDIR= /var/run/samba -SAMBA_ETCDIR?= /etc/samba -SAMBA_PRIVATE?= ${SAMBA_ETCDIR}/private - -.if ${OPSYS} == "SunOS" -ROOT_GROUP?= root -.else -ROOT_GROUP?= wheel -.endif - -MAKE_ENV+= ETCDIR=${SAMBA_ETCDIR} -MAKE_ENV+= LOGDIR=${SAMBA_LOGDIR} - -CONFIGURE_ARGS+= --with-lockdir=${SAMBA_LOCKDIR} \ - --with-privatedir=${SAMBA_PRIVATE} \ - --with-swatdir=${PREFIX}/share/swat \ - --with-sambabook=${PREFIX}/share/swat/using_samba - -PLIST_SUBST+= SAMBA_PRIVATE=${SAMBA_PRIVATE} - -INSTALL_FILE= ${WRKDIR}/INSTALL -DEINSTALL_FILE= ${WRKDIR}/DEINSTALL - -pre-configure: - cd ${WRKSRC}; ${LOCALBASE}/bin/autoreconf - -post-install: - # Install Samba documentation. - # - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/samba - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/samba/faq - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/samba/textdocs - cd ${WRKDIR}/${DISTNAME}/docs; \ - for file in \ - NT4-Locking.reg NT4-Locking.txt NT4_PlainPassword.reg \ - THANKS Win2000_PlainPassword.reg Win95_PlainPassword.reg \ - Win98_PlainPassword.reg Win9X-CacheHandling.reg \ - WindowsTerminalServer.reg announce; do \ - ${INSTALL_DATA} $${file} ${PREFIX}/share/doc/samba; \ - done - for file in ${WRKDIR}/${DISTNAME}/docs/faq/*.html; do \ - ${INSTALL_DATA} $${file} ${PREFIX}/share/doc/samba/faq; \ - done - for file in ${WRKDIR}/${DISTNAME}/docs/textdocs/*; do \ - ${INSTALL_DATA} $${file} ${PREFIX}/share/doc/samba/textdocs; \ - done - - # Install Samba examples. - # - ${MKDIR} ${PREFIX}/share/examples/samba - ${CP} -R ${WRKDIR}/${DISTNAME}/examples/* ${PREFIX}/share/examples/samba - ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/examples/samba - ${CHMOD} -R ugo-w ${PREFIX}/share/examples/samba - - ${SED} -e "s,@PREFIX@,${PREFIX},g" \ - -e "s,@ECHO@,${ECHO},g" \ - < ${FILESDIR}/samba.sh > ${WRKDIR}/samba.sh - ${INSTALL_SCRIPT} ${WRKDIR}/samba.sh ${STARTUP_SCRIPT} - - ${SED} -e 's,@LOGDIR@,${SAMBA_LOGDIR},g' \ - -e 's,@ETCDIR@,${SAMBA_ETCDIR},g' \ - -e 's,@PREFIX@,{PREFIX},g' \ - < ${FILESDIR}/smb.conf.sample > ${WRKDIR}/smb.conf.sample - ${INSTALL_DATA} ${WRKDIR}/smb.conf.sample ${SAMPLE_CONFIG} - ${INSTALL_SCRIPT} ${WRKSRC}/script/mksmbpasswd.sh ${PREFIX}/bin - - ${SED} -e "s,@SAMBA_PRIVATE@,${SAMBA_PRIVATE},g" \ - -e "s,@ROOT_GROUP@,${ROOT_GROUP},g" \ - < ${PKGDIR}/INSTALL > ${INSTALL_FILE} - ${SED} -e "s,@SAMBA_PRIVATE@,${SAMBA_PRIVATE},g" \ - < ${PKGDIR}/DEINSTALL > ${DEINSTALL_FILE} - PKG_PREFIX=${PREFIX} ${SH} ${INSTALL_FILE} ${PKGNAME} POST-INSTALL - -.include "../../mk/bsd.pkg.mk" diff --git a/japanese/samba/files/md5 b/japanese/samba/files/md5 deleted file mode 100644 index b0f64c297c5..00000000000 --- a/japanese/samba/files/md5 +++ /dev/null @@ -1,3 +0,0 @@ -$NetBSD: md5,v 1.1.1.1 2000/08/30 17:29:44 kei Exp $ - -MD5 (samba-2.0.7-ja-1.2.tar.bz2) = 288ffd6020ee89ea9fc64a7e3209b976 diff --git a/japanese/samba/files/patch-sum b/japanese/samba/files/patch-sum deleted file mode 100644 index 07944262182..00000000000 --- a/japanese/samba/files/patch-sum +++ /dev/null @@ -1,7 +0,0 @@ -$NetBSD: patch-sum,v 1.1.1.1 2000/08/30 17:29:44 kei Exp $ - -MD5 (patch-aa) = f22145a17047e0a4dbf5708e4ddb59ad -MD5 (patch-ac) = cf09e2f18651963d5b10141fdb0d653c -MD5 (patch-ad) = 3bac7a94dd7956130d763ae46302204e -MD5 (patch-ae) = 007397b3c2c28b68b23d210979ea4846 -MD5 (patch-af) = f9dab8b4ecc3ef5a15ac24fd0429db3c diff --git a/japanese/samba/files/samba.sh b/japanese/samba/files/samba.sh deleted file mode 100644 index 30ff822260b..00000000000 --- a/japanese/samba/files/samba.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh -# -# $NetBSD: samba.sh,v 1.1.1.1 2000/08/30 17:29:44 kei Exp $ - -smbd=@PREFIX@/sbin/smbd -nmbd=@PREFIX@/sbin/nmbd - -if [ -f ${smbd} ]; then - @ECHO@ -n ' samba' - ${smbd} -D - ${nmbd} -D -fi diff --git a/japanese/samba/files/smb.conf.sample b/japanese/samba/files/smb.conf.sample deleted file mode 100644 index 219ec7ec880..00000000000 --- a/japanese/samba/files/smb.conf.sample +++ /dev/null @@ -1,252 +0,0 @@ -# $NetBSD: smb.conf.sample,v 1.1.1.1 2000/08/30 17:29:44 kei Exp $ -# -# This is the main Samba configuration file. You should read the -# smb.conf(5) manual page in order to understand the options listed -# here. Samba has a huge number of configurable options (perhaps too -# many!) most of which are not shown in this example -# -# Any line which starts with a ; (semi-colon) or a # (hash) -# is a comment and is ignored. In this example we will use a # -# for commentry and a ; for parts of the config file that you -# may wish to enable -# -# NOTE: Whenever you modify this file you should run the command "testparm" -# to check that you have not many any basic syntactic errors. -# -#======================= Global Settings ===================================== -[global] - -# workgroup = NT-Domain-Name or Workgroup-Name, eg: REDHAT4 - workgroup = MYGROUP - -# server string is the equivalent of the NT Description field - server string = NetBSD - Samba %v - -# This option is important for security. It allows you to restrict -# connections to machines which are on your local network. The -# following example restricts access to two C class networks and -# the "loopback" interface. For more examples of the syntax see -# the smb.conf man page -; hosts allow = 192.168.1. 192.168.2. 127. - -# If you want to automatically load your printer list rather -# than setting them up individually then you'll need this - load printers = yes - -# you may wish to override the location of the printcap file -; printcap name = /etc/printcap - -# on SystemV system setting printcap name to lpstat should allow -# you to automatically obtain a printer list from the SystemV spool -# system -; printcap name = lpstat - -# It should not be necessary to specify the print system type unless -# it is non-standard. Currently supported print systems include: -# bsd, sysv, plp, lprng, aix, hpux, qnx -; printing = bsd - -# Uncomment this if you want a guest account, you must add this to /etc/passwd -# otherwise the user "nobody" is used -; guest account = pcguest - -# this tells Samba to use a separate log file for each machine -# that connects - log file = @LOGDIR@/log.%m - -# Put a capping on the size of the log files (in Kb). - max log size = 50 - -# Security mode. Most people will want user level security. See -# security_level.txt for details. - security = user -# Use password server option only with security = server -; password server = - -# You may wish to use password encryption. Please read -# ENCRYPTION.txt, Win95.txt and WinNT.txt in the Samba documentation. -# Do not enable this option unless you have read those documents -; encrypt passwords = yes - -# Using the following line enables you to customise your configuration -# on a per machine basis. The %m gets replaced with the netbios name -# of the machine that is connecting -; include = @ETCDIR@/smb.conf.%m - -# Most people will find that this option gives better performance. -# See speed.txt and the manual pages for details - socket options = TCP_NODELAY - -# Configure Samba to use multiple interfaces -# If you have multiple network interfaces then you must list them -# here. See the man page for details. -; interfaces = 192.168.12.2/24 192.168.13.2/24 - -# Browser Control Options: -# set local master to no if you don't want Samba to become a master -# browser on your network. Otherwise the normal election rules apply -; local master = no - -# OS Level determines the precedence of this server in master browser -# elections. The default value should be reasonable -; os level = 33 - -# Domain Master specifies Samba to be the Domain Master Browser. This -# allows Samba to collate browse lists between subnets. Don't use this -# if you already have a Windows NT domain controller doing this job -; domain master = yes - -# Preferred Master causes Samba to force a local browser election on startup -# and gives it a slightly higher chance of winning the election -; preferred master = yes - -# Use only if you have an NT server on your network that has been -# configured at install time to be a primary domain controller. -; domain controller = - -# Enable this if you want Samba to be a domain logon server for -# Windows95 workstations. -; domain logons = yes - -# if you enable domain logons then you may want a per-machine or -# per user logon script -# run a specific logon batch file per workstation (machine) -; logon script = %m.bat -# run a specific logon batch file per username -; logon script = %U.bat - -# Where to store roving profiles (only for Win95 and WinNT) -# %L substitutes for this servers netbios name, %U is username -# You must uncomment the [Profiles] share below -; logon path = \\%L\Profiles\%U - -# Windows Internet Name Serving Support Section: -# WINS Support - Tells the NMBD component of Samba to enable it's WINS Server -; wins support = yes - -# WINS Server - Tells the NMBD components of Samba to be a WINS Client -# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both -; wins server = w.x.y.z - -# WINS Proxy - Tells Samba to answer name resolution queries on -# behalf of a non WINS capable client, for this to work there must be -# at least one WINS Server on the network. The default is NO. -; wins proxy = yes - -# DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names -# via DNS nslookups. The built-in default for versions 1.9.17 is yes, -# this has been changed in version 1.9.18 to no. - dns proxy = no - -#============================ Share Definitions ============================== -[homes] - comment = Home Directories - browseable = no - writable = yes - -# Un-comment the following and create the netlogon directory for Domain Logons -; [netlogon] -; comment = Network Logon Service -; path = @PREFIX@/lib/netlogon -; guest ok = yes -; writable = no -; share modes = no - - -# Un-comment the following to provide a specific roving profile share -# the default is to use the user's home directory -;[Profiles] -; path = @PREFIX@/samba/profiles -; browseable = no -; guest ok = yes - - -# NOTE: If you have a BSD-style print system there is no need to -# specifically define each individual printer -[printers] - comment = All Printers - path = /var/tmp - browseable = no -# Set public = yes to allow user 'guest account' to print - guest ok = no - writable = no - printable = yes - -# This one is useful for people to share files -;[tmp] -; comment = Temporary file space -; path = /tmp -; read only = no -; public = yes - -# A publicly accessible directory, but read only, except for people in -# the "staff" group -;[public] -; comment = Public Stuff -; path = /home/samba -; public = yes -; writable = yes -; printable = no -; write list = @staff - -# Other examples. -# -# A private printer, usable only by fred. Spool data will be placed in fred's -# home directory. Note that fred must have write access to the spool directory, -# wherever it is. -;[fredsprn] -; comment = Fred's Printer -; valid users = fred -; path = /homes/fred -; printer = freds_printer -; public = no -; writable = no -; printable = yes - -# A private directory, usable only by fred. Note that fred requires write -# access to the directory. -;[fredsdir] -; comment = Fred's Service -; path = /usr/somewhere/private -; valid users = fred -; public = no -; writable = yes -; printable = no - -# a service which has a different directory for each machine that connects -# this allows you to tailor configurations to incoming machines. You could -# also use the %U option to tailor it by user name. -# The %m gets replaced with the machine name that is connecting. -;[pchome] -; comment = PC Directories -; path = /usr/pc/%m -; public = no -; writable = yes - -# A publicly accessible directory, read/write to all users. Note that all files -# created in the directory by users will be owned by the default user, so -# any user with access can delete any other user's files. Obviously this -# directory must be writable by the default user. Another user could of course -# be specified, in which case all files would be owned by that user instead. -;[public] -; path = /usr/somewhere/else/public -; public = yes -; only guest = yes -; writable = yes -; printable = no - -# The following two entries demonstrate how to share a directory so that two -# users can place files there that will be owned by the specific users. In this -# setup, the directory should be writable by both users and should have the -# sticky bit set on it to prevent abuse. Obviously this could be extended to -# as many users as required. -;[myshare] -; comment = Mary's and Fred's stuff -; path = /usr/somewhere/shared -; valid users = mary fred -; public = no -; writable = yes -; printable = no -; create mask = 0765 - - diff --git a/japanese/samba/patches/patch-aa b/japanese/samba/patches/patch-aa deleted file mode 100644 index 7b9025a406d..00000000000 --- a/japanese/samba/patches/patch-aa +++ /dev/null @@ -1,67 +0,0 @@ -$NetBSD: patch-aa,v 1.1.1.1 2000/08/30 17:29:44 kei Exp $ - ---- Makefile.in.orig Tue Apr 25 19:06:11 2000 -+++ Makefile.in Fri Apr 28 16:26:52 2000 -@@ -25,10 +25,12 @@ - BINDIR = @bindir@ - # we don't use sbindir because we want full compatibility with - # the previous releases of Samba --SBINDIR = @bindir@ -+SBINDIR = @sbindir@ - LIBDIR = @libdir@ - VARDIR = @localstatedir@ - MANDIR = @mandir@ -+ETCDIR?= $(BASEDIR)/etc -+LOGDIR?= $(BASEDIR)/log - SAMBABOOK = @sambabook@ - - # The permissions to give the executables -@@ -37,12 +39,12 @@ - # set these to where to find various files - # These can be overridden by command line switches (see smbd(8)) - # or in smb.conf (see smb.conf(5)) --SMBLOGFILE = $(VARDIR)/log.smb --NMBLOGFILE = $(VARDIR)/log.nmb --CONFIGFILE = $(LIBDIR)/smb.conf --LMHOSTSFILE = $(LIBDIR)/lmhosts --DRIVERFILE = $(LIBDIR)/printers.def --PASSWD_PROGRAM = /bin/passwd -+SMBLOGFILE = $(LOGDIR)/log.smb -+NMBLOGFILE = $(LOGDIR)/log.nmb -+CONFIGFILE = $(ETCDIR)/smb.conf -+LMHOSTSFILE = $(ETCDIR)/lmhosts -+DRIVERFILE = $(ETCDIR)/printers.def -+PASSWD_PROGRAM = /usr/bin/passwd - # This is where smbpasswd et al go - PRIVATEDIR = @privatedir@ - -@@ -470,14 +472,14 @@ - - installdirs: - $(SHELL) $(srcdir)/install-sh -d -m $(INSTALLPERMS) \ -- $(BASEDIR) $(SBINDIR) $(BINDIR) $(LIBDIR) $(VARDIR) $(CODEPAGEDIR) ${SWATDIR} ${SAMBABOOK} -+ $(BASEDIR) $(SBINDIR) $(BINDIR) $(LIBDIR) $(ETCDIR) $(LOGDIR) $(CODEPAGEDIR) ${SWATDIR} ${SAMBABOOK} - - installservers: all installdirs -- @$(SHELL) $(srcdir)/script/installbin.sh $(INSTALLPERMS) $(BASEDIR) $(SBINDIR) $(LIBDIR) $(VARDIR) $(SPROGS) -+ @$(SHELL) $(srcdir)/script/installbin.sh $(INSTALLPERMS) $(BASEDIR) $(SBINDIR) $(ETCDIR) $(LOGDIR) $(SPROGS) - - installbin: all installdirs -- @$(SHELL) $(srcdir)/script/installbin.sh $(INSTALLPERMS) $(BASEDIR) $(SBINDIR) $(LIBDIR) $(VARDIR) $(SPROGS) -- @$(SHELL) $(srcdir)/script/installbin.sh $(INSTALLPERMS) $(BASEDIR) $(BINDIR) $(LIBDIR) $(VARDIR) $(PROGS) -+ @$(SHELL) $(srcdir)/script/installbin.sh $(INSTALLPERMS) $(BASEDIR) $(SBINDIR) $(ETCDIR) $(LOGDIR) $(SPROGS) -+ @$(SHELL) $(srcdir)/script/installbin.sh $(INSTALLPERMS) $(BASEDIR) $(BINDIR) $(ETCDIR) $(LOGDIR) $(PROGS) - - installscripts: installdirs - @$(SHELL) $(srcdir)/script/installscripts.sh $(INSTALLPERMS) $(BINDIR) $(SCRIPTS) -@@ -495,8 +497,8 @@ - @$(SHELL) $(srcdir)/script/uninstallman.sh $(MANDIR) $(srcdir) - - uninstallbin: -- @$(SHELL) $(srcdir)/script/uninstallbin.sh $(INSTALLPERMS) $(BASEDIR) $(SBINDIR) $(LIBDIR) $(VARDIR) $(SPROGS) -- @$(SHELL) $(srcdir)/script/uninstallbin.sh $(INSTALLPERMS) $(BASEDIR) $(BINDIR) $(LIBDIR) $(VARDIR) $(PROGS) -+ @$(SHELL) $(srcdir)/script/uninstallbin.sh $(INSTALLPERMS) $(BASEDIR) $(SBINDIR) $(ETCDIR) $(LOGDIR) $(SPROGS) -+ @$(SHELL) $(srcdir)/script/uninstallbin.sh $(INSTALLPERMS) $(BASEDIR) $(BINDIR) $(ETCDIR) $(LOGDIR) $(PROGS) - - uninstallscripts: - @$(SHELL) $(srcdir)/script/uninstallscripts.sh $(INSTALLPERMS) $(BINDIR) $(SCRIPTS) diff --git a/japanese/samba/patches/patch-ac b/japanese/samba/patches/patch-ac deleted file mode 100644 index a46d093f46a..00000000000 --- a/japanese/samba/patches/patch-ac +++ /dev/null @@ -1,14 +0,0 @@ -$NetBSD: patch-ac,v 1.1.1.1 2000/08/30 17:29:44 kei Exp $ - ---- acconfig.h.orig Tue Apr 25 19:06:11 2000 -+++ acconfig.h Fri Apr 28 16:27:20 2000 -@@ -81,7 +81,9 @@ - #undef SIZEOF_INO_T - #undef SIZEOF_OFF_T - #undef STAT_STATVFS64 -+#undef HAVE_READLINE - #undef HAVE_LIBREADLINE -+#undef HAVE_LIBEDIT - #undef HAVE_KERNEL_OPLOCKS - #undef HAVE_IRIX_SPECIFIC_CAPABILITIES - #undef HAVE_INT16_FROM_RPC_RPC_H diff --git a/japanese/samba/patches/patch-ad b/japanese/samba/patches/patch-ad deleted file mode 100644 index f28f8880b4b..00000000000 --- a/japanese/samba/patches/patch-ad +++ /dev/null @@ -1,76 +0,0 @@ -$NetBSD: patch-ad,v 1.1.1.1 2000/08/30 17:29:44 kei Exp $ - ---- client/client.c.orig Tue Apr 25 19:06:41 2000 -+++ client/client.c Fri Apr 28 16:29:58 2000 -@@ -1598,22 +1598,19 @@ - return True; - } - --#if defined(HAVE_LIBREADLINE) -+#if defined(HAVE_READLINE) - # if defined(HAVE_READLINE_HISTORY_H) || defined(HAVE_HISTORY_H) - /**************************************************************************** - history - ****************************************************************************/ - static void cmd_history(void) - { -- HIST_ENTRY **hlist; - register int i; - -- hlist = history_list (); /* Get pointer to history list */ -- -- if (hlist) /* If list not empty */ -+ if (history_length) /* If history is not empty */ - { -- for (i = 0; hlist[i]; i++) /* then display it */ -- DEBUG(0, ("%d: %s\n", i, hlist[i]->line)); -+ for (i = 1; i <= history_length; i++) /* then display it */ -+ DEBUG(0, ("%d: %s\n", i, history_get(i)->line)); - } - } - # endif -@@ -1675,7 +1672,7 @@ - {"setmode",cmd_setmode,"filename change modes of file",{COMPL_REMOTE,COMPL_NONE}}, - {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}}, - {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}}, --#ifdef HAVE_LIBREADLINE -+#ifdef HAVE_READLINE - {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}}, - #endif - {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}}, -@@ -1735,7 +1732,7 @@ - } - } - --#ifndef HAVE_LIBREADLINE -+#ifndef HAVE_READLINE - /**************************************************************************** - wait for keyboard activity, swallowing network packets - ****************************************************************************/ -@@ -1814,7 +1811,7 @@ - pstring line; - char *ptr; - --#ifdef HAVE_LIBREADLINE -+#ifdef HAVE_READLINE - /* Minimal readline support, 29Jun1999, s.xenitellis@rhbnc.ac.uk */ - #ifdef PROMPTSIZE - #undef PROMPTSIZE -@@ -1828,7 +1825,7 @@ - while (!feof(stdin)) { - fstring tok; - int i; --#ifdef HAVE_LIBREADLINE -+#ifdef HAVE_READLINE - if ( temp != (char *)NULL ) - { - free( temp ); /* Free memory allocated every time by readline() */ -@@ -2215,7 +2212,7 @@ - - DEBUGLEVEL = 2; - --#ifdef HAVE_LIBREADLINE -+#ifdef HAVE_READLINE - /* Allow conditional parsing of the ~/.inputrc file. */ - rl_readline_name = "smbclient"; - #endif diff --git a/japanese/samba/patches/patch-ae b/japanese/samba/patches/patch-ae deleted file mode 100644 index 3aa155c9419..00000000000 --- a/japanese/samba/patches/patch-ae +++ /dev/null @@ -1,55 +0,0 @@ -$NetBSD: patch-ae,v 1.1.1.1 2000/08/30 17:29:44 kei Exp $ - ---- configure.in.orig Tue Apr 25 19:06:39 2000 -+++ configure.in Fri Apr 28 16:33:54 2000 -@@ -234,9 +234,6 @@ - AC_CHECK_TYPE(offset_t,loff_t) - AC_CHECK_TYPE(ssize_t, int) - --# we need libcups for CUPS support... --AC_CHECK_LIB(cups,httpConnect) -- - # we need libdl for PAM and the new VFS code - AC_CHECK_LIB(dl,main) - -@@ -312,7 +309,14 @@ - # test for where we get readline() from - if test "$ac_cv_header_readline_h" = "yes" || - test "$ac_cv_header_readline_readline_h" = "yes"; then -- AC_CHECK_LIB(readline,readline) -+ AC_CHECK_LIB(termcap, tputs) -+ if test "$ac_cv_lib_termcap_tputs" = "yes"; then -+ AC_CHECK_LIB(edit, readline, , [AC_CHECK_LIB(readline, readline)]) -+ if test "$ac_cv_lib_edit_readline" = "yes" || -+ test "$ac_cv_lib_readline_readline" = "yes"; then -+ AC_DEFINE(HAVE_READLINE) -+ fi -+ fi - fi - - -@@ -1138,6 +1142,24 @@ - AC_DEFINE(BROKEN_NISPLUS_INCLUDE_FILES) - fi - -+ -+################################################# -+# check for CUPS support -+AC_MSG_CHECKING(whether to use CUPS) -+AC_ARG_WITH(cups, -+[ --with-cups Include CUPS support -+ --without-cups Don't include CUPS support (default)], -+[ case "$withval" in -+ yes) -+ AC_MSG_RESULT(yes) -+ AC_CHECK_LIB(cups, httpConnect) -+ ;; -+ *) -+ AC_MSG_RESULT(no) -+ ;; -+ esac ], -+ AC_MSG_RESULT(no) -+) - - ################################################# - # check for smbwrapper support diff --git a/japanese/samba/patches/patch-af b/japanese/samba/patches/patch-af deleted file mode 100644 index dafc5693c39..00000000000 --- a/japanese/samba/patches/patch-af +++ /dev/null @@ -1,35 +0,0 @@ -$NetBSD: patch-af,v 1.1.1.1 2000/08/30 17:29:44 kei Exp $ - ---- include/includes.h.orig Tue Apr 25 19:06:46 2000 -+++ include/includes.h Fri Apr 28 16:34:56 2000 -@@ -808,20 +808,20 @@ - #define ULTRIX_AUTH 1 - #endif - --#ifdef HAVE_LIBREADLINE --# ifdef HAVE_READLINE_READLINE_H --# include --# ifdef HAVE_READLINE_HISTORY_H --# include -+#ifdef HAVE_READLINE -+# ifdef HAVE_READLINE_H -+# include -+# ifdef HAVE_HISTORY_H -+# include - # endif - # else --# ifdef HAVE_READLINE_H --# include --# ifdef HAVE_HISTORY_H --# include -+# ifdef HAVE_READLINE_READLINE_H -+# include -+# ifdef HAVE_READLINE_HISTORY_H -+# include - # endif - # else --# undef HAVE_LIBREADLINE -+# undef HAVE_READLINE - # endif - # endif - #endif diff --git a/japanese/samba/pkg/COMMENT b/japanese/samba/pkg/COMMENT deleted file mode 100644 index c1771304483..00000000000 --- a/japanese/samba/pkg/COMMENT +++ /dev/null @@ -1 +0,0 @@ -SMB/CIFS protocol server suite for UNIX, with Japanese support diff --git a/japanese/samba/pkg/DEINSTALL b/japanese/samba/pkg/DEINSTALL deleted file mode 100644 index 1070d68a265..00000000000 --- a/japanese/samba/pkg/DEINSTALL +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh -# -# $NetBSD: DEINSTALL,v 1.1.1.1 2000/08/30 17:29:45 kei Exp $ - -PKGNAME=$1 -STAGE=$2 - -SAMBA_PRIVATE=@SAMBA_PRIVATE@ - -case ${STAGE} in -DEINSTALL) - ;; -POST-DEINSTALL) - cat << EOF -=========================================================================== -If you won't be using ${PKGNAME} any longer, you may want to remove the -following files: - - ${SAMBA_PRIVATE}/smbpasswd -=========================================================================== -EOF - ;; -*) - echo "Unexpected argument: $2" - exit 1 - ;; -esac -exit 0 diff --git a/japanese/samba/pkg/DESCR b/japanese/samba/pkg/DESCR deleted file mode 100644 index 9b08c54e628..00000000000 --- a/japanese/samba/pkg/DESCR +++ /dev/null @@ -1,22 +0,0 @@ -Samba is a suite of programs which work together to allow clients to access to -a server's filespace and printers via the SMB (Server Message Block) protocol. - -In practice, this means that you can redirect disks and printers to Unix disks -and printers from Lan Manager clients, Windows for Workgroups 3.11 clients, -Windows NT clients, Linux clients and OS/2 clients. There is also a generic -Unix client program supplied as part of the suite which allows Unix users to -use an ftp-like interface to access filespace and printers on any other SMB -servers. This gives the capability for these operating systems to behave much -like a LAN Server or Windows NT Server machine, only with added functionality -and flexibility designed to make life easier for administrators. - - *===* Security Notes *===* - -The users' encrypted passwords stored in ${ETCDIR}/private/smbpasswd (default: -/etc/samba/private/smbpasswd) *ARE PASSWORD EQUIVALENT* from the viewpoint of -SMB protocol. Do not weaken the permission mode of this file (default: -root.wheel and rw-------) without any special reasons. And please note that -even if you pkg_delete this port, pkg_delete will *NOT* remove the smbpasswd -file because pkg_delete can be used for upgrading this package. If you won't -use this package anymore, I strongly recommend that you remove the smbpasswd -file manually. diff --git a/japanese/samba/pkg/INSTALL b/japanese/samba/pkg/INSTALL deleted file mode 100644 index eba48dd4966..00000000000 --- a/japanese/samba/pkg/INSTALL +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh -# -# $NetBSD: INSTALL,v 1.1.1.1 2000/08/30 17:29:45 kei Exp $ - -PKGNAME=$1 -STAGE=$2 - -SAMBA_PRIVATE=@SAMBA_PRIVATE@ -ROOT_GROUP=@ROOT_GROUP@ - -case ${STAGE} in -PRE-INSTALL) - ;; -POST-INSTALL) - mkdir -p ${SAMBA_PRIVATE} - if [ ! -f ${SAMBA_PRIVATE}/smbpasswd ] - then - echo -n "Creating ${SAMBA_PRIVATE}/smbpasswd..." - chown -R root ${SAMBA_PRIVATE} - chgrp -R ${ROOT_GROUP} ${SAMBA_PRIVATE} - cat /etc/passwd | ${PKG_PREFIX}/bin/mksmbpasswd.sh \ - >${SAMBA_PRIVATE}/smbpasswd - chmod 500 ${SAMBA_PRIVATE} - chmod 600 ${SAMBA_PRIVATE}/smbpasswd - echo "done." - fi - ;; -*) - echo "Unexpected argument: $2" - exit 1 - ;; -esac -exit 0 diff --git a/japanese/samba/pkg/PLIST b/japanese/samba/pkg/PLIST deleted file mode 100644 index 48f3543f281..00000000000 --- a/japanese/samba/pkg/PLIST +++ /dev/null @@ -1,559 +0,0 @@ -@comment $NetBSD: PLIST,v 1.1.1.1 2000/08/30 17:29:45 kei Exp $ -bin/addtosmbpass -bin/convert_smbpasswd -bin/make_printerdef -bin/make_smbcodepage -bin/make_unicodemap -bin/mksmbpasswd.sh -bin/nmblookup -bin/rpcclient -bin/smbclient -bin/smbpasswd -bin/smbspool -bin/smbstatus -bin/smbtar -bin/testparm -bin/testprns -etc/rc.d/samba.sh.sample -lib/codepages/codepage.1251 -lib/codepages/codepage.437 -lib/codepages/codepage.737 -lib/codepages/codepage.775 -lib/codepages/codepage.850 -lib/codepages/codepage.852 -lib/codepages/codepage.861 -lib/codepages/codepage.866 -lib/codepages/codepage.932 -lib/codepages/codepage.936 -lib/codepages/codepage.949 -lib/codepages/codepage.950 -lib/codepages/unicode_map.437 -lib/codepages/unicode_map.737 -lib/codepages/unicode_map.850 -lib/codepages/unicode_map.852 -lib/codepages/unicode_map.861 -lib/codepages/unicode_map.866 -lib/codepages/unicode_map.932 -lib/codepages/unicode_map.936 -lib/codepages/unicode_map.949 -lib/codepages/unicode_map.950 -lib/codepages/unicode_map.ISO8859-1 -lib/codepages/unicode_map.ISO8859-2 -lib/codepages/unicode_map.ISO8859-5 -lib/codepages/unicode_map.ISO8859-7 -lib/codepages/unicode_map.KOI8-R -lib/swat-i18n.txt -man/ja/man1/make_smbcodepage.1 -man/ja/man1/make_unicodemap.1 -man/ja/man1/nmblookup.1 -man/ja/man1/smbclient.1 -man/ja/man1/smbrun.1 -man/ja/man1/smbsh.1 -man/ja/man1/smbstatus.1 -man/ja/man1/smbtar.1 -man/ja/man1/testparm.1 -man/ja/man1/testprns.1 -man/ja/man5/lmhosts.5 -man/ja/man5/smb.conf.5 -man/ja/man5/smbpasswd.5 -man/ja/man7/samba.7 -man/ja/man8/nmbd.8 -man/ja/man8/smbd.8 -man/ja/man8/smbmnt.8 -man/ja/man8/smbmount.8 -man/ja/man8/smbpasswd.8 -man/ja/man8/smbspool.8 -man/ja/man8/swat.8 -man/man1/make_smbcodepage.1 -man/man1/make_unicodemap.1 -man/man1/nmblookup.1 -man/man1/smbclient.1 -man/man1/smbrun.1 -man/man1/smbsh.1 -man/man1/smbstatus.1 -man/man1/smbtar.1 -man/man1/testparm.1 -man/man1/testprns.1 -man/man5/lmhosts.5 -man/man5/smb.conf.5 -man/man5/smbpasswd.5 -man/man7/samba.7 -man/man8/nmbd.8 -man/man8/smbd.8 -man/man8/smbmnt.8 -man/man8/smbmount.8 -man/man8/smbpasswd.8 -man/man8/smbspool.8 -man/man8/smbumount.8 -man/man8/swat.8 -sbin/nmbd -sbin/smbd -sbin/swat -share/doc/samba/NT4-Locking.reg -share/doc/samba/NT4-Locking.txt -share/doc/samba/NT4_PlainPassword.reg -share/doc/samba/THANKS -share/doc/samba/Win2000_PlainPassword.reg -share/doc/samba/Win95_PlainPassword.reg -share/doc/samba/Win98_PlainPassword.reg -share/doc/samba/Win9X-CacheHandling.reg -share/doc/samba/WindowsTerminalServer.reg -share/doc/samba/announce -share/doc/samba/faq/Samba-Server-FAQ-1.html -share/doc/samba/faq/Samba-Server-FAQ-2.html -share/doc/samba/faq/Samba-Server-FAQ.html -share/doc/samba/faq/Samba-meta-FAQ-1.html -share/doc/samba/faq/Samba-meta-FAQ-2.html -share/doc/samba/faq/Samba-meta-FAQ-3.html -share/doc/samba/faq/Samba-meta-FAQ-4.html -share/doc/samba/faq/Samba-meta-FAQ-5.html -share/doc/samba/faq/Samba-meta-FAQ-6.html -share/doc/samba/faq/Samba-meta-FAQ.html -share/doc/samba/faq/sambafaq-1.html -share/doc/samba/faq/sambafaq-2.html -share/doc/samba/faq/sambafaq-3.html -share/doc/samba/faq/sambafaq-4.html -share/doc/samba/faq/sambafaq-5.html -share/doc/samba/faq/sambafaq.html -share/doc/samba/textdocs/Application_Serving.txt -share/doc/samba/textdocs/BROWSING-Config.txt -share/doc/samba/textdocs/BROWSING.txt -share/doc/samba/textdocs/BUGS.txt -share/doc/samba/textdocs/CRLF-LF-Conversions.txt -share/doc/samba/textdocs/CVS_ACCESS.txt -share/doc/samba/textdocs/DHCP-Server-Configuration.txt -share/doc/samba/textdocs/DIAGNOSIS.txt -share/doc/samba/textdocs/DNIX.txt -share/doc/samba/textdocs/DOMAIN.txt -share/doc/samba/textdocs/DOMAIN_CONTROL.txt -share/doc/samba/textdocs/DOMAIN_MEMBER.txt -share/doc/samba/textdocs/ENCRYPTION.txt -share/doc/samba/textdocs/Faxing.txt -share/doc/samba/textdocs/File-Cacheing.txt -share/doc/samba/textdocs/GOTCHAS.txt -share/doc/samba/textdocs/HINTS.txt -share/doc/samba/textdocs/INSTALL.sambatar -share/doc/samba/textdocs/MIRRORS.txt -share/doc/samba/textdocs/Macintosh_Clients.txt -share/doc/samba/textdocs/NT-Guest-Access.txt -share/doc/samba/textdocs/NTDOMAIN.txt -share/doc/samba/textdocs/NT_Security.txt -share/doc/samba/textdocs/NetBIOS.txt -share/doc/samba/textdocs/OS2-Client-HOWTO.txt -share/doc/samba/textdocs/PRINTER_DRIVER.txt -share/doc/samba/textdocs/PROFILES.txt -share/doc/samba/textdocs/PROJECTS -share/doc/samba/textdocs/Passwords.txt -share/doc/samba/textdocs/Printing.txt -share/doc/samba/textdocs/README.DCEDFS -share/doc/samba/textdocs/README.jis -share/doc/samba/textdocs/README.sambatar -share/doc/samba/textdocs/Recent-FAQs.txt -share/doc/samba/textdocs/RoutedNetworks.txt -share/doc/samba/textdocs/SCO.txt -share/doc/samba/textdocs/SMBTAR.notes -share/doc/samba/textdocs/SSLeay.txt -share/doc/samba/textdocs/Speed.txt -share/doc/samba/textdocs/Speed2.txt -share/doc/samba/textdocs/Support.txt -share/doc/samba/textdocs/Tracing.txt -share/doc/samba/textdocs/UNIX-SMB.txt -share/doc/samba/textdocs/UNIX_INSTALL.txt -share/doc/samba/textdocs/UNIX_SECURITY.txt -share/doc/samba/textdocs/Win95.txt -share/doc/samba/textdocs/WinNT.txt -share/doc/samba/textdocs/cifsntdomain.txt -share/doc/samba/textdocs/sambafaq.txt -share/doc/samba/textdocs/security_level.txt -share/doc/samba/textdocs/smbmount.txt -share/examples/samba/README -share/examples/samba/add-delete-user-script/README -share/examples/samba/add-delete-user-script/smb-useradd -share/examples/samba/add-delete-user-script/smb-userdel -share/examples/samba/autofs/README -share/examples/samba/autofs/auto.a -share/examples/samba/dce-dfs/README -share/examples/samba/dce-dfs/smb.conf -share/examples/samba/misc/extra_smbstatus -share/examples/samba/misc/hextoeuc -share/examples/samba/misc/wall.perl -share/examples/samba/printer-accounting/README -share/examples/samba/printer-accounting/acct-all -share/examples/samba/printer-accounting/acct-sum -share/examples/samba/printer-accounting/hp5-redir -share/examples/samba/printer-accounting/lp-acct -share/examples/samba/printer-accounting/printcap -share/examples/samba/printing/smbprint -share/examples/samba/printing/smbprint.sysv -share/examples/samba/simple/README -share/examples/samba/simple/smb.conf -share/examples/samba/smb.conf.default -share/examples/samba/smb.conf.default.ja -share/examples/samba/smb.conf.sample -share/examples/samba/svr4-startup/README -share/examples/samba/svr4-startup/samba.server -share/examples/samba/thoralf/smb.conf -share/examples/samba/tridge/README -share/examples/samba/tridge/smb.conf -share/examples/samba/tridge/smb.conf.WinNT -share/examples/samba/tridge/smb.conf.fjall -share/examples/samba/tridge/smb.conf.lapland -share/examples/samba/tridge/smb.conf.vittjokk -share/examples/samba/validchars/msdos70.out -share/examples/samba/validchars/nwdos70.out -share/examples/samba/validchars/readme -share/examples/samba/validchars/validchr.c -share/examples/samba/validchars/validchr.com -share/examples/samba/wins_hook/README -share/examples/samba/wins_hook/dns_update -share/locale/en/LC_MESSAGES/i18n_swat.mo -share/locale/ja/LC_MESSAGES/i18n_swat.mo -share/locale/ja_JP.SJIS/LC_MESSAGES/i18n_swat.mo -share/swat/help/DOMAIN_MEMBER.html -share/swat/help/NT_Security.html -share/swat/help/lmhosts.5.html -share/swat/help/make_smbcodepage.1.html -share/swat/help/make_unicodemap.1.html -share/swat/help/nmbd.8.html -share/swat/help/nmblookup.1.html -share/swat/help/samba.7.html -share/swat/help/smb.conf.5.html -share/swat/help/smbclient.1.html -share/swat/help/smbd.8.html -share/swat/help/smbmnt.8.html -share/swat/help/smbmount.8.html -share/swat/help/smbpasswd.5.html -share/swat/help/smbpasswd.8.html -share/swat/help/smbrun.1.html -share/swat/help/smbsh.1.html -share/swat/help/smbspool.8.html -share/swat/help/smbstatus.1.html -share/swat/help/smbtar.1.html -share/swat/help/swat.8.html -share/swat/help/testparm.1.html -share/swat/help/testprns.1.html -share/swat/help/welcome.html -share/swat/help/welcome.ja_JP.ujis.html -share/swat/images/globals.gif -share/swat/images/home.gif -share/swat/images/passwd.gif -share/swat/images/printers.gif -share/swat/images/samba.gif -share/swat/images/shares.gif -share/swat/images/status.gif -share/swat/images/viewconfig.gif -share/swat/include/footer.html -share/swat/include/header.html -share/swat/include/header_css.html -share/swat/ja/help/Application_Serving.txt.html -share/swat/ja/help/BROWSING-Config.txt.html -share/swat/ja/help/BROWSING.txt.html -share/swat/ja/help/CRLF-LF-Conversions.txt.html -share/swat/ja/help/CVS_ACCESS.txt.html -share/swat/ja/help/DIAGNOSIS.txt.html -share/swat/ja/help/DOMAIN.txt.html -share/swat/ja/help/DOMAIN_MEMBER.txt.html -share/swat/ja/help/ENCRYPTION.txt.html -share/swat/ja/help/File-Cacheing.txt.html -share/swat/ja/help/HowToUseSamba/1-18.html -share/swat/ja/help/HowToUseSamba/1-19.html -share/swat/ja/help/HowToUseSamba/1-6.html -share/swat/ja/help/HowToUseSamba/MSNET1.GIF -share/swat/ja/help/HowToUseSamba/MSNETW2.GIF -share/swat/ja/help/HowToUseSamba/PRTCL95.GIF -share/swat/ja/help/HowToUseSamba/SAMBA1.GIF -share/swat/ja/help/HowToUseSamba/WGRPNT1.GIF -share/swat/ja/help/HowToUseSamba/globals.gif -share/swat/ja/help/HowToUseSamba/home.gif -share/swat/ja/help/HowToUseSamba/index.html -share/swat/ja/help/HowToUseSamba/passwd.gif -share/swat/ja/help/HowToUseSamba/printers.gif -share/swat/ja/help/HowToUseSamba/printtool1.gif -share/swat/ja/help/HowToUseSamba/printtool2.gif -share/swat/ja/help/HowToUseSamba/printtool3.gif -share/swat/ja/help/HowToUseSamba/printtool4.gif -share/swat/ja/help/HowToUseSamba/printtool5.gif -share/swat/ja/help/HowToUseSamba/printtool6.gif -share/swat/ja/help/HowToUseSamba/samba.gif -share/swat/ja/help/HowToUseSamba/shares.gif -share/swat/ja/help/HowToUseSamba/status.gif -share/swat/ja/help/HowToUseSamba/swat1.gif -share/swat/ja/help/HowToUseSamba/userhome.gif -share/swat/ja/help/HowToUseSamba/userprofile.gif -share/swat/ja/help/HowToUseSamba/viewconfig.gif -share/swat/ja/help/HowToUseSamba/x-1-256.gif -share/swat/ja/help/HowToUseSamba/x-2-256.gif -share/swat/ja/help/HowToUseSamba/x-3-256.gif -share/swat/ja/help/Macintosh_Clients.txt.html -share/swat/ja/help/NT-Guest-Access.txt.html -share/swat/ja/help/NTDOMAIN.txt.html -share/swat/ja/help/NT_Security.html -share/swat/ja/help/NetBIOS.txt.html -share/swat/ja/help/PRINTER_DRIVER.txt.html -share/swat/ja/help/PROFILES.txt.html -share/swat/ja/help/Passwords.txt.html -share/swat/ja/help/README.smbmount.txt.html -share/swat/ja/help/Speed.txt.html -share/swat/ja/help/Speed2.txt.html -share/swat/ja/help/UNIX-SMB.txt.html -share/swat/ja/help/UNIX_INSTALL.txt.html -share/swat/ja/help/Win95.txt.html -share/swat/ja/help/WinNT.txt.html -share/swat/ja/help/encrypt-passwd.html -share/swat/ja/help/lmhosts.5.html -share/swat/ja/help/make_smbcodepage.1.html -share/swat/ja/help/make_unicodemap.1.html -share/swat/ja/help/nmbd.8.html -share/swat/ja/help/nmblookup.1.html -share/swat/ja/help/samba-func.html -share/swat/ja/help/samba-j.html -share/swat/ja/help/samba.7.html -share/swat/ja/help/samba2.html -share/swat/ja/help/sambafaq-1.html -share/swat/ja/help/sambafaq-2.html -share/swat/ja/help/sambafaq-3.html -share/swat/ja/help/sambafaq-4.html -share/swat/ja/help/sambafaq-5.html -share/swat/ja/help/sambafaq.html -share/swat/ja/help/security_level.txt.html -share/swat/ja/help/smb.conf.5.html -share/swat/ja/help/smbclient.1.html -share/swat/ja/help/smbd.8.html -share/swat/ja/help/smbmnt.8.html -share/swat/ja/help/smbmount.8.html -share/swat/ja/help/smbmount.txt.html -share/swat/ja/help/smbpasswd.5.html -share/swat/ja/help/smbpasswd.8.html -share/swat/ja/help/smbrun.1.html -share/swat/ja/help/smbsh.1.html -share/swat/ja/help/smbspool.8.html -share/swat/ja/help/smbstatus.1.html -share/swat/ja/help/smbtar.1.html -share/swat/ja/help/swat.8.html -share/swat/ja/help/testparm.1.html -share/swat/ja/help/testprns.1.html -share/swat/ja/help/tuning.japanese.html -share/swat/ja/help/welcome.html -share/swat/ja/help/whatsamba.html -share/swat/ja/images/globals.gif -share/swat/ja/images/home.gif -share/swat/ja/images/passwd.gif -share/swat/ja/images/printers.gif -share/swat/ja/images/samba.gif -share/swat/ja/images/shares.gif -share/swat/ja/images/status.gif -share/swat/ja/images/viewconfig.gif -share/swat/ja/include/footer.html -share/swat/ja/include/header.JP1.html -share/swat/ja/include/header.html -share/swat/ja/include/header.nocss.html -share/swat/ja/include/header.org.html -share/swat/ja/include/header.sjis.html -share/swat/ja/include/header_css.html -share/swat/ja_JP.SJIS/help/welcome.html -share/swat/ja_JP.SJIS/images/globals.gif -share/swat/ja_JP.SJIS/images/home.gif -share/swat/ja_JP.SJIS/images/passwd.gif -share/swat/ja_JP.SJIS/images/printers.gif -share/swat/ja_JP.SJIS/images/samba.gif -share/swat/ja_JP.SJIS/images/shares.gif -share/swat/ja_JP.SJIS/images/status.gif -share/swat/ja_JP.SJIS/images/viewconfig.gif -share/swat/ja_JP.SJIS/include/footer.html -share/swat/ja_JP.SJIS/include/header.JP1.html -share/swat/ja_JP.SJIS/include/header.html -share/swat/ja_JP.SJIS/include/header.nocss.html -share/swat/ja_JP.SJIS/include/header.org.html -share/swat/ja_JP.SJIS/include/header_css.html -share/swat/using_samba/appa_01.html -share/swat/using_samba/appa_02.html -share/swat/using_samba/appa_03.html -share/swat/using_samba/appa_04.html -share/swat/using_samba/appa_05.html -share/swat/using_samba/appb_01.html -share/swat/using_samba/appb_02.html -share/swat/using_samba/appb_03.html -share/swat/using_samba/appc_01.html -share/swat/using_samba/appd_01.html -share/swat/using_samba/appe_01.html -share/swat/using_samba/appf_01.html -share/swat/using_samba/ch01_01.html -share/swat/using_samba/ch01_02.html -share/swat/using_samba/ch01_03.html -share/swat/using_samba/ch01_04.html -share/swat/using_samba/ch01_05.html -share/swat/using_samba/ch01_06.html -share/swat/using_samba/ch01_07.html -share/swat/using_samba/ch01_08.html -share/swat/using_samba/ch02_01.html -share/swat/using_samba/ch02_02.html -share/swat/using_samba/ch02_03.html -share/swat/using_samba/ch02_04.html -share/swat/using_samba/ch02_05.html -share/swat/using_samba/ch02_06.html -share/swat/using_samba/ch03_01.html -share/swat/using_samba/ch03_02.html -share/swat/using_samba/ch03_03.html -share/swat/using_samba/ch04_01.html -share/swat/using_samba/ch04_02.html -share/swat/using_samba/ch04_03.html -share/swat/using_samba/ch04_04.html -share/swat/using_samba/ch04_05.html -share/swat/using_samba/ch04_06.html -share/swat/using_samba/ch04_07.html -share/swat/using_samba/ch04_08.html -share/swat/using_samba/ch05_01.html -share/swat/using_samba/ch05_02.html -share/swat/using_samba/ch05_03.html -share/swat/using_samba/ch05_04.html -share/swat/using_samba/ch05_05.html -share/swat/using_samba/ch06_01.html -share/swat/using_samba/ch06_02.html -share/swat/using_samba/ch06_03.html -share/swat/using_samba/ch06_04.html -share/swat/using_samba/ch06_05.html -share/swat/using_samba/ch06_06.html -share/swat/using_samba/ch07_01.html -share/swat/using_samba/ch07_02.html -share/swat/using_samba/ch07_03.html -share/swat/using_samba/ch08_01.html -share/swat/using_samba/ch08_02.html -share/swat/using_samba/ch08_03.html -share/swat/using_samba/ch08_04.html -share/swat/using_samba/ch08_05.html -share/swat/using_samba/ch08_06.html -share/swat/using_samba/ch08_07.html -share/swat/using_samba/ch09_01.html -share/swat/using_samba/ch09_02.html -share/swat/using_samba/ch09_03.html -share/swat/using_samba/figs/sam.0101.gif -share/swat/using_samba/figs/sam.0102.gif -share/swat/using_samba/figs/sam.0103.gif -share/swat/using_samba/figs/sam.0104.gif -share/swat/using_samba/figs/sam.0105.gif -share/swat/using_samba/figs/sam.0106.gif -share/swat/using_samba/figs/sam.0107.gif -share/swat/using_samba/figs/sam.0108.gif -share/swat/using_samba/figs/sam.0109.gif -share/swat/using_samba/figs/sam.0110.gif -share/swat/using_samba/figs/sam.0111.gif -share/swat/using_samba/figs/sam.0112.gif -share/swat/using_samba/figs/sam.0113.gif -share/swat/using_samba/figs/sam.0114.gif -share/swat/using_samba/figs/sam.0201.gif -share/swat/using_samba/figs/sam.0202.gif -share/swat/using_samba/figs/sam.0203.gif -share/swat/using_samba/figs/sam.0204.gif -share/swat/using_samba/figs/sam.0301.gif -share/swat/using_samba/figs/sam.0302.gif -share/swat/using_samba/figs/sam.0303.gif -share/swat/using_samba/figs/sam.0304.gif -share/swat/using_samba/figs/sam.0305.gif -share/swat/using_samba/figs/sam.0306.gif -share/swat/using_samba/figs/sam.0307.gif -share/swat/using_samba/figs/sam.0308.gif -share/swat/using_samba/figs/sam.0309.gif -share/swat/using_samba/figs/sam.0310.gif -share/swat/using_samba/figs/sam.0311.gif -share/swat/using_samba/figs/sam.0312.gif -share/swat/using_samba/figs/sam.0313.gif -share/swat/using_samba/figs/sam.0314.gif -share/swat/using_samba/figs/sam.0315.gif -share/swat/using_samba/figs/sam.0316.gif -share/swat/using_samba/figs/sam.0317.gif -share/swat/using_samba/figs/sam.0318.gif -share/swat/using_samba/figs/sam.0319.gif -share/swat/using_samba/figs/sam.0320.gif -share/swat/using_samba/figs/sam.0321.gif -share/swat/using_samba/figs/sam.0322.gif -share/swat/using_samba/figs/sam.0323.gif -share/swat/using_samba/figs/sam.0324.gif -share/swat/using_samba/figs/sam.0325.gif -share/swat/using_samba/figs/sam.0326.gif -share/swat/using_samba/figs/sam.0327.gif -share/swat/using_samba/figs/sam.0328.gif -share/swat/using_samba/figs/sam.0401.gif -share/swat/using_samba/figs/sam.0402.gif -share/swat/using_samba/figs/sam.0403.gif -share/swat/using_samba/figs/sam.0404.gif -share/swat/using_samba/figs/sam.0405.gif -share/swat/using_samba/figs/sam.0406.gif -share/swat/using_samba/figs/sam.0407.gif -share/swat/using_samba/figs/sam.0501.gif -share/swat/using_samba/figs/sam.0502.gif -share/swat/using_samba/figs/sam.0503.gif -share/swat/using_samba/figs/sam.0504.gif -share/swat/using_samba/figs/sam.0505.gif -share/swat/using_samba/figs/sam.0506.gif -share/swat/using_samba/figs/sam.0507.gif -share/swat/using_samba/figs/sam.0508.gif -share/swat/using_samba/figs/sam.0601.gif -share/swat/using_samba/figs/sam.0602.gif -share/swat/using_samba/figs/sam.0603.gif -share/swat/using_samba/figs/sam.0604.gif -share/swat/using_samba/figs/sam.0605.gif -share/swat/using_samba/figs/sam.0606.gif -share/swat/using_samba/figs/sam.0701.gif -share/swat/using_samba/figs/sam.0702.gif -share/swat/using_samba/figs/sam.0703.gif -share/swat/using_samba/figs/sam.0704.gif -share/swat/using_samba/figs/sam.0705.gif -share/swat/using_samba/figs/sam.0706.gif -share/swat/using_samba/figs/sam.0707.gif -share/swat/using_samba/figs/sam.0708.gif -share/swat/using_samba/figs/sam.0709.gif -share/swat/using_samba/figs/sam.0801.gif -share/swat/using_samba/figs/sam.0802.gif -share/swat/using_samba/figs/sam.0803.gif -share/swat/using_samba/figs/sam.0804.gif -share/swat/using_samba/figs/sam.0805.gif -share/swat/using_samba/figs/sam.0901.gif -share/swat/using_samba/figs/sam.0902.gif -share/swat/using_samba/figs/sam.0903.gif -share/swat/using_samba/figs/sam.0904.gif -share/swat/using_samba/figs/sam.0905.gif -share/swat/using_samba/figs/sam.aa01.gif -share/swat/using_samba/figs/sam.ab01.gif -share/swat/using_samba/figs/sam.ab02.gif -share/swat/using_samba/gifs/index.gif -share/swat/using_samba/gifs/samba.s.gif -share/swat/using_samba/gifs/txthome.gif -share/swat/using_samba/gifs/txtnexta.gif -share/swat/using_samba/gifs/txtpreva.gif -share/swat/using_samba/index.html -share/swat/using_samba/inx.html -share/swat/using_samba/licenseinfo.html -share/swat/using_samba/this_edition.html -@dirrm share/swat/using_samba/gifs -@dirrm share/swat/using_samba/figs -@dirrm share/swat/using_samba -@dirrm share/swat/ja_JP.SJIS/include -@dirrm share/swat/ja_JP.SJIS/images -@dirrm share/swat/ja_JP.SJIS/help -@dirrm share/swat/ja_JP.SJIS -@dirrm share/swat/ja/include -@dirrm share/swat/ja/images -@dirrm share/swat/ja/help/HowToUseSamba -@dirrm share/swat/ja/help -@dirrm share/swat/ja -@dirrm share/swat/include -@dirrm share/swat/images -@dirrm share/swat/help -@dirrm share/swat -@dirrm share/examples/samba/wins_hook -@dirrm share/examples/samba/validchars -@dirrm share/examples/samba/tridge -@dirrm share/examples/samba/thoralf -@dirrm share/examples/samba/svr4-startup -@dirrm share/examples/samba/simple -@dirrm share/examples/samba/printing -@dirrm share/examples/samba/printer-accounting -@dirrm share/examples/samba/misc -@dirrm share/examples/samba/dce-dfs -@dirrm share/examples/samba/autofs -@dirrm share/examples/samba/add-delete-user-script -@dirrm share/examples/samba -@dirrm share/doc/samba/textdocs -@dirrm share/doc/samba/faq -@dirrm share/doc/samba -@dirrm lib/codepages -- cgit v1.2.3