From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-654133-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BACA7138247 for <garchives@archives.gentoo.org>; Mon, 30 Dec 2013 14:11:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 04908E0B64; Mon, 30 Dec 2013 14:11:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 82AB9E0B64 for <gentoo-commits@lists.gentoo.org>; Mon, 30 Dec 2013 14:11:39 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A95A833F618 for <gentoo-commits@lists.gentoo.org>; Mon, 30 Dec 2013 14:11:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 3C4B8E54DF for <gentoo-commits@lists.gentoo.org>; Mon, 30 Dec 2013 14:11:37 +0000 (UTC) From: "Heather Cynede" <cynede@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Heather Cynede" <cynede@gentoo.org> Message-ID: <1387976447.061e912e37eb19f1c2bc62feca5c46ce77029a1b.cynede@gentoo> Subject: [gentoo-commits] proj/dotnet:master commit in: net-irc/smuxi/ X-VCS-Repository: proj/dotnet X-VCS-Files: net-irc/smuxi/smuxi-0.10.ebuild X-VCS-Directories: net-irc/smuxi/ X-VCS-Committer: cynede X-VCS-Committer-Name: Heather Cynede X-VCS-Revision: 061e912e37eb19f1c2bc62feca5c46ce77029a1b X-VCS-Branch: master Date: Mon, 30 Dec 2013 14:11:37 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ea5cab15-a836-4df3-952f-1404567b91c5 X-Archives-Hash: e6fa018224aaa502eca73a0900ec410a commit: 061e912e37eb19f1c2bc62feca5c46ce77029a1b Author: Heather <Heather <AT> live <DOT> ru> AuthorDate: Wed Dec 25 13:00:47 2013 +0000 Commit: Heather Cynede <cynede <AT> gentoo <DOT> org> CommitDate: Wed Dec 25 13:00:47 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=061e912e smuxi 0.10 --- net-irc/smuxi/smuxi-0.10.ebuild | 58 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/net-irc/smuxi/smuxi-0.10.ebuild b/net-irc/smuxi/smuxi-0.10.ebuild new file mode 100644 index 0000000..47e7245 --- /dev/null +++ b/net-irc/smuxi/smuxi-0.10.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="5" +inherit eutils mono-env + +DESCRIPTION="A flexible, irssi-like and user-friendly IRC client for the Gnome Desktop" +HOMEPAGE="http://www.smuxi.org/main/" +SRC_URI="http://www.smuxi.org/jaws/data/files/${P}.tar.gz" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="dbus debug gtk libnotify spell" +LICENSE="|| ( GPL-2 GPL-3 )" + +RDEPEND=" + >=dev-lang/mono-3.0 + >=dev-dotnet/smartirc4net-0.4.5.1 + >=dev-dotnet/nini-1.1.0-r2 + =dev-dotnet/log4net-1.2.10 + dbus? ( dev-dotnet/ndesk-dbus + dev-dotnet/ndesk-dbus-glib ) + gtk? ( >=dev-dotnet/gtk-sharp-2.12 ) + libnotify? ( dev-dotnet/notify-sharp ) + spell? ( >=app-text/gtkspell-2.0.9:2 ) +" +DEPEND="${RDEPEND} + >=dev-util/intltool-0.25 + >=sys-devel/gettext-0.17 + virtual/pkgconfig +" + +DOCS=( FEATURES TODO ) + +src_configure() { + # Our dev-dotnet/db4o is completely unmaintained + # We don't have ubuntu stuff + econf \ + --enable-engine-irc \ + --without-indicate \ + --with-vendor-package-version="Gentoo ${PV}" \ + --with-db4o=included \ + --with-messaging-menu=no \ + --with-indicate=no \ + --disable-engine-jabbr \ + $(use_enable debug) \ + $(use_enable gtk frontend-gnome) \ + $(use_with libnotify notify) \ + $(use_with spell gtkspell) +} + +src_install() { + default + #runner scripts fix + sed -i -e 's@mono --debug@mono --runtime=v4.0@g' "${ED}"/usr/bin/smuxi-frontend-gnome || die + sed -i -e 's@mono --debug@mono --runtime=v4.0@g' "${ED}"/usr/bin/smuxi-server || die +}