summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDon Seiler <rizzo@gentoo.org>2005-01-24 03:25:28 +0000
committerDon Seiler <rizzo@gentoo.org>2005-01-24 03:25:28 +0000
commitbf1eae3ae01cf242b379575b4daaedaad570cc69 (patch)
tree55d4734a79e684728d2b2546cd338a454d00620f /net-libs/libotr
parentremove diet (diff)
downloadgentoo-2-bf1eae3ae01cf242b379575b4daaedaad570cc69.tar.gz
gentoo-2-bf1eae3ae01cf242b379575b4daaedaad570cc69.tar.bz2
gentoo-2-bf1eae3ae01cf242b379575b4daaedaad570cc69.zip
Version bump
(Portage version: 2.0.51-r14)
Diffstat (limited to 'net-libs/libotr')
-rw-r--r--net-libs/libotr/ChangeLog7
-rw-r--r--net-libs/libotr/Manifest2
-rw-r--r--net-libs/libotr/files/digest-libotr-1.0.41
-rw-r--r--net-libs/libotr/libotr-1.0.4.ebuild30
4 files changed, 39 insertions, 1 deletions
diff --git a/net-libs/libotr/ChangeLog b/net-libs/libotr/ChangeLog
index fdd4b7fd3bcc..d51ce88b9191 100644
--- a/net-libs/libotr/ChangeLog
+++ b/net-libs/libotr/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-libs/libotr
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libotr/ChangeLog,v 1.1 2005/01/21 14:48:42 rizzo Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libotr/ChangeLog,v 1.2 2005/01/24 03:25:27 rizzo Exp $
+
+*libotr-1.0.4 (23 Jan 2005)
+
+ 23 Jan 2005; Don Seiler <rizzo@gentoo.org> +libotr-1.0.4.ebuild:
+ Version bump
*libotr-1.0.3 (21 Jan 2005)
diff --git a/net-libs/libotr/Manifest b/net-libs/libotr/Manifest
index faa4ae36f432..7cb5f679abba 100644
--- a/net-libs/libotr/Manifest
+++ b/net-libs/libotr/Manifest
@@ -1,4 +1,6 @@
MD5 3270831ad98fe315ffae3794731a49d7 libotr-1.0.3.ebuild 771
MD5 ca14e46942f61d8e1877e0712443e3ae ChangeLog 313
MD5 f336d73adb9eb04864ae3f5e98787c12 metadata.xml 223
+MD5 19f123521411292ea58031c2f19f2b9c libotr-1.0.4.ebuild 808
MD5 4b1f1a1f5d8b0a0583a569f0009c7435 files/digest-libotr-1.0.3 63
+MD5 ce21e4bf4ffd89512e4a9e32f0539761 files/digest-libotr-1.0.4 64
diff --git a/net-libs/libotr/files/digest-libotr-1.0.4 b/net-libs/libotr/files/digest-libotr-1.0.4
new file mode 100644
index 000000000000..5561de49639a
--- /dev/null
+++ b/net-libs/libotr/files/digest-libotr-1.0.4
@@ -0,0 +1 @@
+MD5 43b23c50a9d3de4fa1f557cc7e27f3ec libotr-1.0.4.tar.gz 342446
diff --git a/net-libs/libotr/libotr-1.0.4.ebuild b/net-libs/libotr/libotr-1.0.4.ebuild
new file mode 100644
index 000000000000..6e4ab456d1f5
--- /dev/null
+++ b/net-libs/libotr/libotr-1.0.4.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libotr/libotr-1.0.4.ebuild,v 1.1 2005/01/24 03:25:27 rizzo Exp $
+
+inherit flag-o-matic eutils debug
+
+DESCRIPTION="(OTR) Messaging allows you to have private conversations over instant messaging"
+HOMEPAGE="http://www.cypherpunks.ca/otr/"
+SRC_URI="http://www.cypherpunks.ca/otr/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~amd64"
+IUSE=""
+
+DEPEND="dev-libs/libgpg-error
+ >=dev-libs/libgcrypt-1.2.0"
+
+src_compile() {
+ strip-flags
+ replace-flags -O? -O2
+
+ econf || die "econf failed"
+ emake || MAKEOPTS="${MAKEOPTS} -j1" emake || die "Make failed"
+}
+
+src_install() {
+ make install DESTDIR=${D} || die "Install failed"
+ dodoc COPYING ChangeLog README
+}