[Midnightbsd-cvs] mports: mports/net: Add sambasentinel

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Fri May 30 16:45:11 EDT 2008


Log Message:
-----------
Add sambasentinel

Modified Files:
--------------
    mports/net:
        Makefile (r1.68 -> r1.69)

Added Files:
-----------
    mports/net/sambasentinel:
        Makefile (r1.1)
        distinfo (r1.1)
        pkg-descr (r1.1)
    mports/net/sambasentinel/files:
        patch-Makefile (r1.1)

-------------- next part --------------
--- /dev/null
+++ net/sambasentinel/pkg-descr
@@ -0,0 +1,5 @@
+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.
+
+Author: Robert Kling <robkli-8 at student.luth.se>
--- /dev/null
+++ net/sambasentinel/Makefile
@@ -0,0 +1,31 @@
+# New ports collection makefile for:	sambasentinel
+# Date created:				May 30, 2008
+# Whom:					Lucas Holt <luke at midnightbsd.org>
+#
+# $MidnightBSD: mports/net/sambasentinel/Makefile,v 1.1 2008/05/30 20:45:08 laffer1 Exp $
+#
+
+PORTNAME=	sambasentinel
+PORTVERSION=	0.1
+PORTREVISION=	0
+CATEGORIES=	net
+MASTER_SITES=	ftp://ftp.fasta.fh-dortmund.de/pub/linux/gentoo/distfiles/ \
+		http://voodoo.bawue.com/download/
+DISTNAME=	SambaSentinel-${PORTVERSION}
+
+MAINTAINER=	ports at MidnightBSD.org
+COMMENT=	SambaSentinel is a gtk-frontend to smbstatus with additional features
+LICENSE=	gpl2
+
+RUN_DEPENDS=	jags:${PORTSDIR}/net/jags
+
+PLIST_FILES=	bin/SambaSentinel
+WRKSRC=		${WRKDIR}/SambaSentinel
+USE_GMAKE=	yes
+USE_GNOME=	gtk12
+ALL_TARGET=	SambaSentinel
+
+do-install:
+	@${INSTALL_PROGRAM} ${WRKSRC}/SambaSentinel ${PREFIX}/bin
+
+.include <bsd.port.mk>
--- /dev/null
+++ net/sambasentinel/distinfo
@@ -0,0 +1,3 @@
+MD5 (SambaSentinel-0.1.tar.gz) = f9213946e051ec0491e21ae1d13de9cf
+SHA256 (SambaSentinel-0.1.tar.gz) = 840fae896327f0b1c83db257895ff5eaa4891c9207ef8169c290ce686efb4dec
+SIZE (SambaSentinel-0.1.tar.gz) = 18909
Index: Makefile
===================================================================
RCS file: /home/cvs/mports/net/Makefile,v
retrieving revision 1.68
retrieving revision 1.69
diff -L net/Makefile -L net/Makefile -u -r1.68 -r1.69
--- net/Makefile
+++ net/Makefile
@@ -17,6 +17,7 @@
     SUBDIR += freeradius
     SUBDIR += gnet2
     SUBDIR += ilbc
+    SUBDIR += jags
     SUBDIR += kdenetwork3
     SUBDIR += libdnet
     SUBDIR += libnet
@@ -62,6 +63,7 @@
     SUBDIR += samba-pdbsql
     SUBDIR += samba3
     SUBDIR += samba4wins
+    SUBDIR += sambasentinel
     SUBDIR += sdl_net
     SUBDIR += skype
     SUBDIR += tsocks
--- /dev/null
+++ 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


More information about the Midnightbsd-cvs mailing list