From: "Raul Porcel (armin76)" <armin76@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/xulrunner: ChangeLog xulrunner-1.8.1.15.ebuild
Date: Wed, 02 Jul 2008 21:02:10 +0000 [thread overview]
Message-ID: <E1KE9Ss-0007Zt-BO@stork.gentoo.org> (raw)
armin76 08/07/02 21:02:10
Modified: ChangeLog
Added: xulrunner-1.8.1.15.ebuild
Log:
Version bump
(Portage version: 2.1.4.4)
Revision Changes Path
1.123 net-libs/xulrunner/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/xulrunner/ChangeLog?rev=1.123&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/xulrunner/ChangeLog?rev=1.123&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/xulrunner/ChangeLog?r1=1.122&r2=1.123
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/xulrunner/ChangeLog,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- ChangeLog 29 Jun 2008 15:39:55 -0000 1.122
+++ ChangeLog 2 Jul 2008 21:02:09 -0000 1.123
@@ -1,6 +1,11 @@
# ChangeLog for net-libs/xulrunner
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/xulrunner/ChangeLog,v 1.122 2008/06/29 15:39:55 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/xulrunner/ChangeLog,v 1.123 2008/07/02 21:02:09 armin76 Exp $
+
+*xulrunner-1.8.1.15 (02 Jul 2008)
+
+ 02 Jul 2008; Raúl Porcel <armin76@gentoo.org> +xulrunner-1.8.1.15.ebuild:
+ Version bump
29 Jun 2008; Petteri Räty <betelgeuse@gentoo.org>
xulrunner-1.8.1.14.ebuild, xulrunner-1.9-r2.ebuild:
1.1 net-libs/xulrunner/xulrunner-1.8.1.15.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/xulrunner/xulrunner-1.8.1.15.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/xulrunner/xulrunner-1.8.1.15.ebuild?rev=1.1&content-type=text/plain
Index: xulrunner-1.8.1.15.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/xulrunner/xulrunner-1.8.1.15.ebuild,v 1.1 2008/07/02 21:02:09 armin76 Exp $
WANT_AUTOCONF="2.1"
inherit flag-o-matic toolchain-funcs eutils makeedit multilib autotools mozconfig-2 java-pkg-opt-2
PATCH="${PN}-1.8.1.13-patches-0.1"
DESCRIPTION="Mozilla runtime package that can be used to bootstrap XUL+XPCOM applications"
HOMEPAGE="http://developer.mozilla.org/en/docs/XULRunner"
SRC_URI="mirror://gentoo/${P}-source.tar.bz2
mirror://gentoo/${PATCH}.tar.bz2"
SLOT="1.8"
LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 )"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE=""
RDEPEND=">=sys-libs/zlib-1.1.4
>=sys-devel/binutils-2.16.1
>=dev-libs/nss-3.11.5
>=dev-libs/nspr-4.6.5-r1
java? ( >=virtual/jre-1.4 )"
DEPEND="java? ( >=virtual/jdk-1.4 )
${RDEPEND}
dev-util/pkgconfig"
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=xulrunner
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
java-pkg-opt-2_pkg_setup
}
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
eautoreconf || die "failed running eautoreconf"
}
src_compile() {
declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}"
####################################
#
# mozconfig, CFLAGS and CXXFLAGS setup
#
####################################
mozconfig_init
mozconfig_config
mozconfig_annotate '' --enable-extensions="default,cookie,permissions,spellcheck"
mozconfig_annotate '' --enable-native-uconv
mozconfig_annotate '' --enable-image-encoder=all
mozconfig_annotate '' --enable-canvas
#mozconfig_annotate '' --enable-js-binary
mozconfig_annotate '' --enable-embedding-tests
mozconfig_annotate '' --with-system-nspr
mozconfig_annotate '' --with-system-nss
mozconfig_annotate '' --with-system-bz2
mozconfig_annotate '' --enable-jsd
mozconfig_annotate '' --enable-xpctools
# Bug 60668: Galeon doesn't build without oji enabled, so enable it
# regardless of java setting.
mozconfig_annotate '' --enable-oji --enable-mathml
mozconfig_annotate '' --with-default-mozilla-five-home=${MOZILLA_FIVE_HOME}
#disable java
if ! use java ; then
mozconfig_annotate '-java' --disable-javaxpcom
fi
# Finalize and report settings
mozconfig_final
# -fstack-protector breaks us
if gcc-version ge 4 1; then
gcc-specs-ssp && append-flags -fno-stack-protector
else
gcc-specs-ssp && append-flags -fno-stack-protector-all
fi
filter-flags -fstack-protector -fstack-protector-all
####################################
#
# 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}"/toolkit/content/buildconfig.html
# This removes extraneous CFLAGS from the Makefiles to reduce RAM
# requirements while compiling
edit_makefiles
emake || die "emake failed"
}
src_install() {
declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}"
emake DESTDIR="${D}" install || die "emake install failed"
X_DATE=`date +%Y%m%d`
# Add Gentoo package version to preferences - copied from debian rules
echo // Gentoo package version \
> "${D}"${MOZILLA_FIVE_HOME}/defaults/pref/vendor.js
echo "pref(\"general.useragent.product\",\"Gecko\");" \
>> "${D}"${MOZILLA_FIVE_HOME}/defaults/pref/vendor.js
echo "pref(\"general.useragent.productSub\",\"${X_DATE}\");" \
>> "${D}"${MOZILLA_FIVE_HOME}/defaults/pref/vendor.js
echo "pref(\"general.useragent.productComment\",\"Gentoo\");" \
>> "${D}"${MOZILLA_FIVE_HOME}/defaults/pref/vendor.js
if use java ; then
java-pkg_dojar "${D}"${MOZILLA_FIVE_HOME}/javaxpcom.jar
rm -f "${D}"${MOZILLA_FIVE_HOME}/javaxpcom.jar
fi
# xulrunner registration, the gentoo way
insinto /etc/gre.d
newins "${FILESDIR}"/${PN}.conf ${PV}.conf
sed -i -e \
"s|version|${PV}|
s|instpath|${MOZILLA_FIVE_HOME}|" \
"${D}"/etc/gre.d/${PV}.conf
}
pkg_postinst() {
elog "Please remember to rebuild any packages that you have built"
elog "against xulrunner. Some packages might be broken by the upgrade; if this"
elog "is the case, please search at http://bugs.gentoo.org and open a new bug"
elog "if one does not exist."
}
--
gentoo-commits@lists.gentoo.org mailing list
next reply other threads:[~2008-07-02 21:02 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-07-02 21:02 Raul Porcel (armin76) [this message]
-- strict thread matches above, loose matches on Subject: below --
2008-07-04 8:10 [gentoo-commits] gentoo-x86 commit in net-libs/xulrunner: ChangeLog xulrunner-1.8.1.15.ebuild Christian Faulhammer (opfer)
2008-07-04 15:12 Jeroen Roovers (jer)
2008-07-04 16:54 Raul Porcel (armin76)
2008-07-04 21:38 Markus Meier (maekke)
2008-07-05 16:03 Brent Baude (ranger)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1KE9Ss-0007Zt-BO@stork.gentoo.org \
--to=armin76@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox