diff options
author | Rainer Groesslinger <scandium@gentoo.org> | 2005-01-16 09:51:14 +0000 |
---|---|---|
committer | Rainer Groesslinger <scandium@gentoo.org> | 2005-01-16 09:51:14 +0000 |
commit | 196e8db973169c7637c4004d1fb5aec788b9c94d (patch) | |
tree | 796111113886661ef29b851a9042a28ff827c020 /dev-dotnet/ml-pnet | |
parent | Fixed bad ninja. (diff) | |
download | historical-196e8db973169c7637c4004d1fb5aec788b9c94d.tar.gz historical-196e8db973169c7637c4004d1fb5aec788b9c94d.tar.bz2 historical-196e8db973169c7637c4004d1fb5aec788b9c94d.zip |
new version; can now be installed in parallel with mono
Package-Manager: portage-2.0.51-r12
Diffstat (limited to 'dev-dotnet/ml-pnet')
-rw-r--r-- | dev-dotnet/ml-pnet/ChangeLog | 8 | ||||
-rw-r--r-- | dev-dotnet/ml-pnet/files/digest-ml-pnet-0.6.12 | 1 | ||||
-rw-r--r-- | dev-dotnet/ml-pnet/ml-pnet-0.6.12.ebuild | 27 |
3 files changed, 35 insertions, 1 deletions
diff --git a/dev-dotnet/ml-pnet/ChangeLog b/dev-dotnet/ml-pnet/ChangeLog index 6d156c9efa99..7e6c50d9daa2 100644 --- a/dev-dotnet/ml-pnet/ChangeLog +++ b/dev-dotnet/ml-pnet/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-dotnet/ml-pnet # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/ml-pnet/ChangeLog,v 1.18 2005/01/01 17:48:48 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/ml-pnet/ChangeLog,v 1.19 2005/01/16 09:51:14 scandium Exp $ + +*ml-pnet-0.6.12 (16 Jan 2005) + + 16 Jan 2005; Rainer Groesslinger <scandium@gentoo.org> + +ml-pnet-0.6.12.ebuild: + new version 26 Nov 2004; Rainer Groesslinger <scandium@gentoo.org> ml-pnet-0.6.10.ebuild: diff --git a/dev-dotnet/ml-pnet/files/digest-ml-pnet-0.6.12 b/dev-dotnet/ml-pnet/files/digest-ml-pnet-0.6.12 new file mode 100644 index 000000000000..1dc59cb97f44 --- /dev/null +++ b/dev-dotnet/ml-pnet/files/digest-ml-pnet-0.6.12 @@ -0,0 +1 @@ +MD5 ce26abba697ec4bd7e064ee9eabd3f49 ml-pnet-0.6.12.tar.gz 4368713 diff --git a/dev-dotnet/ml-pnet/ml-pnet-0.6.12.ebuild b/dev-dotnet/ml-pnet/ml-pnet-0.6.12.ebuild new file mode 100644 index 000000000000..f3223e8d145a --- /dev/null +++ b/dev-dotnet/ml-pnet/ml-pnet-0.6.12.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/ml-pnet/ml-pnet-0.6.12.ebuild,v 1.1 2005/01/16 09:51:14 scandium Exp $ + +DESCRIPTION="Mono C# libraries for Portable.NET" +HOMEPAGE="http://www.dotgnu.org/" +SRC_URI="mirror://gnu/dotgnu/pnet/${P}.tar.gz" + +LICENSE="|| ( GPL-2 X11 )" +SLOT="0" +KEYWORDS="~x86 ~ppc ~ppc64 ~sparc ~mips ~alpha ~arm ~hppa ~amd64 ~ia64" +IUSE="" + +DEPEND="=dev-dotnet/pnetlib-${PV}*" + +src_compile() { + local lib_profile="framework1.1" + einfo "Using profile: ${lib_profile}" + + econf --with-profile=${lib_profile} || die + emake || die +} + +src_install() { + einstall || die + dodoc AUTHORS ChangeLog INSTALL NEWS README +} |