summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Alfredsen <loki_val@gentoo.org>2009-01-31 22:19:26 +0000
committerPeter Alfredsen <loki_val@gentoo.org>2009-01-31 22:19:26 +0000
commit41609f9d29f23dd07a2301e279b77e6284709be5 (patch)
tree5df12969102e164983c5cfed43440c6a514cf8d5 /net-irc
parentAlso use rpc.nfsd to try to shutdown nfsd #228127 by Maurice Volaski. (diff)
downloadhistorical-41609f9d29f23dd07a2301e279b77e6284709be5.tar.gz
historical-41609f9d29f23dd07a2301e279b77e6284709be5.tar.bz2
historical-41609f9d29f23dd07a2301e279b77e6284709be5.zip
Initial commit. Ebuild by me.
Package-Manager: portage-2.2_rc23/cvs/Linux x86_64
Diffstat (limited to 'net-irc')
-rw-r--r--net-irc/smuxi/ChangeLog10
-rw-r--r--net-irc/smuxi/Manifest5
-rw-r--r--net-irc/smuxi/files/smuxi-0.6.3-mono-2.2.patch20
-rw-r--r--net-irc/smuxi/metadata.xml5
-rw-r--r--net-irc/smuxi/smuxi-0.6.3.ebuild43
5 files changed, 83 insertions, 0 deletions
diff --git a/net-irc/smuxi/ChangeLog b/net-irc/smuxi/ChangeLog
new file mode 100644
index 000000000000..dd8ec44dcc44
--- /dev/null
+++ b/net-irc/smuxi/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for net-irc/smuxi
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/smuxi/ChangeLog,v 1.1 2009/01/31 22:19:26 loki_val Exp $
+
+*smuxi-0.6.3 (31 Jan 2009)
+
+ 31 Jan 2009; Peter Alfredsen <loki_val@gentoo.org>
+ +files/smuxi-0.6.3-mono-2.2.patch, +metadata.xml, +smuxi-0.6.3.ebuild:
+ Initial commit. Ebuild by me.
+
diff --git a/net-irc/smuxi/Manifest b/net-irc/smuxi/Manifest
new file mode 100644
index 000000000000..b18ec952827c
--- /dev/null
+++ b/net-irc/smuxi/Manifest
@@ -0,0 +1,5 @@
+AUX smuxi-0.6.3-mono-2.2.patch 982 RMD160 e33dc0139d4b94225ebb71bc85fd64652e7152f3 SHA1 863a24f3f27113d77cb657719123d45e8312e36b SHA256 86c8640c5fae959496504119aba1fcf7c7a28c20b6ce37e8da8a6974afd03c81
+DIST smuxi-0.6.3.tar.gz 906997 RMD160 1a14b8190629c99e76777f6f1cee408e8a6140df SHA1 cbdd87e5d6ceaff3520de789185aa9b24ba83eb0 SHA256 ae75dbd729f616eb360f97c5d47430e05662fa8d7c44940210f7c5c36b18b97b
+EBUILD smuxi-0.6.3.ebuild 1064 RMD160 62c4066fa6378e46f33dd628c5645730ef5d4662 SHA1 1248b84bca057c2b1fc13d1f32cdfe7eb4f220d2 SHA256 ea995f1aff2839fa4039c8eeab3e3f0b165b38a1bf57fd1f20f31c78119f7a62
+MISC ChangeLog 388 RMD160 c8ebd9a64dad9ef1ce58adc2d75291cbc1a051cb SHA1 bede0a5c4aabf77c9a941d8a6f7c820bbeeca184 SHA256 02fa50e388a21480770a9ebcdd75d49e1bc3107c66e3b9ac501bc5cc9cbdcee6
+MISC metadata.xml 160 RMD160 cc10b170ad63a746d8bdfbe5bf1bd9f7065922b8 SHA1 49eaf4246f7502850064d3806cce65d3a404ce1b SHA256 1bc3e313a948415fff0dfa63a5610943327146bfe16bfeca603379bf9706a687
diff --git a/net-irc/smuxi/files/smuxi-0.6.3-mono-2.2.patch b/net-irc/smuxi/files/smuxi-0.6.3-mono-2.2.patch
new file mode 100644
index 000000000000..ce831f8501be
--- /dev/null
+++ b/net-irc/smuxi/files/smuxi-0.6.3-mono-2.2.patch
@@ -0,0 +1,20 @@
+--- src/Frontend-GNOME/FindGroupChatDialog.cs 2008-12-26 16:42:42.000000000 -0700
++++ src/Frontend-GNOME/FindGroupChatDialog.cs 2009-01-12 16:55:35.000000000 -0700
+@@ -115,12 +115,14 @@
+ f_ListStore.Clear();
+ CancelFindThread();
+
++ EventHandler d = delegate {
++ GdkWindow.Cursor = new Gdk.Cursor(Gdk.CursorType.Watch);
++ };
++
+ GroupChatModel filter = new GroupChatModel(null, nameFilter, null);
+ f_FindThread = new Thread(new ThreadStart(delegate {
+ try {
+- Gtk.Application.Invoke(delegate {
+- GdkWindow.Cursor = new Gdk.Cursor(Gdk.CursorType.Watch);
+- });
++ Gtk.Application.Invoke(d);
+
+ IList<GroupChatModel> chats = f_ProtocolManager.FindGroupChats(filter);
+
diff --git a/net-irc/smuxi/metadata.xml b/net-irc/smuxi/metadata.xml
new file mode 100644
index 000000000000..e01adbb307db
--- /dev/null
+++ b/net-irc/smuxi/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>dotnet</herd>
+</pkgmetadata>
diff --git a/net-irc/smuxi/smuxi-0.6.3.ebuild b/net-irc/smuxi/smuxi-0.6.3.ebuild
new file mode 100644
index 000000000000..e1bbc9a34d3b
--- /dev/null
+++ b/net-irc/smuxi/smuxi-0.6.3.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/smuxi/smuxi-0.6.3.ebuild,v 1.1 2009/01/31 22:19:26 loki_val Exp $
+
+EAPI="2"
+
+inherit base mono
+
+HOMEPAGE="http://www.smuxi.org/page/Download"
+SRC_URI="http://smuxi.meebey.net/jaws/data/files/${P}.tar.gz"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+LICENSE="|| ( LGPL-2.1 LGPL-3 )"
+
+
+RDEPEND=">=dev-lang/mono-2.0
+ >=dev-dotnet/smartirc4net-0.4.5.1
+ >=dev-dotnet/nini-1.1.0-r2
+ >=dev-dotnet/log4net-1.2.10-r2
+ >=dev-dotnet/gtk-sharp-2.12
+ >=dev-dotnet/gnome-sharp-2.12
+ >=dev-dotnet/gconf-sharp-2.12
+ >=dev-dotnet/glade-sharp-2.12
+ >=dev-dotnet/glib-sharp-2.12"
+DEPEND="${RDEPEND}
+ >=dev-util/intltool-0.25
+ >=sys-devel/gettext-0.17
+ >=dev-util/pkgconfig-0.23"
+
+PATCHES=( "${FILESDIR}/${P}-mono-2.2.patch" )
+
+src_configure() {
+ econf --disable-dependency-tracking \
+ --enable-engine-irc \
+ --enable-frontend-gnome
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+ dodoc FEATURES TODO README || die "dodoc failed"
+}