# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-msn-pecan/pidgin-msn-pecan-0.0.14.ebuild,v 1.2 2008/08/28 12:37:18 flameeyes Exp $ inherit toolchain-funcs multilib MY_P="msn-pecan-${PV}" DESCRIPTION="Alternative MSN protocol plugin for libpurple" HOMEPAGE="http://code.google.com/p/msn-pecan/" SRC_URI="http://msn-pecan.googlecode.com/files/${MY_P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" RDEPEND="net-im/pidgin" DEPEND="dev-util/pkgconfig ${RDEPEND}" S="${WORKDIR}/${MY_P}" src_unpack() { unpack ${A} cd "${S}" sed -i -e "s:/lib:/$(get_libdir):" Makefile || die "unable to fix Makefile" } src_compile() { emake CC="$(tc-getCC)" || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" dodoc COPYRIGHT ChangeLog README TODO || die "dodoc failed" } pkg_postinst() { elog "Select the 'WLM' protocol to use this plugin" einfo elog "For more information (how to change personal message, add" elog "missing emoticons, ...), please read:" elog "http://code.google.com/p/msn-pecan/wiki/FAQ" }