aboutsummaryrefslogtreecommitdiff
blob: 09d2b9c3c5937391bd2488bbbca38105fab4e90c (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
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=6
inherit mono-env dotnet autotools git-r3

HOMEPAGE="https://www.smuxi.org/page/Download"
EGIT_REPO_URI="https://github.com/meebey/SmartIrc4net"
# https://github.com/meebey/SmartIrc4net/releases/tag/1.0
EGIT_COMMIT="921371612b7498e48857aa45d7e37ad4819dbadf"

SRC_URI="https://github.com/meebey/SmartIrc4net/archive/${PV}.tar.gz -> ${P}.tar.gz"
DESCRIPTION="Multi-threaded and thread-safe IRC library written in C#"

SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
LICENSE="|| ( LGPL-2.1 LGPL-3 )"

RDEPEND=">=dev-lang/mono-4.0.2.5
        sys-fs/fuse"
DEPEND="${RDEPEND}
    virtual/pkgconfig"

src_prepare() {
    default

    eapply_user
    # Cannot compile NUnit (2017-07-31)
    epatch "${FILESDIR}/${PV}-no-tests.patch"
    AT_M4DIR="${S}" eautoreconf
}

src_compile() {
    exbuild SmartIrc4net.sln
}