* [gentoo-commits] gentoo-x86 commit in x11-plugins/enigmail: enigmail-1.1.ebuild ChangeLog
@ 2010-06-18 18:41 Jory Pratt (anarchy)
0 siblings, 0 replies; 2+ messages in thread
From: Jory Pratt (anarchy) @ 2010-06-18 18:41 UTC (permalink / raw
To: gentoo-commits
anarchy 10/06/18 18:41:47
Modified: ChangeLog
Added: enigmail-1.1.ebuild
Log:
Version bump for latest tb-3.1
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Revision Changes Path
1.186 x11-plugins/enigmail/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/enigmail/ChangeLog?rev=1.186&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/enigmail/ChangeLog?rev=1.186&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/enigmail/ChangeLog?r1=1.185&r2=1.186
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/ChangeLog,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -r1.185 -r1.186
--- ChangeLog 13 Jun 2010 02:27:59 -0000 1.185
+++ ChangeLog 18 Jun 2010 18:41:47 -0000 1.186
@@ -1,6 +1,11 @@
# ChangeLog for x11-plugins/enigmail
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/ChangeLog,v 1.185 2010/06/13 02:27:59 nirbheek Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/ChangeLog,v 1.186 2010/06/18 18:41:47 anarchy Exp $
+
+*enigmail-1.1 (18 Jun 2010)
+
+ 18 Jun 2010; <anarchy@gentoo.org> +enigmail-1.1.ebuild:
+ Version bump for latest tb-3.1
13 Jun 2010; Nirbheek Chauhan <nirbheek@gentoo.org>
enigmail-1.0.1-r3.ebuild:
1.1 x11-plugins/enigmail/enigmail-1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/enigmail/enigmail-1.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/enigmail/enigmail-1.1.ebuild?rev=1.1&content-type=text/plain
Index: enigmail-1.1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/enigmail-1.1.ebuild,v 1.1 2010/06/18 18:41:47 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.1rc1"
PATCH="mozilla-thunderbird-3.1-patches-0.1"
DESCRIPTION="GnuPG encryption plugin for thunderbird."
HOMEPAGE="http://enigmail.mozdev.org"
REL_URI="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/nightly/"
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="system-sqlite"
DEPEND=">=mail-client/thunderbird-3.1_beta1[system-sqlite=]"
RDEPEND="${DEPEND}
system-sqlite? ( >=dev-db/sqlite-3.6.22-r2[fts3,secure-delete] )
|| (
(
>=app-crypt/gnupg-2.0
|| (
app-crypt/pinentry[gtk]
app-crypt/pinentry[qt4]
)
)
=app-crypt/gnupg-1.4*
)"
S="${WORKDIR}"/comm-1.9.2
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_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 \
--disable-necko-wifi \
--disable-libnotify
mozconfig_use_enable system-sqlite
# 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: enigmail-1.1.ebuild ChangeLog
@ 2010-06-21 15:16 Jory Pratt (anarchy)
0 siblings, 0 replies; 2+ messages in thread
From: Jory Pratt (anarchy) @ 2010-06-21 15:16 UTC (permalink / raw
To: gentoo-commits
anarchy 10/06/21 15:16:54
Modified: enigmail-1.1.ebuild ChangeLog
Log:
Update to build with rc2 source
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Revision Changes Path
1.2 x11-plugins/enigmail/enigmail-1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/enigmail/enigmail-1.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/enigmail/enigmail-1.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/enigmail/enigmail-1.1.ebuild?r1=1.1&r2=1.2
Index: enigmail-1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/enigmail-1.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- enigmail-1.1.ebuild 18 Jun 2010 18:41:47 -0000 1.1
+++ enigmail-1.1.ebuild 21 Jun 2010 15:16:54 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/enigmail-1.1.ebuild,v 1.1 2010/06/18 18:41:47 anarchy Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/enigmail-1.1.ebuild,v 1.2 2010/06/21 15:16:54 anarchy Exp $
WANT_AUTOCONF="2.1"
EAPI="2"
@@ -8,7 +8,7 @@
inherit flag-o-matic toolchain-funcs eutils mozconfig-3 makeedit multilib mozextension autotools
MY_P="${P/_beta/b}"
EMVER="${PV}"
-TBVER="3.1rc1"
+TBVER="3.1rc2"
PATCH="mozilla-thunderbird-3.1-patches-0.1"
DESCRIPTION="GnuPG encryption plugin for thunderbird."
1.187 x11-plugins/enigmail/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/enigmail/ChangeLog?rev=1.187&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/enigmail/ChangeLog?rev=1.187&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/enigmail/ChangeLog?r1=1.186&r2=1.187
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/ChangeLog,v
retrieving revision 1.186
retrieving revision 1.187
diff -u -r1.186 -r1.187
--- ChangeLog 18 Jun 2010 18:41:47 -0000 1.186
+++ ChangeLog 21 Jun 2010 15:16:54 -0000 1.187
@@ -1,6 +1,9 @@
# ChangeLog for x11-plugins/enigmail
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/ChangeLog,v 1.186 2010/06/18 18:41:47 anarchy Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/enigmail/ChangeLog,v 1.187 2010/06/21 15:16:54 anarchy Exp $
+
+ 21 Jun 2010; <anarchy@gentoo.org> enigmail-1.1.ebuild:
+ Update to build with rc2 source
*enigmail-1.1 (18 Jun 2010)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-06-21 15:16 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-21 15:16 [gentoo-commits] gentoo-x86 commit in x11-plugins/enigmail: enigmail-1.1.ebuild ChangeLog Jory Pratt (anarchy)
-- strict thread matches above, loose matches on Subject: below --
2010-06-18 18:41 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