blob: 8264d85448be75b6c1892c0caa9e52f8b6e3018e (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=6
inherit eutils versionator #git-r3
DESCRIPTION="CardDAV plugin for mail-client/thunderbird"
HOMEPAGE="http://www.sogo.nu/downloads/frontends.html"
THUNDERBIRD_VERSION="$(get_major_version )"
KEYWORDS="amd64 ~x86"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
SRC_URI="https://github.com/inverse-inc/${PN}/archive/${P}.tar.gz"
RDEPEND="=mail-client/thunderbird-60*[lightning]"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${PN}-${P}"
src_prepare() {
epatch "${FILESDIR}/makefile.patch"
default
}
src_install() {
declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/thunderbird"
emid=$(sed -n '/em:id=/!d; s/\s*em:id="//; s/"\s*//; p; q' install.rdf)
dodir ${MOZILLA_FIVE_HOME}/extensions/${emid} || die
unzip "${P}.xpi" -d "${ED}"${MOZILLA_FIVE_HOME}/extensions/${emid}|| die
}
|