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/sambasentinel/files | |
parent | Revert last commit and fix for libtool. Also add optional esound support. (diff) |
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>
Notes
Notes:
svn path=/head/; revision=44927
Diffstat (limited to 'net/sambasentinel/files')
-rw-r--r-- | net/sambasentinel/files/patch-Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
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 |