blob: a265e3dfc4e9131b155944d157829ee7cae26285 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# 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.2 2009/05/06 00:04:07 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"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86 ~amd64"
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:${FILESDIR}/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 $?
}
|