diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2010-09-05 12:03:29 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2010-09-05 12:03:29 +0000 |
commit | 5ad60a5f06e363d236241017d97f695482c86e0e (patch) | |
tree | 90aac2a7409d92fcf7f49b063f0a4efc4b0d7e93 /net-irc/irssi-xmpp/irssi-xmpp-0.51.ebuild | |
parent | x11-base/xorg-server: add missing libXv dep, fixes bug #335025 (diff) | |
download | historical-5ad60a5f06e363d236241017d97f695482c86e0e.tar.gz historical-5ad60a5f06e363d236241017d97f695482c86e0e.tar.bz2 historical-5ad60a5f06e363d236241017d97f695482c86e0e.zip |
Version bump wrt bug 322991. Fix building with --as-needed wrt bug 334861, fix parallel build, fix implicit function conversions that resulted in SIGSEGV on amd64. Fix docs wrt bug 322355. Remove old. Claim ownership with Tobias' blessing.
Package-Manager: portage-2.1.9/cvs/Linux x86_64
Diffstat (limited to 'net-irc/irssi-xmpp/irssi-xmpp-0.51.ebuild')
-rw-r--r-- | net-irc/irssi-xmpp/irssi-xmpp-0.51.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/net-irc/irssi-xmpp/irssi-xmpp-0.51.ebuild b/net-irc/irssi-xmpp/irssi-xmpp-0.51.ebuild new file mode 100644 index 000000000000..a9566d026a37 --- /dev/null +++ b/net-irc/irssi-xmpp/irssi-xmpp-0.51.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi-xmpp/irssi-xmpp-0.51.ebuild,v 1.1 2010/09/05 12:03:29 xarthisius Exp $ + +EAPI="2" + +inherit eutils toolchain-funcs multilib + +DESCRIPTION="An irssi plugin providing Jabber/XMPP support" +HOMEPAGE="http://cybione.org/~irssi-xmpp/" +SRC_URI="http://cybione.org/~${PN}/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">=net-irc/irssi-0.8.13 + >=net-libs/loudmouth-1.2.0[debug]" +RDEPEND="${DEPEND}" + +src_prepare() { + epatch "${FILESDIR}"/${P}-build_system.patch \ + "${FILESDIR}"/${P}-implicit_conversion.patch + sed -e "s/{MAKE} doc-install/{MAKE}/" \ + -i Makefile || die #322355 +} + +src_compile() { + emake PREFIX="/usr" CC="$(tc-getCC)" || die +} + +src_install() { + emake DESTDIR="${D}" PREFIX="/usr" IRSSI_LIB="/usr/$(get_libdir)/irssi" install || die + dodoc README NEWS TODO docs/* || die #322355 +} |