summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2009-04-25 11:33:28 +0000
committerPatrick Lauer <patrick@gentoo.org>2009-04-25 11:33:28 +0000
commit83bf30dc08f52c3283fa8df0299e998286b90ac2 (patch)
tree80023991b68e364833f8840e8f4f93e57c17545b /net-libs/libyahoo2
parentBump to 0.7.3. Fixes #230173. Ebuild modifications by Petr Pisar. (diff)
downloadgentoo-2-83bf30dc08f52c3283fa8df0299e998286b90ac2.tar.gz
gentoo-2-83bf30dc08f52c3283fa8df0299e998286b90ac2.tar.bz2
gentoo-2-83bf30dc08f52c3283fa8df0299e998286b90ac2.zip
Bump to 0.7.7. Adding ~amd64 keyword. Fixes #245277
(Portage version: 2.2_rc31/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/libyahoo2')
-rw-r--r--net-libs/libyahoo2/ChangeLog7
-rw-r--r--net-libs/libyahoo2/libyahoo2-0.7.7.ebuild27
2 files changed, 33 insertions, 1 deletions
diff --git a/net-libs/libyahoo2/ChangeLog b/net-libs/libyahoo2/ChangeLog
index d272d9d0615c..aeece21a1427 100644
--- a/net-libs/libyahoo2/ChangeLog
+++ b/net-libs/libyahoo2/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-libs/libyahoo2
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libyahoo2/ChangeLog,v 1.8 2009/01/14 04:51:18 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libyahoo2/ChangeLog,v 1.9 2009/04/25 11:33:28 patrick Exp $
+
+*libyahoo2-0.7.7 (25 Apr 2009)
+
+ 25 Apr 2009; Patrick Lauer <patrick@gentoo.org> +libyahoo2-0.7.7.ebuild:
+ Bump to 0.7.7. Adding ~amd64 keyword. Fixes #245277
14 Jan 2009; Mike Frysinger <vapier@gentoo.org> libyahoo2-0.7.5.ebuild:
Drop pedantic crap #240912 by Diego E. Pettenò and cleanup ebuild.
diff --git a/net-libs/libyahoo2/libyahoo2-0.7.7.ebuild b/net-libs/libyahoo2/libyahoo2-0.7.7.ebuild
new file mode 100644
index 000000000000..8ab06ccc43a8
--- /dev/null
+++ b/net-libs/libyahoo2/libyahoo2-0.7.7.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libyahoo2/libyahoo2-0.7.7.ebuild,v 1.1 2009/04/25 11:33:28 patrick Exp $
+
+DESCRIPTION="interface to the new Yahoo! Messenger protocol"
+HOMEPAGE="http://libyahoo2.sourceforge.net/"
+SRC_URI="mirror://sourceforge/libyahoo2/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ sed -i 's:-ansi -pedantic::' configure #240912
+}
+
+src_install() {
+ emake install DESTDIR="${D}" || die
+ dobin src/yahoo || die
+ dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
+ dodoc doc/*.txt
+ docinto sample
+ dodoc src/sample_client.c src/sample_makefile
+}