blob: 8e9c17741387477f22fc79ee18d894839d9b4669 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit multilib
DESCRIPTION="Pidgin plugin to performs itself like an answering machine or, more likely, a prompter robot"
HOMEPAGE="http://pidgin-autoansw.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN/er/}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="net-im/pidgin[gtk]"
RDEPEND="${DEPEND}"
src_install() {
insinto /usr/$(get_libdir)/pidgin
doins autoansw.so || die
dodoc TODO ChangeLog README || die
}
|