blob: 79a007c5afd065805e4738adeb6ce81cc7a60b2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/msn-pecan/msn-pecan-0.1.0_rc1.ebuild,v 1.1 2009/07/19 20:12:13 voyageur Exp $
inherit toolchain-funcs multilib
DESCRIPTION="Alternative MSN protocol plugin for libpurple"
HOMEPAGE="http://code.google.com/p/msn-pecan/"
SRC_URI="http://msn-pecan.googlecode.com/files/${P/_/-}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="net-im/pidgin"
DEPEND="dev-util/pkgconfig
${RDEPEND}"
S=${WORKDIR}/${P/_/-}
src_compile() {
emake CC="$(tc-getCC)" || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc 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"
}
|