[Pkg-mono-svn-commits] rev 2048 - in non-group: . ndoc ndoc/trunk

Jelmer Vernooij ctrlsoft-guest at costa.debian.org
Tue Sep 27 20:58:25 UTC 2005


Author: ctrlsoft-guest
Date: 2005-09-27 20:58:25 +0000 (Tue, 27 Sep 2005)
New Revision: 2048

Added:
   non-group/ndoc/
   non-group/ndoc/trunk/
   non-group/ndoc/trunk/changelog
   non-group/ndoc/trunk/control
   non-group/ndoc/trunk/copyright
   non-group/ndoc/trunk/dirs
   non-group/ndoc/trunk/install
   non-group/ndoc/trunk/ndoc-console
   non-group/ndoc/trunk/ndoc-console.1
   non-group/ndoc/trunk/rules
   non-group/ndoc/trunk/watch
Log:
Add initial work on ndoc package


Added: non-group/ndoc/trunk/changelog
===================================================================
--- non-group/ndoc/trunk/changelog	2005-09-27 11:34:16 UTC (rev 2047)
+++ non-group/ndoc/trunk/changelog	2005-09-27 20:58:25 UTC (rev 2048)
@@ -0,0 +1,6 @@
+ndoc (1.3.1-1) unstable; urgency=low
+
+  * Initial Release.
+    (closes: Bug#312828)
+
+ -- Jelmer Vernooij <jelmer at samba.org>  Sat, 12 Jun 2005 14:41:43 +0200

Added: non-group/ndoc/trunk/control
===================================================================
--- non-group/ndoc/trunk/control	2005-09-27 11:34:16 UTC (rev 2047)
+++ non-group/ndoc/trunk/control	2005-09-27 20:58:25 UTC (rev 2048)
@@ -0,0 +1,49 @@
+Source: ndoc
+Section: devel
+Priority: optional
+Maintainer: Jelmer Vernooij <jelmer at samba.org>
+Build-Depends: debhelper (>= 4.0.0), mono-mcs (>= 1.0) | c-sharp-compiler, cli-common (>= 0.2.0), libmono-dev (>= 1.0), nant (>= 0.84), mono-gac (>= 1.1.6)
+Standards-Version: 3.6.1
+
+Package: ndoc-console
+Architecture: all
+Depends: ${cli:Depends}
+Description: Code documentation generator for .NET
+ NDoc generates class library documentation from .NET assemblies and
+ the XML documentation files generated by a C# compiler. It can
+ currently generate documentation in HTML, LaTeX and CHM (Windows
+ Help Files).
+ .
+ This package contains the console front-end.
+
+Package: libndoc-cil
+Architecture: all
+Depends: ${cli:Depends}
+Description: Code documentation generator for .NET
+ NDoc generates class library documentation from .NET assemblies and
+ the XML documentation files generated by a C# compiler. It can
+ currently generate documentation in HTML, LaTeX and CHM (Windows
+ Help Files).
+
+Package: libndoc-dev
+Architecture: all
+Depends: ${cli:Depends}
+Description: Code documentation generator for .NET
+ NDoc generates class library documentation from .NET assemblies and
+ the XML documentation files generated by a C# compiler. It can
+ currently generate documentation in HTML, LaTeX and CHM (Windows
+ Help Files).
+ .
+ This package contains the API documentation.
+
+Package: ndoc
+Architecture: all
+Depends: libndoc-dev, libndoc-cil, ndoc-console
+Description: Code documentation generator for .NET
+ NDoc generates class library documentation from .NET assemblies and
+ the XML documentation files generated by a C# compiler. It can
+ currently generate documentation in HTML, LaTeX and CHM (Windows
+ Help Files).
+ .
+ This is a dummy package that depends on all other ndoc packages.
+

Added: non-group/ndoc/trunk/copyright
===================================================================
--- non-group/ndoc/trunk/copyright	2005-09-27 11:34:16 UTC (rev 2047)
+++ non-group/ndoc/trunk/copyright	2005-09-27 20:58:25 UTC (rev 2048)
@@ -0,0 +1,31 @@
+This package was debianized by Jelmer Vernooij <jelmer at samba.org> on
+Sun, 12 Jun 2005 14:42:15 +0200.
+
+It was downloaded from http://ndoc.sourceforge.net/
+
+Upstream authors:
+Michael C. Two
+Charlie Poole
+Jamie Cansdale
+Gary Feldman
+James W. Newkirk
+Alexei A. Vorontsov
+Philip A. Craig
+
+Copyright:
+   This package is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; version 2 dated June, 1991.
+
+   This package is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this package; if not, write to the Free Software
+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+   02111-1307, USA.
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.

Added: non-group/ndoc/trunk/dirs
===================================================================
--- non-group/ndoc/trunk/dirs	2005-09-27 11:34:16 UTC (rev 2047)
+++ non-group/ndoc/trunk/dirs	2005-09-27 20:58:25 UTC (rev 2048)
@@ -0,0 +1,2 @@
+usr/lib/ndoc
+usr/share/doc/ndoc

Added: non-group/ndoc/trunk/install
===================================================================
--- non-group/ndoc/trunk/install	2005-09-27 11:34:16 UTC (rev 2047)
+++ non-group/ndoc/trunk/install	2005-09-27 20:58:25 UTC (rev 2048)
@@ -0,0 +1,5 @@
+debian/ndoc-console /usr/bin/
+doc/sdk /usr/share/doc/ndoc/html/
+examples/* /usr/share/doc/ndoc/examples
+bin/mono/1.0/*.dll /usr/lib/ndoc
+bin/mono/1.0/*.exe /usr/lib/ndoc

Added: non-group/ndoc/trunk/ndoc-console
===================================================================
--- non-group/ndoc/trunk/ndoc-console	2005-09-27 11:34:16 UTC (rev 2047)
+++ non-group/ndoc/trunk/ndoc-console	2005-09-27 20:58:25 UTC (rev 2048)
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+exec /usr/bin/cli /usr/lib/ndoc/bin/NDocConsole.exe "$@"


Property changes on: non-group/ndoc/trunk/ndoc-console
___________________________________________________________________
Name: svn:executable
   + *

Added: non-group/ndoc/trunk/ndoc-console.1
===================================================================
--- non-group/ndoc/trunk/ndoc-console.1	2005-09-27 11:34:16 UTC (rev 2047)
+++ non-group/ndoc/trunk/ndoc-console.1	2005-09-27 20:58:25 UTC (rev 2048)
@@ -0,0 +1,21 @@
+.TH nunit-console 1 "1 June 2005"
+.SH NAME
+ndoc-console \- Test-based front-end to NDoc
+.SH SYNOPSIS
+.PP
+.B ndoc-console
+[options]
+.RI
+.SH DESCRIPTION
+\fBndoc-console\fP is a simple but powerful front-end to NDoc, a 
+documentation generator framework for .NET.
+
+.PP
+.SH OPTIONS
+.PP
+FIXME
+
+.SH AUTHOR
+.BR
+ This manpage was written by Jelmer Vernooij <jelmer at samba.org> for 
+ the Debian project (but may be used by others).

Added: non-group/ndoc/trunk/rules
===================================================================
--- non-group/ndoc/trunk/rules	2005-09-27 11:34:16 UTC (rev 2047)
+++ non-group/ndoc/trunk/rules	2005-09-27 20:58:25 UTC (rev 2048)
@@ -0,0 +1,53 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+export MONO_SHARED_DIR=$(CURDIR)
+NANT = nant -t:mono-1.0
+
+build: build-stamp
+build-stamp: 
+	dh_testdir
+	$(NANT) release compile-build
+	touch build-stamp
+
+clean: 
+	dh_testdir
+	dh_testroot
+	rm -rf build
+	$(NANT) clean-build-dir
+	rm -rf .wapi
+	rm -f build-stamp
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+	-cd $(CURDIR)/debian && find -type f -name "*.exe" -exec chmod +x {} \;
+	-cd $(CURDIR)/debian && find -type f -name "*.dll" -exec chmod -x {} \;
+
+binary-indep: install
+	dh_testdir -i
+	dh_testroot -i
+	dh_movefiles -i
+	dh_link -i
+	dh_install -i
+	dh_installchangelogs -i
+	dh_installdocs -i README.txt
+	dh_installexamples -i examples/*
+	dh_installmenu -i
+	dh_installman -i debian/ndoc-console.1
+	dh_strip -i
+	dh_compress -i
+	dh_fixperms -i
+	dh_installdeb -i
+	dh_makeclilibs -i
+	dh_clideps -i -d
+	dh_gencontrol -i
+	dh_md5sums -i
+	dh_builddeb -i
+
+binary: binary-indep
+.PHONY: clean build binary-indep binary install 


Property changes on: non-group/ndoc/trunk/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: non-group/ndoc/trunk/watch
===================================================================
--- non-group/ndoc/trunk/watch	2005-09-27 11:34:16 UTC (rev 2047)
+++ non-group/ndoc/trunk/watch	2005-09-27 20:58:25 UTC (rev 2048)
@@ -0,0 +1,2 @@
+version=2
+ftp://ftp.sourceforge.net/n/nd/ndoc/ndoc-devel-v([\d.]+)\.zip




More information about the Pkg-mono-svn-commits mailing list