summaryrefslogtreecommitdiff
path: root/net-im
diff options
context:
space:
mode:
authorKarol Pasternak <reb@gentoo.org>2006-04-24 18:50:57 +0000
committerKarol Pasternak <reb@gentoo.org>2006-04-24 18:50:57 +0000
commit319f2c51b95c158aa70bb7467830a88c00deb17a (patch)
treebacc9e5b3e42957916fae97e28db04294d4e03c3 /net-im
parentConditionally build documentation (Bug #130268); Added support for ppc-macos ... (diff)
downloadgentoo-2-319f2c51b95c158aa70bb7467830a88c00deb17a.tar.gz
gentoo-2-319f2c51b95c158aa70bb7467830a88c00deb17a.tar.bz2
gentoo-2-319f2c51b95c158aa70bb7467830a88c00deb17a.zip
version bump, bug #131059
(Portage version: 2.1_pre9-r4)
Diffstat (limited to 'net-im')
-rw-r--r--net-im/mcabber/ChangeLog7
-rw-r--r--net-im/mcabber/files/digest-mcabber-0.7.63
-rw-r--r--net-im/mcabber/mcabber-0.7.6.ebuild42
3 files changed, 51 insertions, 1 deletions
diff --git a/net-im/mcabber/ChangeLog b/net-im/mcabber/ChangeLog
index a70e6ec911eb..33687f09cbed 100644
--- a/net-im/mcabber/ChangeLog
+++ b/net-im/mcabber/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-im/mcabber
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/mcabber/ChangeLog,v 1.1 2006/01/23 16:25:40 humpback Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/mcabber/ChangeLog,v 1.2 2006/04/24 18:50:57 reb Exp $
+
+*mcabber-0.7.6 (24 Apr 2006)
+
+ 24 Apr 2006; <reb@gentoo.org> +mcabber-0.7.6.ebuild:
+ Version bump, bug #131059
*mcabber-0.7.4 (23 Jan 2006)
diff --git a/net-im/mcabber/files/digest-mcabber-0.7.6 b/net-im/mcabber/files/digest-mcabber-0.7.6
new file mode 100644
index 000000000000..43b7c39cf800
--- /dev/null
+++ b/net-im/mcabber/files/digest-mcabber-0.7.6
@@ -0,0 +1,3 @@
+MD5 0456968da2a50eb127fce2a1ee5d5902 mcabber-0.7.6.tar.bz2 332528
+RMD160 02576ef9d1c32fcee75cd035131f3df15ca68b57 mcabber-0.7.6.tar.bz2 332528
+SHA256 03cc90cfce72a0d77fd9f6a83ef413cb27eb7421ff6c6042bf8fe5cbaf6d62de mcabber-0.7.6.tar.bz2 332528
diff --git a/net-im/mcabber/mcabber-0.7.6.ebuild b/net-im/mcabber/mcabber-0.7.6.ebuild
new file mode 100644
index 000000000000..4e07a9b0ab77
--- /dev/null
+++ b/net-im/mcabber/mcabber-0.7.6.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-im/mcabber/mcabber-0.7.6.ebuild,v 1.1 2006/04/24 18:50:57 reb Exp $
+
+DESCRIPTION="A small Jabber console client that includes features such as SSL
+support, MUC (Multi-User Chat) support, history logging, commands completion,
+and external actions triggers."
+
+HOMEPAGE="http://www.lilotux.net/~mikael/mcabber/"
+
+SRC_URI="http://www.lilotux.net/~mikael/mcabber/files/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+
+SLOT="0"
+
+KEYWORDS="~x86 ~ppc ~alpha ~mips ~sparc ~amd64"
+
+IUSE="ssl"
+
+DEPEND="ssl? ( >=dev-libs/openssl-0.9.7-r1 )
+ >=dev-libs/glib-2.0.0"
+
+src_compile() {
+ econf \
+ $(use_with ssl) \
+ || die "econf failed"
+
+ emake || die "emake failed"
+}
+
+src_install() {
+ einstall || die "einstall failed"
+ dodoc ${S}/mcabberrc.example
+}
+
+pkg_postinst() {
+ einfo "MCabber requires you to create a configuration file in your home directory."
+ einfo "A template of such file was installed as part of the documentation for this software."
+ einfo "This file is intended to be self-documenting."
+ einfo "See the CONFIGURATION FILE and FILES sections of mcabber(1) for more information."
+}