diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2001-07-08 15:45:46 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2001-07-08 15:45:46 +0000 |
commit | a9f287b55a26b0abf23da79c8a3b4a881d711a47 (patch) | |
tree | 1362d8f2f3c9b25a8c86d24c6b68cb9eeee0fdba /net | |
parent | ad149bc78e2fef3a446c2bb01595db0c2ee8a6cf (diff) | |
download | ports-a9f287b55a26b0abf23da79c8a3b4a881d711a47.tar.gz ports-a9f287b55a26b0abf23da79c8a3b4a881d711a47.zip |
Notes
Diffstat (limited to 'net')
-rw-r--r-- | net/Makefile | 1 | ||||
-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 |
7 files changed, 64 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index f279fcdb9d1a..c46d9a429582 100644 --- a/net/Makefile +++ b/net/Makefile @@ -332,6 +332,7 @@ SUBDIR += rwhois SUBDIR += samba SUBDIR += samba-devel + SUBDIR += sambasentinel SUBDIR += samplicator SUBDIR += satellite SUBDIR += scotty 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 |