diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-01-14 04:51:18 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-01-14 04:51:18 +0000 |
commit | d3ba7bcf4f536bfaeee58073d8ee618c3b319407 (patch) | |
tree | daf103221a6052b26c7542c6016d9335a2c280e6 /net-libs/libyahoo2 | |
parent | Cleanup ebuild a bit. (diff) | |
download | gentoo-2-d3ba7bcf4f536bfaeee58073d8ee618c3b319407.tar.gz gentoo-2-d3ba7bcf4f536bfaeee58073d8ee618c3b319407.tar.bz2 gentoo-2-d3ba7bcf4f536bfaeee58073d8ee618c3b319407.zip |
Drop pedantic crap #240912 by Diego E. Pettenò and cleanup ebuild.
(Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
Diffstat (limited to 'net-libs/libyahoo2')
-rw-r--r-- | net-libs/libyahoo2/ChangeLog | 7 | ||||
-rw-r--r-- | net-libs/libyahoo2/libyahoo2-0.7.5.ebuild | 23 |
2 files changed, 17 insertions, 13 deletions
diff --git a/net-libs/libyahoo2/ChangeLog b/net-libs/libyahoo2/ChangeLog index 1095f97dbf31..d272d9d0615c 100644 --- a/net-libs/libyahoo2/ChangeLog +++ b/net-libs/libyahoo2/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-libs/libyahoo2 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libyahoo2/ChangeLog,v 1.7 2007/02/22 01:34:35 peper Exp $ +# 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 $ + + 14 Jan 2009; Mike Frysinger <vapier@gentoo.org> libyahoo2-0.7.5.ebuild: + Drop pedantic crap #240912 by Diego E. Pettenò and cleanup ebuild. 22 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog: Transition to Manifest2. diff --git a/net-libs/libyahoo2/libyahoo2-0.7.5.ebuild b/net-libs/libyahoo2/libyahoo2-0.7.5.ebuild index 998deaf1b37d..1d00c82578e5 100644 --- a/net-libs/libyahoo2/libyahoo2-0.7.5.ebuild +++ b/net-libs/libyahoo2/libyahoo2-0.7.5.ebuild @@ -1,26 +1,27 @@ -# Copyright 1999-2004 Gentoo Foundation +# 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.5.ebuild,v 1.2 2004/08/30 15:47:24 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libyahoo2/libyahoo2-0.7.5.ebuild,v 1.3 2009/01/14 04:51:18 vapier Exp $ -DESCRIPTION="libyahoo2 is an interface to the new Yahoo! Messenger protocol." +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="~x86 ~ppc" +KEYWORDS="~ppc ~x86" IUSE="" -src_compile() { - econf || die - emake || die +src_unpack() { + unpack ${A} + cd "${S}" + sed -i 's:-ansi -pedantic::' configure #240912 } src_install() { - einstall || die - dobin src/yahoo - dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO + 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 - } |