blob: 31b9537e20baf69eba326f4bef5a8dc63031c303 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KEYWORDS="~amd64"
RESTRICT="mirror"
SLOT="0"
USE_DOTNET="net46"
inherit msbuild gac
NAME="Relinq"
HOMEPAGE="https://github.com/re-motion/${NAME}"
EGIT_COMMIT="88b1055e0a737faff26c9d5e2789f520ac73ca86"
SRC_URI="${HOMEPAGE}/archive/${EGIT_COMMIT}.tar.gz -> ${NAME}-${PV}.tar.gz
https://github.com/mono/mono/raw/main/mcs/class/mono.snk"
S="${WORKDIR}/${NAME}-${EGIT_COMMIT}"
DESCRIPTION="Library to create full-featured LINQ providers."
LICENSE="Apache-2.0" # https://github.com/re-motion/Relinq/blob/develop/license/Apache-2.0.txt
IUSE="+${USE_DOTNET} +debug developer doc"
COMMON_DEPEND=">=dev-lang/mono-5.4.0.167 <dev-lang/mono-9999
"
RDEPEND="${COMMON_DEPEND}
"
DEPEND="${COMMON_DEPEND}
"
# https://github.com/re-motion/Relinq/blob/82fdca6a4bfd942bb4a71dd20ab9c5af0aea0541/How%20to%20build.txt
# We cannot provide the official remotion.snk keyfile, so you will need to create your own.
KEY2="${DISTDIR}/mono.snk"
METAFILE_FOR_BUILD="${S}/Core/Core.csproj"
DEPLOY_DIR="/usr/lib/mono/${EBUILD_FRAMEWORK}"
function output_filename ( ) {
local DIR=""
if use debug; then
DIR="Debug"
else
DIR="Release"
fi
echo "Core/bin/${DIR}/Remotion.Linq.dll"
}
src_prepare() {
eapply "${FILESDIR}/Core.csproj.patch"
eapply_user
}
src_compile() {
emsbuild /p:TargetFrameworkVersion=v4.6 "/p:SignAssembly=true" "/p:PublicSign=true" "/p:AssemblyOriginatorKeyFile=${KEY2}" "${METAFILE_FOR_BUILD}"
sn -R "${S}/$(output_filename)" "${KEY2}" || die
}
src_install() {
insinto "${DEPLOY_DIR}"
doins "$(output_filename)"
}
pkg_postinst()
{
egacadd "${DEPLOY_DIR}/Remotion.Linq.dll"
}
pkg_prerm()
{
egacdel "Remotion.Linq, Version=2.1.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756"
}
|