* [gentoo-commits] gentoo-x86 commit in x11-plugins/enigmail: ChangeLog enigmail-1.0.0.ebuild
@ 2009-12-08 21:40 Jory Pratt (anarchy)
0 siblings, 0 replies; 2+ messages in thread
From: Jory Pratt (anarchy) @ 2009-12-08 21:40 UTC (permalink / raw
To: gentoo-commits
anarchy 09/12/08 21:40:54
Modified: ChangeLog
Added: enigmail-1.0.0.ebuild
Log:
version bump
(Portage version: 2.1.7.11/cvs/Linux x86_64, RepoMan options: --force)
Revision Changes Path
1.166 x11-plugins/enigmail/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/enigmail/ChangeLog?rev=1.166&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/enigmail/ChangeLog?rev=1.166&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/enigmail/ChangeLog?r1=1.165&r2=1.166
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/ChangeLog,v
retrieving revision 1.165
retrieving revision 1.166
diff -u -r1.165 -r1.166
--- ChangeLog 25 Oct 2009 17:58:42 -0000 1.165
+++ ChangeLog 8 Dec 2009 21:40:53 -0000 1.166
@@ -1,6 +1,11 @@
# ChangeLog for x11-plugins/enigmail
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/ChangeLog,v 1.165 2009/10/25 17:58:42 anarchy Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/ChangeLog,v 1.166 2009/12/08 21:40:53 anarchy Exp $
+
+*enigmail-1.0.0 (08 Dec 2009)
+
+ 08 Dec 2009; Jory A. Pratt <anarchy@gentoo.org> +enigmail-1.0.0.ebuild:
+ revision bump for thunderbird
25 Oct 2009; Jory A. Pratt <anarchy@gentoo.org> enigmail-0.96.0.ebuild:
reverse preferred qt on pinetry
1.1 x11-plugins/enigmail/enigmail-1.0.0.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/enigmail/enigmail-1.0.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/enigmail/enigmail-1.0.0.ebuild?rev=1.1&content-type=text/plain
Index: enigmail-1.0.0.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/enigmail-1.0.0.ebuild,v 1.1 2009/12/08 21:40:53 anarchy Exp $
WANT_AUTOCONF="2.1"
EAPI="2"
inherit flag-o-matic toolchain-funcs eutils mozconfig-3 makeedit multilib mozextension autotools
MY_P="${P/_beta/b}"
EMVER="${PV}"
TBVER="3.0"
PATCH="mozilla-thunderbird-3.0-patches-0.1"
DESCRIPTION="GnuPG encryption plugin for thunderbird."
HOMEPAGE="http://enigmail.mozdev.org"
SRC_URI="http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/${TBVER}/source/thunderbird-${TBVER}.source.tar.bz2
http://www.mozilla-enigmail.org/download/source/${PN}-${EMVER}.tar.gz
http://dev.gentoo.org/~anarchy/dist/${PATCH}.tar.bz2"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
SLOT="0"
LICENSE="MPL-1.1 GPL-2"
IUSE=""
DEPEND=">=mail-client/mozilla-thunderbird-3.0"
RDEPEND="${DEPEND}
|| (
(
>=app-crypt/gnupg-2.0
|| (
app-crypt/pinentry[gtk]
app-crypt/pinentry[qt4]
app-crypt/pinentry[qt3]
)
)
=app-crypt/gnupg-1.4*
)"
S="${WORKDIR}"/comm-1.9.1
pkg_setup() {
# EAPI=2 ensures they are set properly.
export BUILD_OFFICIAL=1
export MOZILLA_OFFICIAL=1
export MOZ_CO_PROJECT=mail
}
src_unpack() {
unpack thunderbird-${TBVER}.source.tar.bz2 ${PATCH}.tar.bz2 || die "unpack failed"
}
src_prepare(){
# Apply our patches
EPATCH_EXCLUDE="104-fix_licence_file_preprocessor.patch" \
EPATCH_SUFFIX="patch" \
EPATCH_FORCE="yes" \
epatch "${WORKDIR}"
cd mozilla
eautoreconf
cd js/src
eautoreconf
# Unpack the enigmail plugin
cd "${S}"/mailnews/extensions || die
unpack enigmail-${EMVER}.tar.gz
cd "${S}"/mailnews/extensions/enigmail || die "cd failed"
makemake2
cd "${S}"
# Fix installation of enigmail.js
epatch "${FILESDIR}"/70_enigmail-fix.patch
eautoreconf
}
src_configure() {
declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/mozilla-thunderbird"
####################################
#
# mozconfig, CFLAGS and CXXFLAGS setup
#
####################################
touch mail/config/mozconfig
mozconfig_init
mozconfig_config
# tb-specific settings
mozconfig_annotate '' \
--with-system-nspr \
--with-system-nss \
--with-default-mozilla-five-home=${MOZILLA_FIVE_HOME} \
--with-user-appdir=.thunderbird \
--enable-application=mail
# Finalize and report settings
mozconfig_final
# Disable no-print-directory
MAKEOPTS=${MAKEOPTS/--no-print-directory/}
if [[ $(gcc-major-version) -lt 4 ]]; then
append-cxxflags -fno-stack-protector
fi
####################################
#
# Configure and build Thunderbird
#
####################################
CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getLD)" \
econf || die
# This removes extraneous CFLAGS from the Makefiles to reduce RAM
# requirements while compiling
edit_makefiles
}
src_compile() {
# Only build the parts necessary to support building enigmail
emake -j1 export || die "make export failed"
emake -C mozilla/modules/libreg || die "make modules/libreg failed"
emake -C mozilla/xpcom/string || die "make xpcom/string failed"
emake -C mozilla/xpcom || die "make xpcom failed"
emake -C mozilla/xpcom/obsolete || die "make xpcom/obsolete failed"
# Build the enigmail plugin
einfo "Building Enigmail plugin..."
emake -C "${S}"/mailnews/extensions/enigmail || die "make enigmail failed"
# Package the enigmail plugin; this may be the easiest way to collect the
# necessary files
emake -j1 -C "${S}"/mailnews/extensions/enigmail xpi || die "make xpi failed"
}
src_install() {
declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/mozilla-thunderbird"
declare emid
cd "${T}"
unzip "${S}"/mozilla/dist/bin/*.xpi install.rdf
emid=$(sed -n '/<em:id>/!d; s/.*\({.*}\).*/\1/; p; q' install.rdf)
dodir ${MOZILLA_FIVE_HOME}/extensions/${emid}
cd "${D}"${MOZILLA_FIVE_HOME}/extensions/${emid}
unzip "${S}"/mozilla/dist/bin/*.xpi
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-plugins/enigmail: ChangeLog enigmail-1.0.0.ebuild
@ 2009-12-15 15:03 Jory Pratt (anarchy)
0 siblings, 0 replies; 2+ messages in thread
From: Jory Pratt (anarchy) @ 2009-12-15 15:03 UTC (permalink / raw
To: gentoo-commits
anarchy 09/12/15 15:03:45
Modified: ChangeLog enigmail-1.0.0.ebuild
Log:
update patchset for sparc users, bug #296883
(Portage version: 2.1.7.14/cvs/Linux x86_64)
Revision Changes Path
1.167 x11-plugins/enigmail/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/enigmail/ChangeLog?rev=1.167&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/enigmail/ChangeLog?rev=1.167&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/enigmail/ChangeLog?r1=1.166&r2=1.167
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/ChangeLog,v
retrieving revision 1.166
retrieving revision 1.167
diff -u -r1.166 -r1.167
--- ChangeLog 8 Dec 2009 21:40:53 -0000 1.166
+++ ChangeLog 15 Dec 2009 15:03:45 -0000 1.167
@@ -1,6 +1,9 @@
# ChangeLog for x11-plugins/enigmail
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/ChangeLog,v 1.166 2009/12/08 21:40:53 anarchy Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/ChangeLog,v 1.167 2009/12/15 15:03:45 anarchy Exp $
+
+ 15 Dec 2009; Jory A. Pratt <anarchy@gentoo.org> enigmail-1.0.0.ebuild:
+ update patchset for sparc users, bug #296883
*enigmail-1.0.0 (08 Dec 2009)
1.2 x11-plugins/enigmail/enigmail-1.0.0.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/enigmail/enigmail-1.0.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/enigmail/enigmail-1.0.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/enigmail/enigmail-1.0.0.ebuild?r1=1.1&r2=1.2
Index: enigmail-1.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/enigmail-1.0.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- enigmail-1.0.0.ebuild 8 Dec 2009 21:40:53 -0000 1.1
+++ enigmail-1.0.0.ebuild 15 Dec 2009 15:03:45 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/enigmail-1.0.0.ebuild,v 1.1 2009/12/08 21:40:53 anarchy Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/enigmail-1.0.0.ebuild,v 1.2 2009/12/15 15:03:45 anarchy Exp $
WANT_AUTOCONF="2.1"
EAPI="2"
@@ -9,7 +9,7 @@
MY_P="${P/_beta/b}"
EMVER="${PV}"
TBVER="3.0"
-PATCH="mozilla-thunderbird-3.0-patches-0.1"
+PATCH="mozilla-thunderbird-3.0-patches-0.3"
DESCRIPTION="GnuPG encryption plugin for thunderbird."
HOMEPAGE="http://enigmail.mozdev.org"
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-12-15 15:03 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-15 15:03 [gentoo-commits] gentoo-x86 commit in x11-plugins/enigmail: ChangeLog enigmail-1.0.0.ebuild Jory Pratt (anarchy)
-- strict thread matches above, loose matches on Subject: below --
2009-12-08 21:40 Jory Pratt (anarchy)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox