blob: c11e738842d8fee7ddd3c95d58d6b3403f6fcea6 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/replytolist/replytolist-0.2.0.ebuild,v 1.11 2007/05/20 14:07:44 josejx Exp $
inherit mozextension multilib
DESCRIPTION="Thunderbird extension to reply to mailing list"
HOMEPAGE="http://open.nit.ca/wiki/index.php?page=ReplyToListThunderbirdExtension"
KEYWORDS="~alpha amd64 ia64 ppc ~ppc64 sparc x86"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
RDEPEND=">=mail-client/mozilla-thunderbird-2.0_alpha1
>=x11-plugins/enigmail-0.94.1-r1"
DEPEND="${RDEPEND}"
SRC_URI="http://open.nit.ca/wiki/attachments/"${P}".xpi"
S="${WORKDIR}"
src_unpack() {
xpi_unpack "${P}".xpi
}
src_install() {
declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/mozilla-thunderbird"
xpi_install "${S}"/"${P}"
}
|