[Pkg-mono-svn-commits] rev 368 - mono-vhostmanager/src

Pablo Fischer pabl0-guest@quantz.debian.org
Sat, 28 Feb 2004 05:42:05 +0100


Author: pabl0-guest
Date: 2004-02-28 05:42:05 +0100 (Sat, 28 Feb 2004)
New Revision: 368

Modified:
   mono-vhostmanager/src/Makefile
Log:
Renamed the files that should be installed. 

Remember that the name 'nethostmanager', already exists, so I preffer to change
the name of it to mono-vhostmanager.

mono, cause I preffer to name it mono than dotnet :)
vhostmanager, well, is what the program does, it manages virtualhosts, no nethosts.

So, the changes are:
 * To the app (mono-vhostmanager.exe)
 * To the manpage (mono-vhostmanager.1).

  


Modified: mono-vhostmanager/src/Makefile
===================================================================
--- mono-vhostmanager/src/Makefile	2004-02-28 02:38:01 UTC (rev 367)
+++ mono-vhostmanager/src/Makefile	2004-02-28 04:42:05 UTC (rev 368)
@@ -1,4 +1,4 @@
-#Makefile for mono-nethostmanager
+#Makefile for mono-vhostmanager
 
 SHELL = /bin/sh
 MCS = mcs
@@ -16,22 +16,22 @@
 man1dir = $(mandir)/man1
 
 
-NAME = nethostmanager
+NAME = mono-vhostmanager
 SOURCES = Manager.cs VirtualSchema.cs
  
-all: nethostmanager.exe
+all: mono-vhostmanager.exe
  
-nethostmanager.exe: $(SOURCES) 
+mono-vhostmanager.exe: $(SOURCES) 
 	$(MCS) -o $@ $(SOURCES) 
 
-install: nethostmanager.exe	
+install: mono-vhostmanager.exe	
 	$(INSTALL) -m 755 $(NAME).exe $(DESTDIR)$(bindir)/$(NAME).exe
 	$(INSTALL_DIR) $(DESTDIR)$(man1dir)
-	$(INSTALL_DATA) doc/nethostmanager.1 $(DESTDIR)$(man1dir)/nethostmanager.1
+	$(INSTALL_DATA) doc/mono-vhostmanager.1 $(DESTDIR)$(man1dir)/mono-vhostmanager.1
  
 uninstall:
 	rm -Rf $(DESTDIR)/bin/$(NAME).exe
-	rm -Rf $(DESTDIR)/$(man1dir)/nethostmanager.1 
+	rm -Rf $(DESTDIR)/$(man1dir)/mono-vhostmanager.1 
  
 clean:
 	rm -Rf $(NAME).exe *.bak *~