You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
711 B
31 lines
711 B
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="2"
|
|
|
|
inherit multilib
|
|
|
|
DESCRIPTION="An RVP (Microsoft Exchange Instant Messaging) plugin for Pidgin"
|
|
HOMEPAGE="http://www.waider.ie/hacks/workshop/c/rvp/"
|
|
SRC_URI="http://www.waider.ie/hacks/workshop/c/rvp/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="net-im/pidgin[gtk]"
|
|
DEPEND="virtual/pkgconfig
|
|
${RDEPEND}"
|
|
|
|
src_configure() {
|
|
econf --with-gaim-plugin-dir=/usr/$(get_libdir)/pidgin \
|
|
--with-gaim-data-dir=/usr/share/pixmaps/pidgin
|
|
}
|
|
|
|
src_install() {
|
|
make install DESTDIR="${D}" || die "install failure"
|
|
dodoc AUTHORS ChangeLog INSTALL NEWS README
|
|
}
|