diff options
author | Jurek Bartuszek <jurek@gentoo.org> | 2007-08-19 21:10:54 +0000 |
---|---|---|
committer | Jurek Bartuszek <jurek@gentoo.org> | 2007-08-19 21:10:54 +0000 |
commit | 913203598196026f12b638b20a671b5363c191d4 (patch) | |
tree | 578fd650a7a4a4f923480ea2973ec9367d93e369 /dev-dotnet/pnet | |
parent | Stable for HPPA (bug #189172). (diff) | |
download | gentoo-2-913203598196026f12b638b20a671b5363c191d4.tar.gz gentoo-2-913203598196026f12b638b20a671b5363c191d4.tar.bz2 gentoo-2-913203598196026f12b638b20a671b5363c191d4.zip |
dev-dotnet/pnet: version bump
(Portage version: 2.1.2.11)
Diffstat (limited to 'dev-dotnet/pnet')
-rw-r--r-- | dev-dotnet/pnet/ChangeLog | 7 | ||||
-rw-r--r-- | dev-dotnet/pnet/files/digest-pnet-0.8.0 | 3 | ||||
-rw-r--r-- | dev-dotnet/pnet/pnet-0.8.0.ebuild | 51 |
3 files changed, 60 insertions, 1 deletions
diff --git a/dev-dotnet/pnet/ChangeLog b/dev-dotnet/pnet/ChangeLog index ccc8bfc8c1b5..ce3c9f948d24 100644 --- a/dev-dotnet/pnet/ChangeLog +++ b/dev-dotnet/pnet/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-dotnet/pnet # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/pnet/ChangeLog,v 1.42 2007/08/19 17:02:26 jurek Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/pnet/ChangeLog,v 1.43 2007/08/19 21:10:54 jurek Exp $ + +*pnet-0.8.0 (19 Aug 2007) + + 19 Aug 2007; Jurek Bartuszek <jurek@gentoo.org> +pnet-0.8.0.ebuild: + Version bump *pnet-0.7.4-r1 (19 Aug 2007) *pnet-0.6.12-r1 (19 Aug 2007) diff --git a/dev-dotnet/pnet/files/digest-pnet-0.8.0 b/dev-dotnet/pnet/files/digest-pnet-0.8.0 new file mode 100644 index 000000000000..efcd9932f224 --- /dev/null +++ b/dev-dotnet/pnet/files/digest-pnet-0.8.0 @@ -0,0 +1,3 @@ +MD5 84cb3612d7175bd9e476c88e66fe19f9 pnet-0.8.0.tar.gz 4510420 +RMD160 232f96fb92be2cab4109ab03845bafa84c3d0259 pnet-0.8.0.tar.gz 4510420 +SHA256 f1340ae3567a5f05729d9d201bd719268ceca07bde4f62c58a92abfda64551bb pnet-0.8.0.tar.gz 4510420 diff --git a/dev-dotnet/pnet/pnet-0.8.0.ebuild b/dev-dotnet/pnet/pnet-0.8.0.ebuild new file mode 100644 index 000000000000..7dcb2083c474 --- /dev/null +++ b/dev-dotnet/pnet/pnet-0.8.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/pnet/pnet-0.8.0.ebuild,v 1.1 2007/08/19 21:10:54 jurek Exp $ + +inherit autotools + +DESCRIPTION="Portable.NET runtime, compiler, tools" +HOMEPAGE="http://www.dotgnu.org/" +SRC_URI="http://www.southern-storm.com.au/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86" +IUSE="" + +DEPEND=">=dev-util/treecc-0.3.0" +RDEPEND="${DEPEND}" + +MAKEOPTS="${MAKEOPTS} -j1" + +src_unpack() { + unpack ${A} + cd ${S} + + # Fix symlink for renamed executables ; Bug #39369 + # Renamed to avoid conflicting with dev-lang/mono + # This should be removed again once we have 'dotnet-config' + sed -i "s:ilasm.1.gz:ilasm.pnet.1.gz:" ilasm/Makefile.am + sed -i "s:al.1.gz:al.pnet.1.gz:" ilasm/Makefile.am + + eautoreconf || die "eautoreconf failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + # move fixes for the mono conflict + mv ${D}/usr/bin/al ${D}/usr/bin/al.pnet + mv ${D}/usr/bin/ilasm ${D}/usr/bin/ilasm.pnet + mv ${D}/usr/bin/resgen ${D}/usr/bin/resgen.pnet + mv ${D}/usr/share/man/man1/ilasm.1 ${D}/usr/share/man/man1/ilasm.pnet.1 + mv ${D}/usr/share/man/man1/resgen.1 ${D}/usr/share/man/man1/resgen.pnet.1 + + # move fixes to prevent boehm-gc collisions + # bug 187379 + mv ${D}/usr/share/gc ${D}/usr/share/libgc-pnet + + dodoc AUTHORS ChangeLog HACKING NEWS README + dodoc doc/gtk-sharp.HOWTO + dohtml doc/*.html +} |