diff --git a/devel/nant/Makefile b/devel/nant/Makefile index e0c12fe0ce2..5d4f518195e 100644 --- a/devel/nant/Makefile +++ b/devel/nant/Makefile @@ -1,10 +1,10 @@ -# $OpenBSD: Makefile,v 1.4 2010/04/05 10:44:43 robert Exp $ +# $OpenBSD: Makefile,v 1.5 2010/05/09 21:57:09 robert Exp $ COMMENT= .NET build tool inspired by Ant -V= 0.86-beta1 +V= 0.90 DISTNAME= nant-${V}-src -PKGNAME= ${DISTNAME:S/-src//}p2 +PKGNAME= ${DISTNAME:S/-src//} CATEGORIES= devel lang MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=nant/} @@ -25,7 +25,8 @@ WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//} WRKDIST= ${WRKSRC} FAKE_FLAGS= prefix=${WRKINST}${TRUEPREFIX} \ - vprefix=${TRUEPREFIX}/share/NAnt + vprefix=${TRUEPREFIX}/share/NAnt \ + trueprefix=${TRUEPREFIX} post-patch: @find ${WRKSRC}/src ${WRKSRC}/tests -name '*.build' \ diff --git a/devel/nant/distinfo b/devel/nant/distinfo index 7363853aa8a..93793dd8118 100644 --- a/devel/nant/distinfo +++ b/devel/nant/distinfo @@ -1,5 +1,5 @@ -MD5 (nant-0.86-beta1-src.tar.gz) = bl5bpFFb3lZowIWAcyKh8w== -RMD160 (nant-0.86-beta1-src.tar.gz) = ljQ8MEA7t0DlLVFojIVXOKgCG78= -SHA1 (nant-0.86-beta1-src.tar.gz) = n5E4G5xURZxcxW4x5GReRwo8vps= -SHA256 (nant-0.86-beta1-src.tar.gz) = v5wkWyD/5qKkSBT6Cgp5o9Z7TAS3Qhi4mbQwl1tPDb0= -SIZE (nant-0.86-beta1-src.tar.gz) = 2187213 +MD5 (nant-0.90-src.tar.gz) = G6hJJJxv8ABirJ6pD3KbIA== +RMD160 (nant-0.90-src.tar.gz) = Zw1wL/u5yW2/12s3ZVUSAthaO/E= +SHA1 (nant-0.90-src.tar.gz) = tTgz99qfyHsiD/iYQbTdPEwl8BE= +SHA256 (nant-0.90-src.tar.gz) = 3OU1OeOnlPHG28iH3rkPPCDs7rfmxf1xaacVMaHph8w= +SIZE (nant-0.90-src.tar.gz) = 1716710 diff --git a/devel/nant/patches/patch-Makefile b/devel/nant/patches/patch-Makefile index 3f53d236ab4..e16a9ff64c6 100644 --- a/devel/nant/patches/patch-Makefile +++ b/devel/nant/patches/patch-Makefile @@ -1,12 +1,12 @@ -$OpenBSD: patch-Makefile,v 1.1 2010/04/05 10:02:05 robert Exp $ ---- Makefile.orig Mon Apr 5 11:58:32 2010 -+++ Makefile Mon Apr 5 11:58:40 2010 -@@ -40,7 +40,7 @@ clean: - rm -fR build bootstrap - - install: bootstrap -- $(NANT) -f:NAnt.build install -D:install.prefix="$(prefix)" -+ $(NANT) -f:NAnt.build install -D:install.prefix="$(prefix)" -D:install.vprefix="$(vprefix)" - - run-test: bootstrap - $(NANT) -f:NAnt.build test +$OpenBSD: patch-Makefile,v 1.2 2010/05/09 21:57:09 robert Exp $ +--- Makefile.orig Sat May 8 13:30:48 2010 ++++ Makefile Sat May 8 13:33:31 2010 +@@ -43,7 +43,7 @@ clean: + rm -fR build bootstrap + + install: bootstrap +- $(NANT) $(TARGET_FRAMEWORK) -f:NAnt.build install -D:prefix="$(prefix)" -D:destdir="${DESTDIR}" ++ $(NANT) $(TARGET_FRAMEWORK) -f:NAnt.build install -D:prefix="$(prefix)" -D:install.vprefix="$(vprefix)" -D:install.trueprefix="$(trueprefix)" + + run-test: bootstrap + $(NANT) $(TARGET_FRAMEWORK) -f:NAnt.build test diff --git a/devel/nant/patches/patch-NAnt_build b/devel/nant/patches/patch-NAnt_build index 6a52e9efd5a..7a2a1b6b697 100644 --- a/devel/nant/patches/patch-NAnt_build +++ b/devel/nant/patches/patch-NAnt_build @@ -1,12 +1,49 @@ -$OpenBSD: patch-NAnt_build,v 1.1 2010/04/05 10:02:05 robert Exp $ ---- NAnt.build.orig Mon Apr 5 11:57:03 2010 -+++ NAnt.build Mon Apr 5 11:57:59 2010 -@@ -830,7 +830,7 @@ - the wrapper is created - --> - #!/bin/sh -- exec ${path::combine(prefix, 'bin')}/mono ${path::combine(install.copylocation, 'bin')}/NAnt.exe "$@" -+ exec ${path::combine(prefix, 'bin')}/mono ${path::combine(install.vprefix, 'bin')}/NAnt.exe "$@" - - - +$OpenBSD: patch-NAnt_build,v 1.2 2010/05/09 21:57:09 robert Exp $ +--- NAnt.build.orig Sat May 8 14:12:26 2010 ++++ NAnt.build Sat May 8 15:53:10 2010 +@@ -860,6 +860,7 @@ + + + ++ + + + +@@ -868,6 +869,7 @@ + + + ++ + + + +@@ -876,13 +878,19 @@ + + + +- + + + + + + ++ ++ ++ ++ ++ ++ ++ + + + +@@ -901,7 +909,7 @@ + the wrapper is created + --> + #!/bin/sh${environment::newline()} +- exec ${path::combine(install.prefix, 'bin')}/mono ${path::combine(install.nant, 'bin')}/NAnt.exe "$@" ++ exec ${path::combine(install.trueprefix, 'bin')}/mono ${path::combine(install.vprefix, 'bin')}/NAnt.exe "$@" + + + diff --git a/devel/nant/pkg/PLIST b/devel/nant/pkg/PLIST index 5f628c335dd..2a28fb2d645 100644 --- a/devel/nant/pkg/PLIST +++ b/devel/nant/pkg/PLIST @@ -1,5 +1,6 @@ -@comment $OpenBSD: PLIST,v 1.1.1.1 2010/04/05 01:13:44 robert Exp $ +@comment $OpenBSD: PLIST,v 1.2 2010/05/09 21:57:09 robert Exp $ bin/nant +lib/pkgconfig/nant.pc share/NAnt/ share/NAnt/bin/ share/NAnt/bin/NAnt.CompressionTasks.dll @@ -44,47 +45,404 @@ share/NAnt/bin/extensions/common/2.0/NAnt.MSBuild.dll.mdb share/NAnt/bin/extensions/common/2.0/NAnt.MSBuild.xml share/NAnt/bin/lib/ share/NAnt/bin/lib/common/ +share/NAnt/bin/lib/common/1.1/ +share/NAnt/bin/lib/common/1.1/nunit-console-runner.dll +share/NAnt/bin/lib/common/1.1/nunit-console.exe +share/NAnt/bin/lib/common/1.1/nunit.core.dll +share/NAnt/bin/lib/common/1.1/nunit.framework.dll +share/NAnt/bin/lib/common/1.1/nunit.util.dll +share/NAnt/bin/lib/common/2.0/ +share/NAnt/bin/lib/common/2.0/nunit-console-runner.dll +share/NAnt/bin/lib/common/2.0/nunit-console.exe +share/NAnt/bin/lib/common/2.0/nunit.core.dll +share/NAnt/bin/lib/common/2.0/nunit.framework.dll +share/NAnt/bin/lib/common/2.0/nunit.util.dll share/NAnt/bin/lib/common/neutral/ share/NAnt/bin/lib/common/neutral/ICSharpCode.SharpCvsLib.Console.dll share/NAnt/bin/lib/common/neutral/ICSharpCode.SharpCvsLib.dll share/NAnt/bin/lib/common/neutral/ICSharpCode.SharpZipLib.dll +share/NAnt/bin/lib/common/neutral/NDoc.Core.dll +share/NAnt/bin/lib/common/neutral/NDoc.Documenter.Msdn.dll +share/NAnt/bin/lib/common/neutral/NDoc.ExtendedUI.dll share/NAnt/bin/lib/common/neutral/NUnitCore.dll -share/NAnt/bin/lib/mono/ -share/NAnt/bin/lib/mono/1.0/ -share/NAnt/bin/lib/mono/1.0/NDoc.Core.dll -share/NAnt/bin/lib/mono/1.0/NDoc.Documenter.Msdn.dll -share/NAnt/bin/lib/mono/1.0/NDoc.ExtendedUI.dll -share/NAnt/bin/lib/mono/1.0/nunit.core.dll -share/NAnt/bin/lib/mono/1.0/nunit.framework.dll -share/NAnt/bin/lib/mono/1.0/nunit.util.dll -share/NAnt/bin/lib/mono/2.0/ -share/NAnt/bin/lib/mono/2.0/NDoc.Core.dll -share/NAnt/bin/lib/mono/2.0/NDoc.Documenter.Msdn.dll -share/NAnt/bin/lib/mono/2.0/NDoc.ExtendedUI.dll -share/NAnt/bin/lib/mono/2.0/nunit.core.dll -share/NAnt/bin/lib/mono/2.0/nunit.framework.dll -share/NAnt/bin/lib/mono/2.0/nunit.util.dll share/NAnt/bin/lib/net/ share/NAnt/bin/lib/net/1.0/ share/NAnt/bin/lib/net/1.0/NDoc.Core.dll share/NAnt/bin/lib/net/1.0/NDoc.Documenter.Msdn.dll share/NAnt/bin/lib/net/1.0/NDoc.ExtendedUI.dll +share/NAnt/bin/lib/net/1.0/nunit-console-runner.dll +share/NAnt/bin/lib/net/1.0/nunit-console.exe share/NAnt/bin/lib/net/1.0/nunit.core.dll share/NAnt/bin/lib/net/1.0/nunit.framework.dll share/NAnt/bin/lib/net/1.0/nunit.util.dll -share/NAnt/bin/lib/net/1.1/ -share/NAnt/bin/lib/net/1.1/NDoc.Core.dll -share/NAnt/bin/lib/net/1.1/NDoc.Documenter.Msdn.dll -share/NAnt/bin/lib/net/1.1/NDoc.ExtendedUI.dll -share/NAnt/bin/lib/net/1.1/nunit.core.dll -share/NAnt/bin/lib/net/1.1/nunit.framework.dll -share/NAnt/bin/lib/net/1.1/nunit.util.dll -share/NAnt/bin/lib/net/2.0/ -share/NAnt/bin/lib/net/2.0/NDoc.Core.dll -share/NAnt/bin/lib/net/2.0/NDoc.Documenter.Msdn.dll -share/NAnt/bin/lib/net/2.0/NDoc.ExtendedUI.dll -share/NAnt/bin/lib/net/2.0/nunit.core.dll -share/NAnt/bin/lib/net/2.0/nunit.framework.dll -share/NAnt/bin/lib/net/2.0/nunit.util.dll share/NAnt/bin/log4net.dll share/NAnt/bin/scvs.exe +share/doc/NAnt/ +share/doc/NAnt/doc/ +share/doc/NAnt/doc/help/ +share/doc/NAnt/doc/help/elements/ +share/doc/NAnt/doc/help/elements/NAnt.Compression.Tasks.ExpandBaseTask.html +share/doc/NAnt/doc/help/elements/NAnt.Core.DataTypeBase.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Filters.ChainableReader.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Filters.Filter.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Target.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Task.html +share/doc/NAnt/doc/help/elements/NAnt.Core.TaskContainer.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Tasks.ExternalProgramBase.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Tasks.InElement.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Types.Argument.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Types.EnvironmentSet.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Types.EnvironmentVariable.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Types.FileSet.Exclude.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Types.FileSet.ExcludesFile.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Types.FileSet.Include.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Types.FileSet.IncludesFile.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Types.Formatter.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Types.Option.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Types.PathElement.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Types.Pattern.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Types.RawXml.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Types.Token.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Types.XmlNamespace.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Types.XsltExtensionObject.html +share/doc/NAnt/doc/help/elements/NAnt.Core.Types.XsltParameter.html +share/doc/NAnt/doc/help/elements/NAnt.DotNet.Tasks.CompilerBase.html +share/doc/NAnt/doc/help/elements/NAnt.DotNet.Types.AssemblyAttribute.html +share/doc/NAnt/doc/help/elements/NAnt.DotNet.Types.CompilerWarning.html +share/doc/NAnt/doc/help/elements/NAnt.DotNet.Types.DataTypeCollectionBase.html +share/doc/NAnt/doc/help/elements/NAnt.DotNet.Types.EmbeddedResourceCollection.html +share/doc/NAnt/doc/help/elements/NAnt.DotNet.Types.LibDirectorySet.html +share/doc/NAnt/doc/help/elements/NAnt.DotNet.Types.Module.html +share/doc/NAnt/doc/help/elements/NAnt.DotNet.Types.NamespaceImport.html +share/doc/NAnt/doc/help/elements/NAnt.DotNet.Types.Package.html +share/doc/NAnt/doc/help/elements/NAnt.NUnit.Types.FormatterElement.html +share/doc/NAnt/doc/help/elements/NAnt.NUnit1.Types.NUnitTest.html +share/doc/NAnt/doc/help/elements/NAnt.NUnit2.Types.Category.html +share/doc/NAnt/doc/help/elements/NAnt.NUnit2.Types.NUnit2Test.html +share/doc/NAnt/doc/help/elements/NAnt.SourceControl.Tasks.AbstractCvsTask.html +share/doc/NAnt/doc/help/elements/NAnt.SourceControl.Tasks.AbstractSourceControlTask.html +share/doc/NAnt/doc/help/elements/NAnt.VSNet.Types.WebMap.html +share/doc/NAnt/doc/help/elements/NAnt.VisualCpp.Types.Library.html +share/doc/NAnt/doc/help/elements/NAnt.VisualCpp.Types.Symbol.html +share/doc/NAnt/doc/help/enums/ +share/doc/NAnt/doc/help/enums/NAnt.Compression.Types.DuplicateHandling.html +share/doc/NAnt/doc/help/enums/NAnt.Compression.Types.TarCompressionMethod.html +share/doc/NAnt/doc/help/enums/NAnt.Core.FrameworkTypes.html +share/doc/NAnt/doc/help/enums/NAnt.Core.Level.html +share/doc/NAnt/doc/help/enums/NAnt.Core.Tasks.AvailableTask.ResourceType.html +share/doc/NAnt/doc/help/enums/NAnt.Core.Tasks.LoopTask.LoopItem.html +share/doc/NAnt/doc/help/enums/NAnt.Core.Tasks.LoopTask.LoopTrim.html +share/doc/NAnt/doc/help/enums/NAnt.Core.Types.ManagedExecution.html +share/doc/NAnt/doc/help/enums/NAnt.DotNet.Tasks.AssemblyInfoTask.CodeLanguage.html +share/doc/NAnt/doc/help/enums/NAnt.DotNet.Tasks.RegsvcsTask.ActionType.html +share/doc/NAnt/doc/help/enums/NAnt.DotNet.Types.DebugOutput.html +share/doc/NAnt/doc/help/enums/NAnt.DotNet.Types.DelaySign.html +share/doc/NAnt/doc/help/enums/NAnt.MSNet.Tasks.ServiceControllerTask.ActionType.html +share/doc/NAnt/doc/help/enums/NAnt.NUnit.Types.FormatterType.html +share/doc/NAnt/doc/help/enums/NAnt.VisualCpp.Tasks.ClTask.PrecompiledHeaderMode.html +share/doc/NAnt/doc/help/enums/NAnt.VisualCpp.Types.CharacterSet.html +share/doc/NAnt/doc/help/filters/ +share/doc/NAnt/doc/help/filters/expandproperties.html +share/doc/NAnt/doc/help/filters/index.html +share/doc/NAnt/doc/help/filters/replacestring.html +share/doc/NAnt/doc/help/filters/replacetokens.html +share/doc/NAnt/doc/help/filters/tabstospaces.html +share/doc/NAnt/doc/help/functions/ +share/doc/NAnt/doc/help/functions/assembly.get-full-name(System.Reflection.Assembly).html +share/doc/NAnt/doc/help/functions/assembly.get-location(System.Reflection.Assembly).html +share/doc/NAnt/doc/help/functions/assembly.get-name(System.Reflection.Assembly).html +share/doc/NAnt/doc/help/functions/assembly.load(System.String).html +share/doc/NAnt/doc/help/functions/assembly.load-from-file(System.String).html +share/doc/NAnt/doc/help/functions/assemblyname.get-assembly-name(System.String).html +share/doc/NAnt/doc/help/functions/assemblyname.get-codebase(System.Reflection.AssemblyName).html +share/doc/NAnt/doc/help/functions/assemblyname.get-escaped-codebase(System.Reflection.AssemblyName).html +share/doc/NAnt/doc/help/functions/assemblyname.get-full-name(System.Reflection.AssemblyName).html +share/doc/NAnt/doc/help/functions/assemblyname.get-name(System.Reflection.AssemblyName).html +share/doc/NAnt/doc/help/functions/assemblyname.get-version(System.Reflection.AssemblyName).html +share/doc/NAnt/doc/help/functions/bool.parse(System.String).html +share/doc/NAnt/doc/help/functions/bool.to-string(System.Boolean).html +share/doc/NAnt/doc/help/functions/convert.to-boolean(System.Boolean).html +share/doc/NAnt/doc/help/functions/convert.to-datetime(System.DateTime).html +share/doc/NAnt/doc/help/functions/convert.to-double(System.Double).html +share/doc/NAnt/doc/help/functions/convert.to-int(System.Int32).html +share/doc/NAnt/doc/help/functions/convert.to-string(System.String).html +share/doc/NAnt/doc/help/functions/cygpath.get-dos-path(System.String).html +share/doc/NAnt/doc/help/functions/cygpath.get-unix-path(System.String).html +share/doc/NAnt/doc/help/functions/cygpath.get-windows-path(System.String).html +share/doc/NAnt/doc/help/functions/datetime.get-day(System.DateTime).html +share/doc/NAnt/doc/help/functions/datetime.get-day-of-week(System.DateTime).html +share/doc/NAnt/doc/help/functions/datetime.get-day-of-year(System.DateTime).html +share/doc/NAnt/doc/help/functions/datetime.get-days-in-month(System.Int32,System.Int32).html +share/doc/NAnt/doc/help/functions/datetime.get-hour(System.DateTime).html +share/doc/NAnt/doc/help/functions/datetime.get-millisecond(System.DateTime).html +share/doc/NAnt/doc/help/functions/datetime.get-minute(System.DateTime).html +share/doc/NAnt/doc/help/functions/datetime.get-month(System.DateTime).html +share/doc/NAnt/doc/help/functions/datetime.get-second(System.DateTime).html +share/doc/NAnt/doc/help/functions/datetime.get-ticks(System.DateTime).html +share/doc/NAnt/doc/help/functions/datetime.get-year(System.DateTime).html +share/doc/NAnt/doc/help/functions/datetime.is-leap-year(System.Int32).html +share/doc/NAnt/doc/help/functions/datetime.now().html +share/doc/NAnt/doc/help/functions/datetime.parse(System.String).html +share/doc/NAnt/doc/help/functions/datetime.to-string(System.DateTime).html +share/doc/NAnt/doc/help/functions/directory.exists(System.String).html +share/doc/NAnt/doc/help/functions/directory.get-creation-time(System.String).html +share/doc/NAnt/doc/help/functions/directory.get-current-directory().html +share/doc/NAnt/doc/help/functions/directory.get-directory-root(System.String).html +share/doc/NAnt/doc/help/functions/directory.get-last-access-time(System.String).html +share/doc/NAnt/doc/help/functions/directory.get-last-write-time(System.String).html +share/doc/NAnt/doc/help/functions/directory.get-parent-directory(System.String).html +share/doc/NAnt/doc/help/functions/dns.get-host-name().html +share/doc/NAnt/doc/help/functions/double.parse(System.String).html +share/doc/NAnt/doc/help/functions/double.to-string(System.Double).html +share/doc/NAnt/doc/help/functions/environment.get-folder-path(System.Environment.SpecialFolder).html +share/doc/NAnt/doc/help/functions/environment.get-machine-name().html +share/doc/NAnt/doc/help/functions/environment.get-operating-system().html +share/doc/NAnt/doc/help/functions/environment.get-user-name().html +share/doc/NAnt/doc/help/functions/environment.get-variable(System.String).html +share/doc/NAnt/doc/help/functions/environment.get-version().html +share/doc/NAnt/doc/help/functions/environment.newline().html +share/doc/NAnt/doc/help/functions/environment.variable-exists(System.String).html +share/doc/NAnt/doc/help/functions/file.exists(System.String).html +share/doc/NAnt/doc/help/functions/file.get-creation-time(System.String).html +share/doc/NAnt/doc/help/functions/file.get-last-access-time(System.String).html +share/doc/NAnt/doc/help/functions/file.get-last-write-time(System.String).html +share/doc/NAnt/doc/help/functions/file.get-length(System.String).html +share/doc/NAnt/doc/help/functions/file.is-assembly(System.String).html +share/doc/NAnt/doc/help/functions/file.up-to-date(System.String,System.String).html +share/doc/NAnt/doc/help/functions/fileversioninfo.get-company-name(System.Diagnostics.FileVersionInfo).html +share/doc/NAnt/doc/help/functions/fileversioninfo.get-file-version(System.Diagnostics.FileVersionInfo).html +share/doc/NAnt/doc/help/functions/fileversioninfo.get-product-name(System.Diagnostics.FileVersionInfo).html +share/doc/NAnt/doc/help/functions/fileversioninfo.get-product-version(System.Diagnostics.FileVersionInfo).html +share/doc/NAnt/doc/help/functions/fileversioninfo.get-version-info(System.String).html +share/doc/NAnt/doc/help/functions/framework.exists(System.String).html +share/doc/NAnt/doc/help/functions/framework.get-assembly-directory(System.String).html +share/doc/NAnt/doc/help/functions/framework.get-clr-version().html +share/doc/NAnt/doc/help/functions/framework.get-clr-version(System.String).html +share/doc/NAnt/doc/help/functions/framework.get-description().html +share/doc/NAnt/doc/help/functions/framework.get-description(System.String).html +share/doc/NAnt/doc/help/functions/framework.get-family(System.String).html +share/doc/NAnt/doc/help/functions/framework.get-framework-directory(System.String).html +share/doc/NAnt/doc/help/functions/framework.get-frameworks(NAnt.Core.FrameworkTypes).html +share/doc/NAnt/doc/help/functions/framework.get-runtime-engine(System.String).html +share/doc/NAnt/doc/help/functions/framework.get-runtime-framework().html +share/doc/NAnt/doc/help/functions/framework.get-sdk-directory(System.String).html +share/doc/NAnt/doc/help/functions/framework.get-target-framework().html +share/doc/NAnt/doc/help/functions/framework.get-tool-path(System.String).html +share/doc/NAnt/doc/help/functions/framework.get-version().html +share/doc/NAnt/doc/help/functions/framework.get-version(System.String).html +share/doc/NAnt/doc/help/functions/framework.sdk-exists(System.String).html +share/doc/NAnt/doc/help/functions/index.html +share/doc/NAnt/doc/help/functions/int.parse(System.String).html +share/doc/NAnt/doc/help/functions/int.to-string(System.Int32).html +share/doc/NAnt/doc/help/functions/long.parse(System.String).html +share/doc/NAnt/doc/help/functions/long.to-string(System.Int64).html +share/doc/NAnt/doc/help/functions/math.abs(System.Double).html +share/doc/NAnt/doc/help/functions/math.ceiling(System.Double).html +share/doc/NAnt/doc/help/functions/math.floor(System.Double).html +share/doc/NAnt/doc/help/functions/math.round(System.Double).html +share/doc/NAnt/doc/help/functions/nant.get-assembly().html +share/doc/NAnt/doc/help/functions/nant.get-base-directory().html +share/doc/NAnt/doc/help/functions/operating-system.get-platform(System.OperatingSystem).html +share/doc/NAnt/doc/help/functions/operating-system.get-version(System.OperatingSystem).html +share/doc/NAnt/doc/help/functions/operating-system.to-string(System.OperatingSystem).html +share/doc/NAnt/doc/help/functions/path.change-extension(System.String,System.String).html +share/doc/NAnt/doc/help/functions/path.combine(System.String,System.String).html +share/doc/NAnt/doc/help/functions/path.get-directory-name(System.String).html +share/doc/NAnt/doc/help/functions/path.get-extension(System.String).html +share/doc/NAnt/doc/help/functions/path.get-file-name(System.String).html +share/doc/NAnt/doc/help/functions/path.get-file-name-without-extension(System.String).html +share/doc/NAnt/doc/help/functions/path.get-full-path(System.String).html +share/doc/NAnt/doc/help/functions/path.get-path-root(System.String).html +share/doc/NAnt/doc/help/functions/path.get-temp-file-name().html +share/doc/NAnt/doc/help/functions/path.get-temp-path().html +share/doc/NAnt/doc/help/functions/path.has-extension(System.String).html +share/doc/NAnt/doc/help/functions/path.is-path-rooted(System.String).html +share/doc/NAnt/doc/help/functions/pkg-config.exists(System.String).html +share/doc/NAnt/doc/help/functions/pkg-config.get-compile-flags(System.String).html +share/doc/NAnt/doc/help/functions/pkg-config.get-link-flags(System.String).html +share/doc/NAnt/doc/help/functions/pkg-config.get-mod-version(System.String).html +share/doc/NAnt/doc/help/functions/pkg-config.get-variable(System.String,System.String).html +share/doc/NAnt/doc/help/functions/pkg-config.is-atleast-version(System.String,System.String).html +share/doc/NAnt/doc/help/functions/pkg-config.is-between-version(System.String,System.String,System.String).html +share/doc/NAnt/doc/help/functions/pkg-config.is-exact-version(System.String,System.String).html +share/doc/NAnt/doc/help/functions/pkg-config.is-max-version(System.String,System.String).html +share/doc/NAnt/doc/help/functions/platform.get-name().html +share/doc/NAnt/doc/help/functions/platform.is-unix().html +share/doc/NAnt/doc/help/functions/platform.is-win32().html +share/doc/NAnt/doc/help/functions/platform.is-windows().html +share/doc/NAnt/doc/help/functions/project.get-base-directory().html +share/doc/NAnt/doc/help/functions/project.get-buildfile-path().html +share/doc/NAnt/doc/help/functions/project.get-buildfile-uri().html +share/doc/NAnt/doc/help/functions/project.get-default-target().html +share/doc/NAnt/doc/help/functions/project.get-name().html +share/doc/NAnt/doc/help/functions/property.exists(System.String).html +share/doc/NAnt/doc/help/functions/property.get-value(System.String).html +share/doc/NAnt/doc/help/functions/property.is-dynamic(System.String).html +share/doc/NAnt/doc/help/functions/property.is-readonly(System.String).html +share/doc/NAnt/doc/help/functions/string.contains(System.String,System.String).html +share/doc/NAnt/doc/help/functions/string.ends-with(System.String,System.String).html +share/doc/NAnt/doc/help/functions/string.get-length(System.String).html +share/doc/NAnt/doc/help/functions/string.index-of(System.String,System.String).html +share/doc/NAnt/doc/help/functions/string.last-index-of(System.String,System.String).html +share/doc/NAnt/doc/help/functions/string.pad-left(System.String,System.Int32,System.String).html +share/doc/NAnt/doc/help/functions/string.pad-right(System.String,System.Int32,System.String).html +share/doc/NAnt/doc/help/functions/string.replace(System.String,System.String,System.String).html +share/doc/NAnt/doc/help/functions/string.starts-with(System.String,System.String).html +share/doc/NAnt/doc/help/functions/string.substring(System.String,System.Int32,System.Int32).html +share/doc/NAnt/doc/help/functions/string.to-lower(System.String).html +share/doc/NAnt/doc/help/functions/string.to-upper(System.String).html +share/doc/NAnt/doc/help/functions/string.trim(System.String).html +share/doc/NAnt/doc/help/functions/string.trim-end(System.String).html +share/doc/NAnt/doc/help/functions/string.trim-start(System.String).html +share/doc/NAnt/doc/help/functions/target.exists(System.String).html +share/doc/NAnt/doc/help/functions/target.get-current-target().html +share/doc/NAnt/doc/help/functions/target.has-executed(System.String).html +share/doc/NAnt/doc/help/functions/task.exists(System.String).html +share/doc/NAnt/doc/help/functions/task.get-assembly(System.String).html +share/doc/NAnt/doc/help/functions/timespan.from-days(System.Double).html +share/doc/NAnt/doc/help/functions/timespan.from-hours(System.Double).html +share/doc/NAnt/doc/help/functions/timespan.from-milliseconds(System.Double).html +share/doc/NAnt/doc/help/functions/timespan.from-minutes(System.Double).html +share/doc/NAnt/doc/help/functions/timespan.from-seconds(System.Double).html +share/doc/NAnt/doc/help/functions/timespan.from-ticks(System.Int64).html +share/doc/NAnt/doc/help/functions/timespan.get-days(System.TimeSpan).html +share/doc/NAnt/doc/help/functions/timespan.get-hours(System.TimeSpan).html +share/doc/NAnt/doc/help/functions/timespan.get-milliseconds(System.TimeSpan).html +share/doc/NAnt/doc/help/functions/timespan.get-minutes(System.TimeSpan).html +share/doc/NAnt/doc/help/functions/timespan.get-seconds(System.TimeSpan).html +share/doc/NAnt/doc/help/functions/timespan.get-ticks(System.TimeSpan).html +share/doc/NAnt/doc/help/functions/timespan.get-total-days(System.TimeSpan).html +share/doc/NAnt/doc/help/functions/timespan.get-total-hours(System.TimeSpan).html +share/doc/NAnt/doc/help/functions/timespan.get-total-milliseconds(System.TimeSpan).html +share/doc/NAnt/doc/help/functions/timespan.get-total-minutes(System.TimeSpan).html +share/doc/NAnt/doc/help/functions/timespan.get-total-seconds(System.TimeSpan).html +share/doc/NAnt/doc/help/functions/timespan.parse(System.String).html +share/doc/NAnt/doc/help/functions/timespan.to-string(System.TimeSpan).html +share/doc/NAnt/doc/help/functions/version.get-build(System.Version).html +share/doc/NAnt/doc/help/functions/version.get-major(System.Version).html +share/doc/NAnt/doc/help/functions/version.get-minor(System.Version).html +share/doc/NAnt/doc/help/functions/version.get-revision(System.Version).html +share/doc/NAnt/doc/help/functions/version.parse(System.String).html +share/doc/NAnt/doc/help/functions/version.to-string(System.Version).html +share/doc/NAnt/doc/help/fundamentals/ +share/doc/NAnt/doc/help/fundamentals/buildfiles.html +share/doc/NAnt/doc/help/fundamentals/expressions.html +share/doc/NAnt/doc/help/fundamentals/functions.html +share/doc/NAnt/doc/help/fundamentals/index.html +share/doc/NAnt/doc/help/fundamentals/listeners.html +share/doc/NAnt/doc/help/fundamentals/projects.html +share/doc/NAnt/doc/help/fundamentals/properties.html +share/doc/NAnt/doc/help/fundamentals/running-nant.html +share/doc/NAnt/doc/help/fundamentals/targets.html +share/doc/NAnt/doc/help/fundamentals/tasks.html +share/doc/NAnt/doc/help/images/ +share/doc/NAnt/doc/help/images/arrow.gif +share/doc/NAnt/doc/help/images/bullet.gif +share/doc/NAnt/doc/help/images/logo.gif +share/doc/NAnt/doc/help/index.html +share/doc/NAnt/doc/help/introduction/ +share/doc/NAnt/doc/help/introduction/fog0000000006.html +share/doc/NAnt/doc/help/introduction/fog0000000041.html +share/doc/NAnt/doc/help/introduction/fog0000000042.html +share/doc/NAnt/doc/help/introduction/fog0000000079.html +share/doc/NAnt/doc/help/introduction/fog0000000081.html +share/doc/NAnt/doc/help/introduction/getting-started.gif +share/doc/NAnt/doc/help/introduction/index.html +share/doc/NAnt/doc/help/introduction/installation.html +share/doc/NAnt/doc/help/style.css +share/doc/NAnt/doc/help/tasks/ +share/doc/NAnt/doc/help/tasks/al.html +share/doc/NAnt/doc/help/tasks/asminfo.html +share/doc/NAnt/doc/help/tasks/attrib.html +share/doc/NAnt/doc/help/tasks/available.html +share/doc/NAnt/doc/help/tasks/aximp.html +share/doc/NAnt/doc/help/tasks/call.html +share/doc/NAnt/doc/help/tasks/cl.html +share/doc/NAnt/doc/help/tasks/copy.html +share/doc/NAnt/doc/help/tasks/csc.html +share/doc/NAnt/doc/help/tasks/cvs-changelog.html +share/doc/NAnt/doc/help/tasks/cvs-checkout.html +share/doc/NAnt/doc/help/tasks/cvs-export.html +share/doc/NAnt/doc/help/tasks/cvs-pass.html +share/doc/NAnt/doc/help/tasks/cvs-rtag.html +share/doc/NAnt/doc/help/tasks/cvs-tag.html +share/doc/NAnt/doc/help/tasks/cvs-update.html +share/doc/NAnt/doc/help/tasks/cvs.html +share/doc/NAnt/doc/help/tasks/delay-sign.html +share/doc/NAnt/doc/help/tasks/delete.html +share/doc/NAnt/doc/help/tasks/description.html +share/doc/NAnt/doc/help/tasks/echo.html +share/doc/NAnt/doc/help/tasks/exec.html +share/doc/NAnt/doc/help/tasks/fail.html +share/doc/NAnt/doc/help/tasks/foreach.html +share/doc/NAnt/doc/help/tasks/get.html +share/doc/NAnt/doc/help/tasks/gunzip.html +share/doc/NAnt/doc/help/tasks/if.html +share/doc/NAnt/doc/help/tasks/ifnot.html +share/doc/NAnt/doc/help/tasks/ilasm.html +share/doc/NAnt/doc/help/tasks/ildasm.html +share/doc/NAnt/doc/help/tasks/include.html +share/doc/NAnt/doc/help/tasks/index.html +share/doc/NAnt/doc/help/tasks/jsc.html +share/doc/NAnt/doc/help/tasks/lib.html +share/doc/NAnt/doc/help/tasks/license.html +share/doc/NAnt/doc/help/tasks/link.html +share/doc/NAnt/doc/help/tasks/loadfile.html +share/doc/NAnt/doc/help/tasks/loadtasks.html +share/doc/NAnt/doc/help/tasks/mail.html +share/doc/NAnt/doc/help/tasks/mc.html +share/doc/NAnt/doc/help/tasks/midl.html +share/doc/NAnt/doc/help/tasks/mkdir.html +share/doc/NAnt/doc/help/tasks/move.html +share/doc/NAnt/doc/help/tasks/nant.html +share/doc/NAnt/doc/help/tasks/nantschema.html +share/doc/NAnt/doc/help/tasks/ndoc.html +share/doc/NAnt/doc/help/tasks/nunit.html +share/doc/NAnt/doc/help/tasks/nunit2.html +share/doc/NAnt/doc/help/tasks/property.html +share/doc/NAnt/doc/help/tasks/rc.html +share/doc/NAnt/doc/help/tasks/readregistry.html +share/doc/NAnt/doc/help/tasks/regasm.html +share/doc/NAnt/doc/help/tasks/regex.html +share/doc/NAnt/doc/help/tasks/regsvcs.html +share/doc/NAnt/doc/help/tasks/resgen.html +share/doc/NAnt/doc/help/tasks/script.html +share/doc/NAnt/doc/help/tasks/servicecontroller.html +share/doc/NAnt/doc/help/tasks/setenv.html +share/doc/NAnt/doc/help/tasks/sleep.html +share/doc/NAnt/doc/help/tasks/solution.html +share/doc/NAnt/doc/help/tasks/style.html +share/doc/NAnt/doc/help/tasks/sysinfo.html +share/doc/NAnt/doc/help/tasks/tar.html +share/doc/NAnt/doc/help/tasks/tlbexp.html +share/doc/NAnt/doc/help/tasks/tlbimp.html +share/doc/NAnt/doc/help/tasks/touch.html +share/doc/NAnt/doc/help/tasks/tstamp.html +share/doc/NAnt/doc/help/tasks/untar.html +share/doc/NAnt/doc/help/tasks/unzip.html +share/doc/NAnt/doc/help/tasks/uptodate.html +share/doc/NAnt/doc/help/tasks/vbc.html +share/doc/NAnt/doc/help/tasks/vjc.html +share/doc/NAnt/doc/help/tasks/xmlpeek.html +share/doc/NAnt/doc/help/tasks/xmlpoke.html +share/doc/NAnt/doc/help/tasks/zip.html +share/doc/NAnt/doc/help/types/ +share/doc/NAnt/doc/help/types/assemblyfileset.html +share/doc/NAnt/doc/help/types/categories.html +share/doc/NAnt/doc/help/types/credential.html +share/doc/NAnt/doc/help/types/cvsfileset.html +share/doc/NAnt/doc/help/types/dirset.html +share/doc/NAnt/doc/help/types/fileset.html +share/doc/NAnt/doc/help/types/filterchain.html +share/doc/NAnt/doc/help/types/index.html +share/doc/NAnt/doc/help/types/moduleset.html +share/doc/NAnt/doc/help/types/namespaceimports.html +share/doc/NAnt/doc/help/types/path.html +share/doc/NAnt/doc/help/types/patternset.html +share/doc/NAnt/doc/help/types/proxy.html +share/doc/NAnt/doc/help/types/resourcefileset.html +share/doc/NAnt/doc/help/types/tarfileset.html +share/doc/NAnt/doc/help/types/warnaserror.html +share/doc/NAnt/doc/help/types/zipfileset.html +share/doc/NAnt/doc/license.html +share/doc/NAnt/doc/releasenotes.html