diff options
author | kevlo <kevlo@FreeBSD.org> | 2001-07-08 23:45:46 +0800 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2001-07-08 23:45:46 +0800 |
commit | 100ed0c5af1c9bd3f0db17ff80d69f403eafb194 (patch) | |
tree | 87f066e8d7e29bdc53fd86cbb524bd51b04e4d22 /net/sambasentinel | |
parent | 3280c67cbc3b25c0e62453f00e30b4e98457f3c9 (diff) | |
download | freebsd-ports-gnome-100ed0c5af1c9bd3f0db17ff80d69f403eafb194.tar.gz freebsd-ports-gnome-100ed0c5af1c9bd3f0db17ff80d69f403eafb194.tar.zst freebsd-ports-gnome-100ed0c5af1c9bd3f0db17ff80d69f403eafb194.zip |
Initial import of sambasentinel-0.1.
SambaSentinel is basically a gtk-frontend to smbstatus but
it extends it with number of useful features such as killing
processes and mounting/browsing a visiting computer.
PR: 28744
Submitted by: Patrick Li <pat@databits.net>
Diffstat (limited to 'net/sambasentinel')
-rw-r--r-- | net/sambasentinel/Makefile | 27 | ||||
-rw-r--r-- | net/sambasentinel/distinfo | 1 | ||||
-rw-r--r-- | net/sambasentinel/files/patch-Makefile | 25 | ||||
-rw-r--r-- | net/sambasentinel/pkg-comment | 1 | ||||
-rw-r--r-- | net/sambasentinel/pkg-descr | 8 | ||||
-rw-r--r-- | net/sambasentinel/pkg-plist | 1 |
6 files changed, 63 insertions, 0 deletions
diff --git a/net/sambasentinel/Makefile b/net/sambasentinel/Makefile new file mode 100644 index 000000000000..f1c952148d06 --- /dev/null +++ b/net/sambasentinel/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: sambasentinel +# Date created: Thu Jul 5 16:41:21 EDT 2001 +# Whom: Patrick Li <pat@databits.net> +# +# $FreeBSD$ +# + +PORTNAME= sambasentinel +PORTVERSION= 0.1 +CATEGORIES= net +MASTER_SITES= http://boombox.campus.luth.se/files/ +DISTNAME= SambaSentinel-${PORTVERSION} + +MAINTAINER= pat@databits.net + +RUN_DEPENDS= jags:${PORTSDIR}/net/jags + +WRKSRC= ${WRKDIR}/SambaSentinel +USE_GMAKE= yes +USE_XPM= yes +USE_GTK= yes +ALL_TARGET= SambaSentinel + +do-install: + @${INSTALL_PROGRAM} ${WRKSRC}/SambaSentinel ${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/net/sambasentinel/distinfo b/net/sambasentinel/distinfo new file mode 100644 index 000000000000..73f1446c1c99 --- /dev/null +++ b/net/sambasentinel/distinfo @@ -0,0 +1 @@ +MD5 (SambaSentinel-0.1.tar.gz) = f9213946e051ec0491e21ae1d13de9cf diff --git a/net/sambasentinel/files/patch-Makefile b/net/sambasentinel/files/patch-Makefile new file mode 100644 index 000000000000..489add7a0863 --- /dev/null +++ b/net/sambasentinel/files/patch-Makefile @@ -0,0 +1,25 @@ +--- Makefile.orig Thu Jul 5 16:46:20 2001 ++++ Makefile Thu Jul 5 16:49:08 2001 +@@ -1,16 +1,17 @@ +-INCDIR = `gtk-config --cflags` +-LIBS = `gtk-config --libs gthread` ++CC = gcc ++INCDIR = `${GTK_CONFIG} --cflags` ++LIBS = `${GTK_CONFIG} --libs gthread` + TARGET = SambaSentinel + FILES = SambaSentinel.c gtk_common.cpp + OBJECTS = SambaSentinel.o gtk_common.o + SambaSentinel: $(OBJECTS) +- gcc $(INCDIR) $(LIBS) -o $(TARGET) $(OBJECTS) ++ $(CC) $(INCDIR) $(LIBS) -o $(TARGET) $(OBJECTS) + + SambaSentinel.o:SambaSentinel.c +- gcc $(INCDIR) -c -o SambaSentinel.o SambaSentinel.c ++ $(CC) $(INCDIR) -c -o SambaSentinel.o SambaSentinel.c + + gtk_common.o: gtk_common.c +- gcc $(INCDIR) -c -o gtk_common.o gtk_common.c ++ $(CC) $(INCDIR) -c -o gtk_common.o gtk_common.c + + clean: + rm -f *.o SambaSentinel *~ core diff --git a/net/sambasentinel/pkg-comment b/net/sambasentinel/pkg-comment new file mode 100644 index 000000000000..e12281a383f7 --- /dev/null +++ b/net/sambasentinel/pkg-comment @@ -0,0 +1 @@ +SambaSentinel is a gtk-frontend to smbstatus with additional features diff --git a/net/sambasentinel/pkg-descr b/net/sambasentinel/pkg-descr new file mode 100644 index 000000000000..224725cda09c --- /dev/null +++ b/net/sambasentinel/pkg-descr @@ -0,0 +1,8 @@ +SambaSentinel is basically a gtk-frontend to smbstatus but +it extends it with number of useful features such as killing +processes and mounting/browsing a visiting computer. + +WWW: http://boombox.campus.luth.se/sambasentinel.php +Author: Robert Kling <robkli-8@student.luth.se> + +- Patrick Li <pat@databits.net> diff --git a/net/sambasentinel/pkg-plist b/net/sambasentinel/pkg-plist new file mode 100644 index 000000000000..883367508ca5 --- /dev/null +++ b/net/sambasentinel/pkg-plist @@ -0,0 +1 @@ +bin/SambaSentinel |