blob: b8e6dd8740902f280ffdbf3e5aa7ad65f951b4ff (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/replytolist/replytolist-0.3.0.ebuild,v 1.3 2010/06/13 02:29:00 nirbheek Exp $
inherit mozextension multilib
DESCRIPTION="Thunderbird extension to reply to mailing list"
HOMEPAGE="http://alumnit.ca/wiki/index.php?page=ReplyToListThunderbirdExtension"
SRC_URI="http://alumnit.ca/wiki/attachments/${P}.xpi"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
RDEPEND=">=mail-client/thunderbird-2.0_alpha1"
DEPEND="${RDEPEND}"
#S="${WORKDIR}"
src_unpack() {
xpi_unpack ${P}.xpi
}
src_install() {
declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/mozilla-thunderbird"
emid=$(sed -n -e '/<\?em:id>\?/!d; s/.*\([\"{].*[}\"]\).*/\1/; s/\"//g; p;' install.rdf | sed -e '1d') || die "failed to determine extension id"
insinto "${MOZILLA_FIVE_HOME}"/extensions/${emid}
doins -r * || die "failed to copy extension"
}
|