diff options
Diffstat (limited to 'net-im/freetalk/freetalk-3.2.ebuild')
-rw-r--r-- | net-im/freetalk/freetalk-3.2.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/net-im/freetalk/freetalk-3.2.ebuild b/net-im/freetalk/freetalk-3.2.ebuild new file mode 100644 index 000000000..ef0df2d66 --- /dev/null +++ b/net-im/freetalk/freetalk-3.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="2" + +inherit autotools eutils + +DESCRIPTION="Console based Jabber client" +HOMEPAGE="http://www.gnu.org/software/freetalk/" +SRC_URI="http://savannah.gnu.org/download/${PN}/${P}.tar.gz" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +LICENSE="GPL-3" +IUSE="" + +RDEPEND=" + dev-libs/glib:2 + dev-scheme/guile + net-libs/loudmouth" +DEPEND="${RDEPEND}" + +src_prepare() { + epatch \ + "${FILESDIR}"/${PV}-callback.patch \ + "${FILESDIR}"/${PV}-asneeded.patch + mkdir m4 + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install || die +} |