diff options
author | Michael Tindal <urilith@gentoo.org> | 2005-04-03 07:35:40 +0000 |
---|---|---|
committer | Michael Tindal <urilith@gentoo.org> | 2005-04-03 07:35:40 +0000 |
commit | ac2a6e884a56b96e1641984f83b6f774012cad30 (patch) | |
tree | 34e57b5c61585f96621f7be721375577e1aa20e3 /dev-dotnet/ndoc | |
parent | Version bumped. Thanks to ash@tsi.lv. This closes bug #84326. (diff) | |
download | gentoo-2-ac2a6e884a56b96e1641984f83b6f774012cad30.tar.gz gentoo-2-ac2a6e884a56b96e1641984f83b6f774012cad30.tar.bz2 gentoo-2-ac2a6e884a56b96e1641984f83b6f774012cad30.zip |
Moving DLL files to /usr/share/ndoc, cleaning up broken ebuild, fixed doc installation.
(Portage version: 2.0.51.19)
Diffstat (limited to 'dev-dotnet/ndoc')
-rw-r--r-- | dev-dotnet/ndoc/ChangeLog | 8 | ||||
-rw-r--r-- | dev-dotnet/ndoc/Manifest | 3 | ||||
-rw-r--r-- | dev-dotnet/ndoc/files/digest-ndoc-1.3.1-r1 (renamed from dev-dotnet/ndoc/files/digest-ndoc-1.3.1) | 0 | ||||
-rw-r--r-- | dev-dotnet/ndoc/ndoc-1.3.1-r1.ebuild (renamed from dev-dotnet/ndoc/ndoc-1.3.1.ebuild) | 13 |
4 files changed, 16 insertions, 8 deletions
diff --git a/dev-dotnet/ndoc/ChangeLog b/dev-dotnet/ndoc/ChangeLog index d95a0c561351..c1c71050c55d 100644 --- a/dev-dotnet/ndoc/ChangeLog +++ b/dev-dotnet/ndoc/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-dotnet/ndoc # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/ndoc/ChangeLog,v 1.3 2005/04/02 19:05:35 urilith Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/ndoc/ChangeLog,v 1.4 2005/04/03 07:35:39 urilith Exp $ + +*ndoc-1.3.1-r1 (03 Apr 2005) + + 03 Apr 2005; <urilith@gentoo.org> -ndoc-1.3.1.ebuild, + +ndoc-1.3.1-r1.ebuild: + Moving dll files to /usr/share/ndoc, cleaning up doc installation. 02 Apr 2005; <urilith@gentoo.org> ndoc-1.3.1.ebuild: Adding docs I forgot. diff --git a/dev-dotnet/ndoc/Manifest b/dev-dotnet/ndoc/Manifest index b07586866bb0..b829c829a247 100644 --- a/dev-dotnet/ndoc/Manifest +++ b/dev-dotnet/ndoc/Manifest @@ -1,4 +1,5 @@ -MD5 2bc2bae75c6e9658f48f8ad62b1bfa57 ndoc-1.3.1.ebuild 1343 MD5 dddb00fc536ba5211cc765722ae7ff0c ChangeLog 492 +MD5 41681cf73ae679944d042274dbfa74b0 ndoc-1.3.1-r1.ebuild 1286 MD5 443435c45ff66780ef8a6d478be74f1c metadata.xml 256 +MD5 366ef05b58498d63fc6125c49e269c24 files/digest-ndoc-1.3.1-r1 67 MD5 366ef05b58498d63fc6125c49e269c24 files/digest-ndoc-1.3.1 67 diff --git a/dev-dotnet/ndoc/files/digest-ndoc-1.3.1 b/dev-dotnet/ndoc/files/digest-ndoc-1.3.1-r1 index b0adff51c54f..b0adff51c54f 100644 --- a/dev-dotnet/ndoc/files/digest-ndoc-1.3.1 +++ b/dev-dotnet/ndoc/files/digest-ndoc-1.3.1-r1 diff --git a/dev-dotnet/ndoc/ndoc-1.3.1.ebuild b/dev-dotnet/ndoc/ndoc-1.3.1-r1.ebuild index 10f8ca1fdac8..249f3e881501 100644 --- a/dev-dotnet/ndoc/ndoc-1.3.1.ebuild +++ b/dev-dotnet/ndoc/ndoc-1.3.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/ndoc/ndoc-1.3.1.ebuild,v 1.4 2005/04/02 19:15:35 urilith Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/ndoc/ndoc-1.3.1-r1.ebuild,v 1.1 2005/04/03 07:35:39 urilith Exp $ inherit mono @@ -24,15 +24,16 @@ src_compile() { nant -t:mono-1.0 || die } -GAC_FILES="NDoc.Core.dll NDoc.Documenter.JavaDoc.dll NDoc.Documenter.Latex.dll NDoc.Documenter.LinearHtml.dll NDoc.Documenter.Msdn.dll NDoc.Documenter.Msdn2.dll NDoc.Documenter.Xml.dll NDoc.ExtendedUI.dll NDoc.VisualStudio.dll" +DLL_FILES="NDoc.Core.dll NDoc.Documenter.JavaDoc.dll NDoc.Documenter.Latex.dll NDoc.Documenter.LinearHtml.dll NDoc.Documenter.Msdn.dll NDoc.Documenter.Msdn2.dll NDoc.Documenter.Xml.dll NDoc.ExtendedUI.dll NDoc.VisualStudio.dll" src_install() { cd ${S}/bin/mono/1.0 - # This installs all of the dll files under the specified gac package + # This installs all of the dll files with the exe file # directory. - for dll in $GAC_FILES; do - gacutil -i $dll -package ndoc -root ${D}/usr/lib || die "Failed to install DLL into the Global Assembly Cache." + insinto /usr/share/ndoc + for dll in $DLL_FILES; do + doins $dll || die "Failed to install DLL." done DEBUG_VAR="" @@ -49,5 +50,5 @@ src_install() { doins NDocConsole.exe dobin ndoc - use doc && dohtml -a gif,html,css,js -r ${S}/doc/sdk + use doc && dohtml -a gif,html,css,js -r ${S}/doc/sdk/ } |