Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 4 Nov 1998 11:54:02 +0300 (MSK)
From:      Andrey Zakhvatov <andy@icc.surw.chel.su>
To:        FreeBSD-gnats-submit@FreeBSD.ORG
Subject:   ports/8572: New port: gtksamba-0.1.0
Message-ID:  <199811040854.LAA10275@icc.surw.chel.su>

next in thread | raw e-mail | index | archive | help

>Number:         8572
>Category:       ports
>Synopsis:       New port: gtksamba-0.1.0
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:
>Keywords:
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed Nov  4 01:00:01 PST 1998
>Last-Modified:
>Originator:     Andrey Zakhvatov
>Organization:
South Ural Railway ICC
>Release:        FreeBSD 2.2.7-RELEASE i386
>Environment:

>Description:

   This is a port of gtksamba, Samba configuration tool for X Window
System.
GtkSamba is a GUI tool for the Configuration of the Samba,
the SMB file server on X11/Unix.  It will read, edit and
write /usr/local/etc/smb.conf, an alternate configuration
file, or from a network. It uses the GTK toolkit.
This is an early development release, not all functionality
is implemented.  It will let you edit any existing
parameter from a text entry, but without any checking.


# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	gtksamba-0.1.0
#	gtksamba-0.1.0/Makefile
#	gtksamba-0.1.0/files
#	gtksamba-0.1.0/files/md5
#	gtksamba-0.1.0/patches
#	gtksamba-0.1.0/patches/patch-ab
#	gtksamba-0.1.0/patches/patch-aa
#	gtksamba-0.1.0/pkg
#	gtksamba-0.1.0/pkg/PLIST
#	gtksamba-0.1.0/pkg/COMMENT
#	gtksamba-0.1.0/pkg/DESCR
#
echo c - gtksamba-0.1.0
mkdir -p gtksamba-0.1.0 > /dev/null 2>&1
echo x - gtksamba-0.1.0/Makefile
sed 's/^X//' >gtksamba-0.1.0/Makefile << 'END-of-gtksamba-0.1.0/Makefile'
X# New ports collection makefile for:	gtksamba
X# Version required:			0.1.0
X# Date created:				4 November 1998
X# Whom:					Andrey Zakhvatov
X#
X# $Id$
X#
X
XDISTNAME=	gtksamba-0.1.0
XCATEGORIES=	x11
XMASTER_SITES=	http://www.open-systems.com/gtksamba/
X
XMAINTAINER=	andy@icc.surw.chel.su
X
XLIB_DEPENDS=	gtk.1.:${PORTSDIR}/x11-toolkits/gtk
X
XUSE_X_PREFIX=	yes
X
Xdo-install:
X	@ ${INSTALL_PROGRAM} ${WRKSRC}/gtksamba ${PREFIX}/bin
X.if !defined(NOPORTDOCS)
X	@ ${MKDIR} ${PREFIX}/share/doc/gtksamba
X.for file in COPYING README TODO
X	@ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/gtksamba
X.endfor
X.endif
X
X.include <bsd.port.mk>
END-of-gtksamba-0.1.0/Makefile
echo c - gtksamba-0.1.0/files
mkdir -p gtksamba-0.1.0/files > /dev/null 2>&1
echo x - gtksamba-0.1.0/files/md5
sed 's/^X//' >gtksamba-0.1.0/files/md5 << 'END-of-gtksamba-0.1.0/files/md5'
XMD5 (gtksamba-0.1.0.tar.gz) = f1a609165538aa3f3b355c6fece1aea6
END-of-gtksamba-0.1.0/files/md5
echo c - gtksamba-0.1.0/patches
mkdir -p gtksamba-0.1.0/patches > /dev/null 2>&1
echo x - gtksamba-0.1.0/patches/patch-ab
sed 's/^X//' >gtksamba-0.1.0/patches/patch-ab << 'END-of-gtksamba-0.1.0/patches/patch-ab'
X--- gtksamba.h	Sun Nov  1 09:53:04 1998
X+++ /home/andy/tmp/wrk/gtksamba.h	Wed Nov  4 16:23:45 1998
X@@ -25,7 +25,7 @@
X   int write;
X } SmbWin;
X 
X-#define CONFILE "/etc/smb.conf"
X+#define CONFILE "/usr/local/etc/smb.conf"
X 
X #define SMB_WIN(obj) ((SmbWin *)(obj))
X 
END-of-gtksamba-0.1.0/patches/patch-ab
echo x - gtksamba-0.1.0/patches/patch-aa
sed 's/^X//' >gtksamba-0.1.0/patches/patch-aa << 'END-of-gtksamba-0.1.0/patches/patch-aa'
X--- Makefile	Sun Nov  1 18:46:45 1998
X+++ /home/andy/tmp/wrk/Makefile	Wed Nov  4 16:22:23 1998
X@@ -1,22 +1,23 @@
X # Makefile for GtkSamba
X-CC = gcc
X+CC?= gcc
X INSTALL = install
X INSTALLDIR = /usr/local
X LIBS = `gtk-config --libs`
X-CFLAGS = -Wall -O2 `gtk-config --cflags`
X+CFLAGS?= -Wall -O2
X+CFLAGS+= `gtk-config --cflags`
X RM = rm -rf
X 
X all: gtksamba
X 
X #rule for object files
X .c.o:
X-	$(CC) $(CFLAGS) -Wall -c $<
X+	$(CC) $(CFLAGS) -c $<
X 
X 
X 
X #rule for program
X gtksamba: gtksamba.o  diagmenu.o params.o conflists.o
X-	$(CC) $(LIBS) -Wall -o gtksamba gtksamba.o params.o diagmenu.o \
X+	$(CC) $(LIBS) -o gtksamba gtksamba.o params.o diagmenu.o \
X 	conflists.o
X 
X install: gtksamba
END-of-gtksamba-0.1.0/patches/patch-aa
echo c - gtksamba-0.1.0/pkg
mkdir -p gtksamba-0.1.0/pkg > /dev/null 2>&1
echo x - gtksamba-0.1.0/pkg/PLIST
sed 's/^X//' >gtksamba-0.1.0/pkg/PLIST << 'END-of-gtksamba-0.1.0/pkg/PLIST'
Xbin/gtksamba
Xshare/doc/gtksamba/COPYING
Xshare/doc/gtksamba/README
Xshare/doc/gtksamba/TODO
X@dirrm share/doc/gtksamba
END-of-gtksamba-0.1.0/pkg/PLIST
echo x - gtksamba-0.1.0/pkg/COMMENT
sed 's/^X//' >gtksamba-0.1.0/pkg/COMMENT << 'END-of-gtksamba-0.1.0/pkg/COMMENT'
XSamba configuration tool for X Window System.
END-of-gtksamba-0.1.0/pkg/COMMENT
echo x - gtksamba-0.1.0/pkg/DESCR
sed 's/^X//' >gtksamba-0.1.0/pkg/DESCR << 'END-of-gtksamba-0.1.0/pkg/DESCR'
XGtkSamba is a GUI tool for the Configuration of the Samba,
Xthe SMB file server on X11/Unix.  It will read, edit and
Xwrite /usr/local/etc/smb.conf, an alternate configuration
Xfile, or from a network. It uses the GTK toolkit.
X
XThis is an early development release, not all functionality
Xis implemented.  It will let you edit any existing
Xparameter from a text entry, but without any checking.
X
Xhttp://www.open-systems.com/gtksamba.html
END-of-gtksamba-0.1.0/pkg/DESCR
exit


>How-To-Repeat:

>Fix:
	
   Please, check and commit this port.

>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199811040854.LAA10275>