Gentoo Archives: gentoo-commits

From: Heather Cynede <cynede@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/dotnet:master commit in: net-irc/smuxi/
Date: Mon, 30 Dec 2013 14:11:40
Message-Id: 1387976447.061e912e37eb19f1c2bc62feca5c46ce77029a1b.cynede@gentoo
1 commit: 061e912e37eb19f1c2bc62feca5c46ce77029a1b
2 Author: Heather <Heather <AT> live <DOT> ru>
3 AuthorDate: Wed Dec 25 13:00:47 2013 +0000
4 Commit: Heather Cynede <cynede <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 25 13:00:47 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=061e912e
7
8 smuxi 0.10
9
10 ---
11 net-irc/smuxi/smuxi-0.10.ebuild | 58 +++++++++++++++++++++++++++++++++++++++++
12 1 file changed, 58 insertions(+)
13
14 diff --git a/net-irc/smuxi/smuxi-0.10.ebuild b/net-irc/smuxi/smuxi-0.10.ebuild
15 new file mode 100644
16 index 0000000..47e7245
17 --- /dev/null
18 +++ b/net-irc/smuxi/smuxi-0.10.ebuild
19 @@ -0,0 +1,58 @@
20 +# Copyright 1999-2013 Gentoo Foundation
21 +# Distributed under the terms of the GNU General Public License v2
22 +# $Header: $
23 +
24 +EAPI="5"
25 +inherit eutils mono-env
26 +
27 +DESCRIPTION="A flexible, irssi-like and user-friendly IRC client for the Gnome Desktop"
28 +HOMEPAGE="http://www.smuxi.org/main/"
29 +SRC_URI="http://www.smuxi.org/jaws/data/files/${P}.tar.gz"
30 +
31 +SLOT="0"
32 +KEYWORDS="~amd64 ~x86"
33 +IUSE="dbus debug gtk libnotify spell"
34 +LICENSE="|| ( GPL-2 GPL-3 )"
35 +
36 +RDEPEND="
37 + >=dev-lang/mono-3.0
38 + >=dev-dotnet/smartirc4net-0.4.5.1
39 + >=dev-dotnet/nini-1.1.0-r2
40 + =dev-dotnet/log4net-1.2.10
41 + dbus? ( dev-dotnet/ndesk-dbus
42 + dev-dotnet/ndesk-dbus-glib )
43 + gtk? ( >=dev-dotnet/gtk-sharp-2.12 )
44 + libnotify? ( dev-dotnet/notify-sharp )
45 + spell? ( >=app-text/gtkspell-2.0.9:2 )
46 +"
47 +DEPEND="${RDEPEND}
48 + >=dev-util/intltool-0.25
49 + >=sys-devel/gettext-0.17
50 + virtual/pkgconfig
51 +"
52 +
53 +DOCS=( FEATURES TODO )
54 +
55 +src_configure() {
56 + # Our dev-dotnet/db4o is completely unmaintained
57 + # We don't have ubuntu stuff
58 + econf \
59 + --enable-engine-irc \
60 + --without-indicate \
61 + --with-vendor-package-version="Gentoo ${PV}" \
62 + --with-db4o=included \
63 + --with-messaging-menu=no \
64 + --with-indicate=no \
65 + --disable-engine-jabbr \
66 + $(use_enable debug) \
67 + $(use_enable gtk frontend-gnome) \
68 + $(use_with libnotify notify) \
69 + $(use_with spell gtkspell)
70 +}
71 +
72 +src_install() {
73 + default
74 + #runner scripts fix
75 + sed -i -e 's@mono --debug@mono --runtime=v4.0@g' "${ED}"/usr/bin/smuxi-frontend-gnome || die
76 + sed -i -e 's@mono --debug@mono --runtime=v4.0@g' "${ED}"/usr/bin/smuxi-server || die
77 +}