diff options
Diffstat (limited to 'net-libs/qxmpp/qxmpp-0.7.4.ebuild')
-rw-r--r-- | net-libs/qxmpp/qxmpp-0.7.4.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/net-libs/qxmpp/qxmpp-0.7.4.ebuild b/net-libs/qxmpp/qxmpp-0.7.4.ebuild new file mode 100644 index 000000000000..d2e153516c83 --- /dev/null +++ b/net-libs/qxmpp/qxmpp-0.7.4.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/qxmpp/qxmpp-0.7.4.ebuild,v 1.1 2012/10/01 19:44:24 pinkbyte Exp $ + +EAPI=4 + +inherit qt4-r2 multilib + +DESCRIPTION="A cross-platform C++ XMPP client library based on the Qt framework." +HOMEPAGE="http://code.google.com/p/qxmpp/" +SRC_URI="http://qxmpp.googlecode.com/files/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +DEPEND="x11-libs/qt-core:4 + x11-libs/qt-gui:4 + media-libs/speex" +RDEPEND="${DEPEND}" + +src_configure() { + eqmake4 "${S}"/qxmpp.pro "PREFIX=/usr" "LIBDIR=$(get_libdir)" +} + +src_install() { + qt4-r2_src_install + # Use proper path for documentation + mv "${ED}"/usr/share/doc/${PN} "${ED}"/usr/share/doc/${P} || die "doc mv failed" +} |