* [gentoo-commits] gentoo-x86 commit in www-client/seamonkey: ChangeLog seamonkey-1.1.18.ebuild
@ 2009-09-22 3:25 Jory Pratt (anarchy)
0 siblings, 0 replies; 12+ messages in thread
From: Jory Pratt (anarchy) @ 2009-09-22 3:25 UTC (permalink / raw
To: gentoo-commits
anarchy 09/09/22 03:25:22
Modified: ChangeLog
Added: seamonkey-1.1.18.ebuild
Log:
revision bump for security bug #280393
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Revision Changes Path
1.194 www-client/seamonkey/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.194&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.194&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?r1=1.193&r2=1.194
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v
retrieving revision 1.193
retrieving revision 1.194
diff -u -r1.193 -r1.194
--- ChangeLog 10 Jul 2009 18:52:01 -0000 1.193
+++ ChangeLog 22 Sep 2009 03:25:22 -0000 1.194
@@ -1,6 +1,11 @@
# ChangeLog for www-client/seamonkey
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.193 2009/07/10 18:52:01 nirbheek Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.194 2009/09/22 03:25:22 anarchy Exp $
+
+*seamonkey-1.1.18 (22 Sep 2009)
+
+ 22 Sep 2009; Jory A. Pratt <anarchy@gentoo.org> +seamonkey-1.1.18.ebuild:
+ revision bump for security, bug #280393
*seamonkey-1.1.17-r1 (10 Jul 2009)
1.1 www-client/seamonkey/seamonkey-1.1.18.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.1&content-type=text/plain
Index: seamonkey-1.1.18.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.1 2009/09/22 03:25:22 anarchy Exp $
WANT_AUTOCONF="2.1"
inherit flag-o-matic toolchain-funcs eutils mozcoreconf mozconfig-2 mozilla-launcher makeedit multilib autotools
PATCH="${P}-patches-0.1"
EMVER="0.96.0"
DESCRIPTION="Mozilla Application Suite - web browser, email, HTML editor, IRC"
HOMEPAGE="http://www.seamonkey-project.org/"
SRC_URI="http://releases.mozilla.org/pub/mozilla.org/${PN}/releases/${PV}/${P}.source.tar.bz2
mirror://gentoo/${PATCH}.tar.bz2
crypt? ( !moznomail? ( http://www.mozilla-enigmail.org/download/source/enigmail-${EMVER}.tar.gz ) )"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
SLOT="0"
LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 )"
IUSE="java ldap mozdevelop moznocompose moznoirc moznomail moznoroaming postgres crypt xforms"
RDEPEND="java? ( virtual/jre )
>=www-client/mozilla-launcher-1.56
>=dev-libs/nss-3.11.5
>=dev-libs/nspr-4.6.5-r1
crypt? ( !moznomail? ( >=app-crypt/gnupg-1.4 ) )"
DEPEND="${RDEPEND}
java? ( >=dev-java/java-config-0.2.0 )
dev-lang/perl
postgres? ( >=virtual/postgresql-server-7.2.0 )"
S="${WORKDIR}/mozilla"
# Needed by src_compile() and src_install().
# Would do in pkg_setup but that loses the export attribute, they
# become pure shell variables.
export MOZ_CO_PROJECT=suite
export BUILD_OFFICIAL=1
export MOZILLA_OFFICIAL=1
pkg_setup() {
if ! built_with_use x11-libs/cairo X; then
eerror "Cairo is not built with X useflag."
eerror "Please add 'X' to your USE flags, and re-emerge cairo."
die "Cairo needs X"
fi
if ! built_with_use --missing true x11-libs/pango X; then
eerror "Pango is not built with X useflag."
eerror "Please add 'X' to your USE flags, and re-emerge pango."
die "Pango needs X"
fi
use moznopango && warn_mozilla_launcher_stub
}
src_unpack() {
unpack ${P}.source.tar.bz2 ${PATCH}.tar.bz2
# Apply our patches
cd "${S}" || die "cd failed"
EPATCH_SUFFIX="patch" \
EPATCH_FORCE="yes" \
epatch "${WORKDIR}"/patch
# Unpack the enigmail plugin
if use crypt && ! use moznomail; then
cd "${S}"/mailnews/extensions || die
unpack enigmail-${EMVER}.tar.gz
cd "${S}"/mailnews/extensions/enigmail || die "cd failed"
makemake2
fi
# Fix scripts that call for /usr/local/bin/perl #51916
ebegin "Patching smime to call perl from /usr/bin"
sed -i -e '1s,usr/local/bin,usr/bin,' "${S}"/security/nss/cmd/smimetools/smime
eend $? || die "sed failed"
cd "${S}"
eautoreconf
}
src_compile() {
declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}"
####################################
#
# mozconfig, CFLAGS and CXXFLAGS setup
#
####################################
mozconfig_init
mozconfig_config
mozconfig_annotate 'gentoo' --enable-canvas
mozconfig_annotate 'gentoo' --with-system-nspr
mozconfig_annotate 'gentoo' --with-system-nss
# Bug 60668: Galeon doesn't build without oji enabled, so enable it
# regardless of java setting.
mozconfig_annotate 'galeon' --enable-oji --enable-mathml
# Other moz-specific settings
mozconfig_use_enable mozdevelop jsd
mozconfig_use_enable mozdevelop xpctools
mozconfig_use_extension mozdevelop venkman
if use moznoirc; then
mozconfig_annotate '+moznocompose +moznoirc' --enable-extensions=-irc
fi
if use moznoroaming ; then
mozconfig_annotate '+moznoroaming' --enable-extensions=-sroaming
fi
if use postgres ; then
mozconfig_annotate '+postgres' --enable-extensions=sql
export MOZ_ENABLE_PGSQL=1
export MOZ_PGSQL_INCLUDES=/usr/include
export MOZ_PGSQL_LIBS=/usr/$(get_libdir)
fi
mozconfig_use_enable ldap
mozconfig_use_enable ldap ldap-experimental
mozconfig_annotate '' --with-default-mozilla-five-home=${MOZILLA_FIVE_HOME}
mozconfig_annotate '' --with-user-appdir=.mozilla
if use moznomail; then
mozconfig_annotate "+moznomail" --disable-mailnews
fi
if use moznocompose; then
if use moznoirc && use moznomail; then
mozconfig_annotate "+moznocompose" --disable-composer
fi
fi
if use xforms; then
mozconfig_annotate "+xforms" --enable-extensions=xforms,schema-validation
fi
# Finalize and report settings
mozconfig_final
if [[ $(gcc-major-version) -lt 4 ]]; then
append-cxxflags -fno-stack-protector
fi
####################################
#
# Configure and build
#
####################################
CPPFLAGS="${CPPFLAGS} -DARON_WAS_HERE" \
CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getLD)" \
econf || die
# It would be great if we could pass these in via CPPFLAGS or CFLAGS prior
# to econf, but the quotes cause configure to fail.
sed -i -e \
's|-DARON_WAS_HERE|-DGENTOO_NSPLUGINS_DIR=\\\"/usr/'"$(get_libdir)"'/nsplugins\\\" -DGENTOO_NSBROWSER_PLUGINS_DIR=\\\"/usr/'"$(get_libdir)"'/nsbrowser/plugins\\\"|' \
"${S}"/config/autoconf.mk \
"${S}"/xpfe/global/buildconfig.html
# This removes extraneous CFLAGS from the Makefiles to reduce RAM
# requirements while compiling
edit_makefiles
emake || die
####################################
#
# Build Enigmail extension
#
####################################
if use crypt && ! use moznomail; then
emake -C "${S}"/mailnews/extensions/enigmail || die "make enigmail failed"
fi
}
src_install() {
declare MOZILLA_FIVE_HOME=/usr/$(get_libdir)/${PN}
# Most of the installation happens here
dodir "${MOZILLA_FIVE_HOME}"
cp -RL "${S}"/dist/bin/* "${D}"/"${MOZILLA_FIVE_HOME}"/ || die "cp failed"
# Create directory structure to support portage-installed extensions.
# See update_chrome() in mozilla-launcher
keepdir ${MOZILLA_FIVE_HOME}/chrome.d
keepdir ${MOZILLA_FIVE_HOME}/extensions.d
cp "${D}"${MOZILLA_FIVE_HOME}/chrome/installed-chrome.txt \
"${D}"${MOZILLA_FIVE_HOME}/chrome.d/0_base-chrome.txt
# Create /usr/bin/seamonkey
install_mozilla_launcher_stub seamonkey ${MOZILLA_FIVE_HOME}
# Install icon and .desktop for menu entry
doicon "${FILESDIR}"/icon/${PN}.png
domenu "${FILESDIR}"/icon/${PN}.desktop
# Fix icons to look the same everywhere
insinto ${MOZILLA_FIVE_HOME}/icons
doins "${S}"/widget/src/gtk/mozicon16.xpm
doins "${S}"/widget/src/gtk/mozicon50.xpm
####################################
#
# Install files necessary for applications to build against seamonkey
#
####################################
einfo "Installing includes and idl files..."
cp -LfR "${S}"/dist/include "${D}"/"${MOZILLA_FIVE_HOME}" || die "cp failed"
cp -LfR "${S}"/dist/idl "${D}"/"${MOZILLA_FIVE_HOME}" || die "cp failed"
# Fix mozilla-config and install it
exeinto ${MOZILLA_FIVE_HOME}
doexe "${S}"/build/unix/${PN}-config
# Install pkgconfig files
insinto /usr/"$(get_libdir)"/pkgconfig
doins "${S}"/build/unix/*.pc
# Install env.d snippet, which isn't necessary for running mozilla, but
# might be necessary for programs linked against firefox
doenvd "${FILESDIR}"/10${PN}
dosed "s|/usr/lib|/usr/$(get_libdir)|" /etc/env.d/10${PN}
# Install rebuild script since mozilla-bin doesn't support registration yet
exeinto ${MOZILLA_FIVE_HOME}
doexe "${FILESDIR}"/${PN}-rebuild-databases.pl
dosed -e 's|/lib/|/'"$(get_libdir)"'/|g' \
${MOZILLA_FIVE_HOME}/${PN}-rebuild-databases.pl
# Install docs
dodoc "${S}"/{LEGAL,LICENSE}
# Update Google search plugin to use UTF8 charset ...
insinto ${MOZILLA_FIVE_HOME}/searchplugins
doins "${FILESDIR}"/google.src
}
pkg_preinst() {
declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}"
# Remove entire installed instance to solve various problems,
# for example see bug 27719
rm -rf "${ROOT}"${MOZILLA_FIVE_HOME}
}
pkg_postinst() {
declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}"
# Update the component registry
MOZILLA_LIBDIR=${ROOT}${MOZILLA_FIVE_HOME} MOZILLA_LAUNCHER=${PN} \
/usr/libexec/mozilla-launcher -register
# This should be called in the postinst and postrm of all the
# mozilla, mozilla-bin, firefox, firefox-bin, thunderbird and
# thunderbird-bin ebuilds.
update_mozilla_launcher_symlinks
}
pkg_postrm() {
declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}"
# Update the component registry
if [[ -x ${MOZILLA_FIVE_HOME}/${PN}-bin ]]; then
MOZILLA_LIBDIR=${ROOT}${MOZILLA_FIVE_HOME} MOZILLA_LAUNCHER=${PN} \
/usr/libexec/mozilla-launcher -register
fi
update_mozilla_launcher_symlinks
}
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-client/seamonkey: ChangeLog seamonkey-1.1.18.ebuild
@ 2009-09-23 12:20 Jory Pratt (anarchy)
0 siblings, 0 replies; 12+ messages in thread
From: Jory Pratt (anarchy) @ 2009-09-23 12:20 UTC (permalink / raw
To: gentoo-commits
anarchy 09/09/23 12:20:20
Modified: ChangeLog seamonkey-1.1.18.ebuild
Log:
readdded seamonkey-1.1.17-fix-fno-strict-aliasing.patch to .18 ebuild
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Revision Changes Path
1.195 www-client/seamonkey/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.195&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.195&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?r1=1.194&r2=1.195
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v
retrieving revision 1.194
retrieving revision 1.195
diff -u -r1.194 -r1.195
--- ChangeLog 22 Sep 2009 03:25:22 -0000 1.194
+++ ChangeLog 23 Sep 2009 12:20:19 -0000 1.195
@@ -1,6 +1,9 @@
# ChangeLog for www-client/seamonkey
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.194 2009/09/22 03:25:22 anarchy Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.195 2009/09/23 12:20:19 anarchy Exp $
+
+ 23 Sep 2009; Jory A. Pratt <anarchy@gentoo.org> seamonkey-1.1.18.ebuild:
+ add seamonkey-1.1.17-fix-fno-strict-aliasing.patch to 1.1.18
*seamonkey-1.1.18 (22 Sep 2009)
1.2 www-client/seamonkey/seamonkey-1.1.18.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?r1=1.1&r2=1.2
Index: seamonkey-1.1.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- seamonkey-1.1.18.ebuild 22 Sep 2009 03:25:22 -0000 1.1
+++ seamonkey-1.1.18.ebuild 23 Sep 2009 12:20:19 -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/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.1 2009/09/22 03:25:22 anarchy Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.2 2009/09/23 12:20:19 anarchy Exp $
WANT_AUTOCONF="2.1"
@@ -65,6 +65,9 @@
EPATCH_FORCE="yes" \
epatch "${WORKDIR}"/patch
+ # Fix crash without -fno-strict-aliasing, bug 265642
+ epatch "${FILESDIR}/${PN}-1.1.17-fix-fno-strict-aliasing.patch"
+
# Unpack the enigmail plugin
if use crypt && ! use moznomail; then
cd "${S}"/mailnews/extensions || die
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-client/seamonkey: ChangeLog seamonkey-1.1.18.ebuild
@ 2009-09-28 14:46 Christian Faulhammer (fauli)
0 siblings, 0 replies; 12+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-09-28 14:46 UTC (permalink / raw
To: gentoo-commits
fauli 09/09/28 14:46:13
Modified: ChangeLog seamonkey-1.1.18.ebuild
Log:
stable x86, security bug 286721
(Portage version: 2.1.6.13/cvs/Linux i686)
Revision Changes Path
1.198 www-client/seamonkey/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.198&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.198&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?r1=1.197&r2=1.198
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v
retrieving revision 1.197
retrieving revision 1.198
diff -u -r1.197 -r1.198
--- ChangeLog 28 Sep 2009 03:56:21 -0000 1.197
+++ ChangeLog 28 Sep 2009 14:46:12 -0000 1.198
@@ -1,6 +1,10 @@
# ChangeLog for www-client/seamonkey
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.197 2009/09/28 03:56:21 anarchy Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.198 2009/09/28 14:46:12 fauli Exp $
+
+ 28 Sep 2009; Christian Faulhammer <fauli@gentoo.org>
+ seamonkey-1.1.18.ebuild:
+ stable x86, security bug 286721
28 Sep 2009; Jory A. Pratt <anarchy@gentoo.org>
seamonkey-2.0_beta2.ebuild, metadata.xml:
1.3 www-client/seamonkey/seamonkey-1.1.18.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?r1=1.2&r2=1.3
Index: seamonkey-1.1.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- seamonkey-1.1.18.ebuild 23 Sep 2009 12:20:19 -0000 1.2
+++ seamonkey-1.1.18.ebuild 28 Sep 2009 14:46:12 -0000 1.3
@@ -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/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.2 2009/09/23 12:20:19 anarchy Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.3 2009/09/28 14:46:12 fauli Exp $
WANT_AUTOCONF="2.1"
@@ -15,7 +15,7 @@
mirror://gentoo/${PATCH}.tar.bz2
crypt? ( !moznomail? ( http://www.mozilla-enigmail.org/download/source/enigmail-${EMVER}.tar.gz ) )"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
SLOT="0"
LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 )"
IUSE="java ldap mozdevelop moznocompose moznoirc moznomail moznoroaming postgres crypt xforms"
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-client/seamonkey: ChangeLog seamonkey-1.1.18.ebuild
@ 2009-09-28 17:44 Brent Baude (ranger)
0 siblings, 0 replies; 12+ messages in thread
From: Brent Baude (ranger) @ 2009-09-28 17:44 UTC (permalink / raw
To: gentoo-commits
ranger 09/09/28 17:44:43
Modified: ChangeLog seamonkey-1.1.18.ebuild
Log:
Marking seamonkey-1.1.18 ppc64 for bug 286721
(Portage version: 2.1.6.13/cvs/Linux ppc64)
Revision Changes Path
1.199 www-client/seamonkey/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.199&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.199&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?r1=1.198&r2=1.199
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v
retrieving revision 1.198
retrieving revision 1.199
diff -u -r1.198 -r1.199
--- ChangeLog 28 Sep 2009 14:46:12 -0000 1.198
+++ ChangeLog 28 Sep 2009 17:44:43 -0000 1.199
@@ -1,6 +1,9 @@
# ChangeLog for www-client/seamonkey
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.198 2009/09/28 14:46:12 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.199 2009/09/28 17:44:43 ranger Exp $
+
+ 28 Sep 2009; Brent Baude <ranger@gentoo.org> seamonkey-1.1.18.ebuild:
+ Marking seamonkey-1.1.18 ppc64 for bug 286721
28 Sep 2009; Christian Faulhammer <fauli@gentoo.org>
seamonkey-1.1.18.ebuild:
1.4 www-client/seamonkey/seamonkey-1.1.18.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?r1=1.3&r2=1.4
Index: seamonkey-1.1.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- seamonkey-1.1.18.ebuild 28 Sep 2009 14:46:12 -0000 1.3
+++ seamonkey-1.1.18.ebuild 28 Sep 2009 17:44:43 -0000 1.4
@@ -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/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.3 2009/09/28 14:46:12 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.4 2009/09/28 17:44:43 ranger Exp $
WANT_AUTOCONF="2.1"
@@ -15,7 +15,7 @@
mirror://gentoo/${PATCH}.tar.bz2
crypt? ( !moznomail? ( http://www.mozilla-enigmail.org/download/source/enigmail-${EMVER}.tar.gz ) )"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
SLOT="0"
LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 )"
IUSE="java ldap mozdevelop moznocompose moznoirc moznomail moznoroaming postgres crypt xforms"
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-client/seamonkey: ChangeLog seamonkey-1.1.18.ebuild
@ 2009-09-29 0:23 Jeroen Roovers (jer)
0 siblings, 0 replies; 12+ messages in thread
From: Jeroen Roovers (jer) @ 2009-09-29 0:23 UTC (permalink / raw
To: gentoo-commits
jer 09/09/29 00:23:10
Modified: ChangeLog seamonkey-1.1.18.ebuild
Log:
Stable for HPPA (bug #286721).
(Portage version: 2.2_rc42/cvs/Linux i686)
Revision Changes Path
1.200 www-client/seamonkey/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.200&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.200&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?r1=1.199&r2=1.200
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v
retrieving revision 1.199
retrieving revision 1.200
diff -u -r1.199 -r1.200
--- ChangeLog 28 Sep 2009 17:44:43 -0000 1.199
+++ ChangeLog 29 Sep 2009 00:23:09 -0000 1.200
@@ -1,6 +1,9 @@
# ChangeLog for www-client/seamonkey
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.199 2009/09/28 17:44:43 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.200 2009/09/29 00:23:09 jer Exp $
+
+ 29 Sep 2009; Jeroen Roovers <jer@gentoo.org> seamonkey-1.1.18.ebuild:
+ Stable for HPPA (bug #286721).
28 Sep 2009; Brent Baude <ranger@gentoo.org> seamonkey-1.1.18.ebuild:
Marking seamonkey-1.1.18 ppc64 for bug 286721
1.5 www-client/seamonkey/seamonkey-1.1.18.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?r1=1.4&r2=1.5
Index: seamonkey-1.1.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- seamonkey-1.1.18.ebuild 28 Sep 2009 17:44:43 -0000 1.4
+++ seamonkey-1.1.18.ebuild 29 Sep 2009 00:23:09 -0000 1.5
@@ -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/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.4 2009/09/28 17:44:43 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.5 2009/09/29 00:23:09 jer Exp $
WANT_AUTOCONF="2.1"
@@ -15,7 +15,7 @@
mirror://gentoo/${PATCH}.tar.bz2
crypt? ( !moznomail? ( http://www.mozilla-enigmail.org/download/source/enigmail-${EMVER}.tar.gz ) )"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
SLOT="0"
LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 )"
IUSE="java ldap mozdevelop moznocompose moznoirc moznomail moznoroaming postgres crypt xforms"
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-client/seamonkey: ChangeLog seamonkey-1.1.18.ebuild
@ 2009-09-29 17:20 Raul Porcel (armin76)
0 siblings, 0 replies; 12+ messages in thread
From: Raul Porcel (armin76) @ 2009-09-29 17:20 UTC (permalink / raw
To: gentoo-commits
armin76 09/09/29 17:20:19
Modified: ChangeLog seamonkey-1.1.18.ebuild
Log:
alpha/arm/ia64/sparc stable wrt #286721
(Portage version: 2.1.6.13/cvs/Linux ia64)
Revision Changes Path
1.201 www-client/seamonkey/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.201&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.201&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?r1=1.200&r2=1.201
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v
retrieving revision 1.200
retrieving revision 1.201
diff -u -r1.200 -r1.201
--- ChangeLog 29 Sep 2009 00:23:09 -0000 1.200
+++ ChangeLog 29 Sep 2009 17:20:18 -0000 1.201
@@ -1,6 +1,9 @@
# ChangeLog for www-client/seamonkey
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.200 2009/09/29 00:23:09 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.201 2009/09/29 17:20:18 armin76 Exp $
+
+ 29 Sep 2009; Raúl Porcel <armin76@gentoo.org> seamonkey-1.1.18.ebuild:
+ alpha/arm/ia64/sparc stable wrt #286721
29 Sep 2009; Jeroen Roovers <jer@gentoo.org> seamonkey-1.1.18.ebuild:
Stable for HPPA (bug #286721).
1.6 www-client/seamonkey/seamonkey-1.1.18.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?r1=1.5&r2=1.6
Index: seamonkey-1.1.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- seamonkey-1.1.18.ebuild 29 Sep 2009 00:23:09 -0000 1.5
+++ seamonkey-1.1.18.ebuild 29 Sep 2009 17:20:18 -0000 1.6
@@ -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/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.5 2009/09/29 00:23:09 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.6 2009/09/29 17:20:18 armin76 Exp $
WANT_AUTOCONF="2.1"
@@ -15,7 +15,7 @@
mirror://gentoo/${PATCH}.tar.bz2
crypt? ( !moznomail? ( http://www.mozilla-enigmail.org/download/source/enigmail-${EMVER}.tar.gz ) )"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 arm hppa ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
SLOT="0"
LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 )"
IUSE="java ldap mozdevelop moznocompose moznoirc moznomail moznoroaming postgres crypt xforms"
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-client/seamonkey: ChangeLog seamonkey-1.1.18.ebuild
@ 2009-09-29 22:22 Markus Meier (maekke)
0 siblings, 0 replies; 12+ messages in thread
From: Markus Meier (maekke) @ 2009-09-29 22:22 UTC (permalink / raw
To: gentoo-commits
maekke 09/09/29 22:22:52
Modified: ChangeLog seamonkey-1.1.18.ebuild
Log:
amd64 stable, bug #286721
(Portage version: 2.2_rc42/cvs/Linux x86_64)
Revision Changes Path
1.202 www-client/seamonkey/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.202&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.202&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?r1=1.201&r2=1.202
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v
retrieving revision 1.201
retrieving revision 1.202
diff -u -r1.201 -r1.202
--- ChangeLog 29 Sep 2009 17:20:18 -0000 1.201
+++ ChangeLog 29 Sep 2009 22:22:51 -0000 1.202
@@ -1,6 +1,9 @@
# ChangeLog for www-client/seamonkey
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.201 2009/09/29 17:20:18 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.202 2009/09/29 22:22:51 maekke Exp $
+
+ 29 Sep 2009; Markus Meier <maekke@gentoo.org> seamonkey-1.1.18.ebuild:
+ amd64 stable, bug #286721
29 Sep 2009; Raúl Porcel <armin76@gentoo.org> seamonkey-1.1.18.ebuild:
alpha/arm/ia64/sparc stable wrt #286721
1.7 www-client/seamonkey/seamonkey-1.1.18.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?r1=1.6&r2=1.7
Index: seamonkey-1.1.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- seamonkey-1.1.18.ebuild 29 Sep 2009 17:20:18 -0000 1.6
+++ seamonkey-1.1.18.ebuild 29 Sep 2009 22:22:51 -0000 1.7
@@ -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/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.6 2009/09/29 17:20:18 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.7 2009/09/29 22:22:51 maekke Exp $
WANT_AUTOCONF="2.1"
@@ -15,7 +15,7 @@
mirror://gentoo/${PATCH}.tar.bz2
crypt? ( !moznomail? ( http://www.mozilla-enigmail.org/download/source/enigmail-${EMVER}.tar.gz ) )"
-KEYWORDS="alpha ~amd64 arm hppa ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
SLOT="0"
LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 )"
IUSE="java ldap mozdevelop moznocompose moznoirc moznomail moznoroaming postgres crypt xforms"
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-client/seamonkey: ChangeLog seamonkey-1.1.18.ebuild
@ 2009-10-03 16:11 Joseph Jezak (josejx)
0 siblings, 0 replies; 12+ messages in thread
From: Joseph Jezak (josejx) @ 2009-10-03 16:11 UTC (permalink / raw
To: gentoo-commits
josejx 09/10/03 16:11:26
Modified: ChangeLog seamonkey-1.1.18.ebuild
Log:
Marked ppc stable for bug #286721.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Revision Changes Path
1.203 www-client/seamonkey/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.203&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.203&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/ChangeLog?r1=1.202&r2=1.203
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v
retrieving revision 1.202
retrieving revision 1.203
diff -u -r1.202 -r1.203
--- ChangeLog 29 Sep 2009 22:22:51 -0000 1.202
+++ ChangeLog 3 Oct 2009 16:11:25 -0000 1.203
@@ -1,6 +1,9 @@
# ChangeLog for www-client/seamonkey
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.202 2009/09/29 22:22:51 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.203 2009/10/03 16:11:25 josejx Exp $
+
+ 03 Oct 2009; Joseph Jezak <josejx@gentoo.org> seamonkey-1.1.18.ebuild:
+ Marked ppc stable for bug #286721.
29 Sep 2009; Markus Meier <maekke@gentoo.org> seamonkey-1.1.18.ebuild:
amd64 stable, bug #286721
1.8 www-client/seamonkey/seamonkey-1.1.18.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?r1=1.7&r2=1.8
Index: seamonkey-1.1.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- seamonkey-1.1.18.ebuild 29 Sep 2009 22:22:51 -0000 1.7
+++ seamonkey-1.1.18.ebuild 3 Oct 2009 16:11:25 -0000 1.8
@@ -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/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.7 2009/09/29 22:22:51 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.8 2009/10/03 16:11:25 josejx Exp $
WANT_AUTOCONF="2.1"
@@ -15,7 +15,7 @@
mirror://gentoo/${PATCH}.tar.bz2
crypt? ( !moznomail? ( http://www.mozilla-enigmail.org/download/source/enigmail-${EMVER}.tar.gz ) )"
-KEYWORDS="alpha amd64 arm hppa ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
SLOT="0"
LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 )"
IUSE="java ldap mozdevelop moznocompose moznoirc moznomail moznoroaming postgres crypt xforms"
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-client/seamonkey: ChangeLog seamonkey-1.1.18.ebuild
@ 2010-06-11 14:45 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 12+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-06-11 14:45 UTC (permalink / raw
To: gentoo-commits
ssuominen 10/06/11 14:45:56
Modified: ChangeLog seamonkey-1.1.18.ebuild
Log:
Fix building with libpng14 wrt #323513 by Stephen Lewis. Enjoy your remotely exploitable browser with state of the art png...
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.218 www-client/seamonkey/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.218&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.218&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/ChangeLog?r1=1.217&r2=1.218
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v
retrieving revision 1.217
retrieving revision 1.218
diff -u -r1.217 -r1.218
--- ChangeLog 9 Apr 2010 03:56:59 -0000 1.217
+++ ChangeLog 11 Jun 2010 14:45:56 -0000 1.218
@@ -1,6 +1,10 @@
# ChangeLog for www-client/seamonkey
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.217 2010/04/09 03:56:59 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.218 2010/06/11 14:45:56 ssuominen Exp $
+
+ 11 Jun 2010; Samuli Suominen <ssuominen@gentoo.org>
+ seamonkey-1.1.18.ebuild, +files/seamonkey-1.1.18-libpng14.patch:
+ Fix building with libpng14 wrt #323513 by Stephen Lewis.
*seamonkey-2.0.4-r1 (09 Apr 2010)
1.9 www-client/seamonkey/seamonkey-1.1.18.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?r1=1.8&r2=1.9
Index: seamonkey-1.1.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- seamonkey-1.1.18.ebuild 3 Oct 2009 16:11:25 -0000 1.8
+++ seamonkey-1.1.18.ebuild 11 Jun 2010 14:45:56 -0000 1.9
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.8 2009/10/03 16:11:25 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.9 2010/06/11 14:45:56 ssuominen Exp $
WANT_AUTOCONF="2.1"
@@ -65,9 +65,11 @@
EPATCH_FORCE="yes" \
epatch "${WORKDIR}"/patch
- # Fix crash without -fno-strict-aliasing, bug 265642
+ # Fix crash without -fno-strict-aliasing, bug 265642
epatch "${FILESDIR}/${PN}-1.1.17-fix-fno-strict-aliasing.patch"
+ epatch "${FILESDIR}"/${P}-libpng14.patch
+
# Unpack the enigmail plugin
if use crypt && ! use moznomail; then
cd "${S}"/mailnews/extensions || die
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-client/seamonkey: ChangeLog seamonkey-1.1.18.ebuild
@ 2010-06-17 22:00 Patrick Lauer (patrick)
0 siblings, 0 replies; 12+ messages in thread
From: Patrick Lauer (patrick) @ 2010-06-17 22:00 UTC (permalink / raw
To: gentoo-commits
patrick 10/06/17 22:00:31
Modified: ChangeLog seamonkey-1.1.18.ebuild
Log:
Migrating away from deprecated postgres virtuals
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.220 www-client/seamonkey/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.220&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.220&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/ChangeLog?r1=1.219&r2=1.220
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v
retrieving revision 1.219
retrieving revision 1.220
diff -u -r1.219 -r1.220
--- ChangeLog 16 Jun 2010 18:00:43 -0000 1.219
+++ ChangeLog 17 Jun 2010 22:00:30 -0000 1.220
@@ -1,6 +1,9 @@
# ChangeLog for www-client/seamonkey
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.219 2010/06/16 18:00:43 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.220 2010/06/17 22:00:30 patrick Exp $
+
+ 17 Jun 2010; Patrick Lauer <patrick@gentoo.org> seamonkey-1.1.18.ebuild:
+ Migrating away from deprecated postgres virtuals
*seamonkey-2.0.4-r2 (16 Jun 2010)
1.10 www-client/seamonkey/seamonkey-1.1.18.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?r1=1.9&r2=1.10
Index: seamonkey-1.1.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- seamonkey-1.1.18.ebuild 11 Jun 2010 14:45:56 -0000 1.9
+++ seamonkey-1.1.18.ebuild 17 Jun 2010 22:00:31 -0000 1.10
@@ -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/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.9 2010/06/11 14:45:56 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.10 2010/06/17 22:00:31 patrick Exp $
WANT_AUTOCONF="2.1"
@@ -29,7 +29,7 @@
DEPEND="${RDEPEND}
java? ( >=dev-java/java-config-0.2.0 )
dev-lang/perl
- postgres? ( >=virtual/postgresql-server-7.2.0 )"
+ postgres? ( dev-db/postgresql-server )"
S="${WORKDIR}/mozilla"
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-client/seamonkey: ChangeLog seamonkey-1.1.18.ebuild
@ 2010-07-04 20:12 Lars Wendler (polynomial-c)
0 siblings, 0 replies; 12+ messages in thread
From: Lars Wendler (polynomial-c) @ 2010-07-04 20:12 UTC (permalink / raw
To: gentoo-commits
polynomial-c 10/07/04 20:12:08
Modified: ChangeLog seamonkey-1.1.18.ebuild
Log:
Removed KEYWORDS for which we now have stable ones in seamonkey-2.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.227 www-client/seamonkey/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.227&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.227&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/ChangeLog?r1=1.226&r2=1.227
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v
retrieving revision 1.226
retrieving revision 1.227
diff -u -r1.226 -r1.227
--- ChangeLog 26 Jun 2010 15:18:19 -0000 1.226
+++ ChangeLog 4 Jul 2010 20:12:08 -0000 1.227
@@ -1,6 +1,10 @@
# ChangeLog for www-client/seamonkey
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.226 2010/06/26 15:18:19 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.227 2010/07/04 20:12:08 polynomial-c Exp $
+
+ 04 Jul 2010; Lars Wendler <polynomial-c@gentoo.org>
+ seamonkey-1.1.18.ebuild:
+ Removed KEYWORDS for which we now have stable ones in seamonkey-2.
26 Jun 2010; Raúl Porcel <armin76@gentoo.org> seamonkey-2.0.5.ebuild:
alpha/ia64/sparc stable wrt #324735
1.11 www-client/seamonkey/seamonkey-1.1.18.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?r1=1.10&r2=1.11
Index: seamonkey-1.1.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- seamonkey-1.1.18.ebuild 17 Jun 2010 22:00:31 -0000 1.10
+++ seamonkey-1.1.18.ebuild 4 Jul 2010 20:12:08 -0000 1.11
@@ -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/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.10 2010/06/17 22:00:31 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.11 2010/07/04 20:12:08 polynomial-c Exp $
WANT_AUTOCONF="2.1"
@@ -15,7 +15,7 @@
mirror://gentoo/${PATCH}.tar.bz2
crypt? ( !moznomail? ( http://www.mozilla-enigmail.org/download/source/enigmail-${EMVER}.tar.gz ) )"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="arm ppc ppc64 ~x86-fbsd"
SLOT="0"
LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 )"
IUSE="java ldap mozdevelop moznocompose moznoirc moznomail moznoroaming postgres crypt xforms"
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-client/seamonkey: ChangeLog seamonkey-1.1.18.ebuild
@ 2010-07-08 21:02 Lars Wendler (polynomial-c)
0 siblings, 0 replies; 12+ messages in thread
From: Lars Wendler (polynomial-c) @ 2010-07-08 21:02 UTC (permalink / raw
To: gentoo-commits
polynomial-c 10/07/08 21:02:22
Modified: ChangeLog seamonkey-1.1.18.ebuild
Log:
Removed remaining KEYWORDS for which we now have stable ones in seamonkey-2.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.231 www-client/seamonkey/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.231&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/ChangeLog?rev=1.231&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/ChangeLog?r1=1.230&r2=1.231
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v
retrieving revision 1.230
retrieving revision 1.231
diff -u -r1.230 -r1.231
--- ChangeLog 8 Jul 2010 20:17:16 -0000 1.230
+++ ChangeLog 8 Jul 2010 21:02:22 -0000 1.231
@@ -1,6 +1,11 @@
# ChangeLog for www-client/seamonkey
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.230 2010/07/08 20:17:16 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/ChangeLog,v 1.231 2010/07/08 21:02:22 polynomial-c Exp $
+
+ 08 Jul 2010; Lars Wendler <polynomial-c@gentoo.org>
+ seamonkey-1.1.18.ebuild:
+ Removed remaining KEYWORDS for which we now have stable ones in
+ seamonkey-2.
08 Jul 2010; Brent Baude <ranger@gentoo.org> seamonkey-2.0.5.ebuild:
Marking seamonkey-2.0.5 ppc64 and ppc for bug 324735
1.13 www-client/seamonkey/seamonkey-1.1.18.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild?r1=1.12&r2=1.13
Index: seamonkey-1.1.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- seamonkey-1.1.18.ebuild 4 Jul 2010 20:48:04 -0000 1.12
+++ seamonkey-1.1.18.ebuild 8 Jul 2010 21:02:22 -0000 1.13
@@ -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/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.12 2010/07/04 20:48:04 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-1.1.18.ebuild,v 1.13 2010/07/08 21:02:22 polynomial-c Exp $
WANT_AUTOCONF="2.1"
@@ -15,7 +15,7 @@
mirror://gentoo/${PATCH}.tar.bz2
crypt? ( !moznomail? ( http://www.mozilla-enigmail.org/download/source/enigmail-${EMVER}.tar.gz ) )"
-KEYWORDS="arm ppc ppc64"
+KEYWORDS="arm"
SLOT="0"
LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 )"
IUSE="java ldap mozdevelop moznocompose moznoirc moznomail moznoroaming postgres crypt xforms"
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2010-07-08 21:02 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-29 0:23 [gentoo-commits] gentoo-x86 commit in www-client/seamonkey: ChangeLog seamonkey-1.1.18.ebuild Jeroen Roovers (jer)
-- strict thread matches above, loose matches on Subject: below --
2010-07-08 21:02 Lars Wendler (polynomial-c)
2010-07-04 20:12 Lars Wendler (polynomial-c)
2010-06-17 22:00 Patrick Lauer (patrick)
2010-06-11 14:45 Samuli Suominen (ssuominen)
2009-10-03 16:11 Joseph Jezak (josejx)
2009-09-29 22:22 Markus Meier (maekke)
2009-09-29 17:20 Raul Porcel (armin76)
2009-09-28 17:44 Brent Baude (ranger)
2009-09-28 14:46 Christian Faulhammer (fauli)
2009-09-23 12:20 Jory Pratt (anarchy)
2009-09-22 3:25 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