diff options
author | Raúl Porcel <armin76@gentoo.org> | 2007-12-11 17:45:33 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2007-12-11 17:45:33 +0000 |
commit | f07d33ca56e11f5fac7f67ae63040e8fe641cbd4 (patch) | |
tree | 5ab93b9bded11b00070e34c963ab0229f57c5a1c /x11-plugins/replytolist/replytolist-0.3.0.ebuild | |
parent | stable x86, bug 201899 (diff) | |
download | historical-f07d33ca56e11f5fac7f67ae63040e8fe641cbd4.tar.gz historical-f07d33ca56e11f5fac7f67ae63040e8fe641cbd4.tar.bz2 historical-f07d33ca56e11f5fac7f67ae63040e8fe641cbd4.zip |
Version bump, bug #199310
Package-Manager: portage-2.1.3.19
Diffstat (limited to 'x11-plugins/replytolist/replytolist-0.3.0.ebuild')
-rw-r--r-- | x11-plugins/replytolist/replytolist-0.3.0.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/x11-plugins/replytolist/replytolist-0.3.0.ebuild b/x11-plugins/replytolist/replytolist-0.3.0.ebuild new file mode 100644 index 000000000000..ad9a2fd2b312 --- /dev/null +++ b/x11-plugins/replytolist/replytolist-0.3.0.ebuild @@ -0,0 +1,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.3.0.ebuild,v 1.1 2007/12/11 17:45:32 armin76 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" +SLOT="0" +LICENSE="GPL-2" +IUSE="" + +RDEPEND=">=mail-client/mozilla-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" +} |