diff options
-rw-r--r-- | dev-dotnet/monotorrent/ChangeLog | 7 | ||||
-rw-r--r-- | dev-dotnet/monotorrent/monotorrent-0.72.ebuild | 49 |
2 files changed, 5 insertions, 51 deletions
diff --git a/dev-dotnet/monotorrent/ChangeLog b/dev-dotnet/monotorrent/ChangeLog index 25538a07480b..017fb58b1da6 100644 --- a/dev-dotnet/monotorrent/ChangeLog +++ b/dev-dotnet/monotorrent/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-dotnet/monotorrent -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/monotorrent/ChangeLog,v 1.9 2011/05/11 19:26:59 angelos Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/monotorrent/ChangeLog,v 1.10 2012/01/22 10:49:12 pacho Exp $ + + 22 Jan 2012; Pacho Ramos <pacho@gentoo.org> -monotorrent-0.72.ebuild: + Drop old. 11 May 2011; Christoph Mende <angelos@gentoo.org> monotorrent-0.80.ebuild: Stable on amd64 wrt bug #359651 diff --git a/dev-dotnet/monotorrent/monotorrent-0.72.ebuild b/dev-dotnet/monotorrent/monotorrent-0.72.ebuild deleted file mode 100644 index 138138e16207..000000000000 --- a/dev-dotnet/monotorrent/monotorrent-0.72.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/monotorrent/monotorrent-0.72.ebuild,v 1.5 2009/08/31 13:58:26 loki_val Exp $ - -EAPI=2 - -inherit mono multilib - -DESCRIPTION="Monotorrent is an open source C# bittorrent library" -HOMEPAGE="http://projects.qnetp.net/projects/show/monotorrent" -SRC_URI="http://projects.qnetp.net/attachments/download/13/${P}.tar.gz - mirror://gentoo/mono.snk.bz2" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" -RDEPEND=">=dev-lang/mono-2.0.1" -DEPEND="${RDEPEND} - >=dev-util/pkgconfig-0.23" - -# The hack we do to get the dll installed in the GAC makes the unit-tests -# defunct. -RESTRICT="test" - -src_prepare() { - sed -i \ - -e "/InternalsVisibleTo/d" \ - MonoTorrent/AssemblyInfo.cs* || die -} - -src_compile() { - emake -j1 ASSEMBLY_COMPILER_COMMAND="/usr/bin/gmcs -keyfile:${WORKDIR}/mono.snk" -} - -src_install() { - egacinstall $(find . -name "MonoTorrent.dll") - dodir /usr/$(get_libdir)/pkgconfig - ebegin "Installing .pc file" - sed \ - -e "s:@LIBDIR@:$(get_libdir):" \ - -e "s:@PACKAGENAME@:${PN}:" \ - -e "s:@DESCRIPTION@:${DESCRIPTION}:" \ - -e "s:@VERSION@:${PV}:" \ - -e 's;@LIBS@;-r:${libdir}/mono/monotorrent/MonoTorrent.dll;' \ - "${FILESDIR}"/${PN}.pc.in > "${D}"/usr/$(get_libdir)/pkgconfig/${PN}.pc - PKG_CONFIG_PATH="${D}/usr/$(get_libdir)/pkgconfig/" pkg-config --exists monotorrent || die ".pc file failed to validate." - eend $? -} |