| 1 |
# Copyright 1999-2013 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-2.15.1.ebuild,v 1.4 2013/02/24 19:13:03 anarchy Exp $ |
| 4 |
|
| 5 |
EAPI="3" |
| 6 |
WANT_AUTOCONF="2.1" |
| 7 |
|
| 8 |
# This list can be updated with scripts/get_langs.sh from the mozilla overlay |
| 9 |
MOZ_LANGS=(be ca cs de en en-GB en-US es-AR es-ES fi fr gl hu it ja lt nb-NO nl |
| 10 |
pl pt-PT ru sk sv-SE tr uk zh-CN zh-TW) |
| 11 |
|
| 12 |
MOZ_PV="${PV/_pre*}" |
| 13 |
MOZ_PV="${MOZ_PV/_alpha/a}" |
| 14 |
MOZ_PV="${MOZ_PV/_beta/b}" |
| 15 |
MOZ_PV="${MOZ_PV/_rc/rc}" |
| 16 |
MOZ_P="${P}" |
| 17 |
MY_MOZ_P="${PN}-${MOZ_PV}" |
| 18 |
|
| 19 |
if [[ ${PV} == *_pre* ]] ; then |
| 20 |
MOZ_FTP_URI="ftp://ftp.mozilla.org/pub/${PN}/candidates/${MOZ_PV}-candidates/build${PV##*_pre}" |
| 21 |
MOZ_LANGPACK_PREFIX="linux-i686/xpi/" |
| 22 |
# And the langpack stuff stays at eclass defaults |
| 23 |
else |
| 24 |
MOZ_FTP_URI="ftp://ftp.mozilla.org/pub/${PN}/releases/${MOZ_PV}" |
| 25 |
MOZ_LANGPACK_PREFIX="langpack/${MY_MOZ_P}." |
| 26 |
MOZ_LANGPACK_SUFFIX=".langpack.xpi" |
| 27 |
fi |
| 28 |
|
| 29 |
inherit check-reqs flag-o-matic toolchain-funcs eutils mozconfig-3 multilib pax-utils fdo-mime autotools mozextension nsplugins mozlinguas |
| 30 |
|
| 31 |
PATCHFF="firefox-18.0-patches-0.7" |
| 32 |
PATCH="${PN}-2.14-patches-01" |
| 33 |
EMVER="1.5.0" |
| 34 |
|
| 35 |
DESCRIPTION="Seamonkey Web Browser" |
| 36 |
HOMEPAGE="http://www.seamonkey-project.org" |
| 37 |
|
| 38 |
if [[ ${PV} == *_pre* ]] ; then |
| 39 |
# pre-releases. No need for arch teams to change KEYWORDS here. |
| 40 |
|
| 41 |
KEYWORDS="" |
| 42 |
else |
| 43 |
# This is where arch teams should change the KEYWORDS. |
| 44 |
|
| 45 |
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86" |
| 46 |
fi |
| 47 |
|
| 48 |
SLOT="0" |
| 49 |
LICENSE="MPL-2.0 GPL-2 LGPL-2.1" |
| 50 |
IUSE="+chatzilla +crypt gstreamer +ipc +jit +roaming system-jpeg system-sqlite" |
| 51 |
|
| 52 |
SRC_URI+="${SRC_URI} |
| 53 |
${MOZ_FTP_URI}/source/${MY_MOZ_P}.source.tar.bz2 -> ${P}.source.tar.bz2 |
| 54 |
http://dev.gentoo.org/~anarchy/mozilla/patchsets/${PATCHFF}.tar.xz |
| 55 |
http://dev.gentoo.org/~polynomial-c/mozilla/patchsets/${PATCH}.tar.xz |
| 56 |
crypt? ( http://www.mozilla-enigmail.org/download/source/enigmail-${EMVER}.tar.gz )" |
| 57 |
|
| 58 |
ASM_DEPEND=">=dev-lang/yasm-1.1" |
| 59 |
|
| 60 |
# Mesa 7.10 needed for WebGL + bugfixes |
| 61 |
RDEPEND=">=sys-devel/binutils-2.16.1 |
| 62 |
>=dev-libs/nss-3.14.1 |
| 63 |
>=dev-libs/nspr-4.9.4 |
| 64 |
>=dev-libs/glib-2.26:2 |
| 65 |
>=media-libs/mesa-7.10 |
| 66 |
>=media-libs/libpng-1.5.11[apng] |
| 67 |
>=media-libs/libvpx-1.0.0 |
| 68 |
>=x11-libs/cairo-1.10 |
| 69 |
>=x11-libs/pango-1.14.0 |
| 70 |
>=x11-libs/gtk+-2.14:2 |
| 71 |
virtual/libffi |
| 72 |
gstreamer? ( |
| 73 |
>=media-libs/gstreamer-0.10.33:0.10 |
| 74 |
>=media-libs/gst-plugins-base-0.10.33:0.10 |
| 75 |
) |
| 76 |
system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) |
| 77 |
system-sqlite? ( >=dev-db/sqlite-3.7.14.1[fts3,secure-delete,threadsafe,unlock-notify,debug=] ) |
| 78 |
crypt? ( >=app-crypt/gnupg-1.4 ) |
| 79 |
kernel_linux? ( media-libs/alsa-lib ) |
| 80 |
selinux? ( sec-policy/selinux-mozilla )" |
| 81 |
|
| 82 |
DEPEND="${RDEPEND} |
| 83 |
!elibc_glibc? ( dev-libs/libexecinfo ) |
| 84 |
virtual/pkgconfig |
| 85 |
amd64? ( ${ASM_DEPEND} |
| 86 |
virtual/opengl ) |
| 87 |
x86? ( ${ASM_DEPEND} |
| 88 |
virtual/opengl )" |
| 89 |
|
| 90 |
if [[ ${PV} == *beta* ]] ; then |
| 91 |
S="${WORKDIR}/comm-beta" |
| 92 |
else |
| 93 |
S="${WORKDIR}/comm-release" |
| 94 |
fi |
| 95 |
|
| 96 |
src_unpack() { |
| 97 |
unpack ${A} |
| 98 |
|
| 99 |
# Unpack language packs |
| 100 |
mozlinguas_src_unpack |
| 101 |
} |
| 102 |
|
| 103 |
pkg_setup() { |
| 104 |
if [[ ${PV} == *_pre* ]] ; then |
| 105 |
ewarn "You're using an unofficial release of ${PN}. Don't file any bug in" |
| 106 |
ewarn "Gentoo's Bugtracker against this package in case it breaks for you." |
| 107 |
ewarn "Those belong to upstream: https://bugzilla.mozilla.org" |
| 108 |
fi |
| 109 |
|
| 110 |
moz_pkgsetup |
| 111 |
|
| 112 |
# Ensure we have enough disk space to compile |
| 113 |
if use debug || use test ; then |
| 114 |
CHECKREQS_DISK_BUILD="8G" |
| 115 |
else |
| 116 |
CHECKREQS_DISK_BUILD="4G" |
| 117 |
fi |
| 118 |
check-reqs_pkg_setup |
| 119 |
} |
| 120 |
|
| 121 |
src_prepare() { |
| 122 |
# Apply our patches |
| 123 |
EPATCH_SUFFIX="patch" \ |
| 124 |
EPATCH_FORCE="yes" \ |
| 125 |
epatch "${WORKDIR}/seamonkey" |
| 126 |
|
| 127 |
# browser patches go here |
| 128 |
pushd "${S}"/mozilla &>/dev/null || die |
| 129 |
EPATCH_EXCLUDE="2000-firefox_gentoo_install_dirs.patch |
| 130 |
8007_revert_bug_677092.patch" \ |
| 131 |
EPATCH_SUFFIX="patch" \ |
| 132 |
EPATCH_FORCE="yes" \ |
| 133 |
epatch "${WORKDIR}/firefox" |
| 134 |
popd &>/dev/null || die |
| 135 |
|
| 136 |
# Shell scripts sometimes contain DOS line endings; bug 391889 |
| 137 |
grep -rlZ --include="*.sh" $'\r$' . | |
| 138 |
while read -r -d $'\0' file ; do |
| 139 |
einfo edos2unix "${file}" |
| 140 |
edos2unix "${file}" || die |
| 141 |
done |
| 142 |
|
| 143 |
# Allow user to apply any additional patches without modifing ebuild |
| 144 |
epatch_user |
| 145 |
|
| 146 |
if use crypt ; then |
| 147 |
mv "${WORKDIR}"/enigmail "${S}"/mailnews/extensions/enigmail |
| 148 |
#cd "${S}"/mailnews/extensions/enigmail || die |
| 149 |
#cd "${S}" |
| 150 |
fi |
| 151 |
|
| 152 |
local ms="${S}/mozilla" |
| 153 |
|
| 154 |
# Enable gnomebreakpad |
| 155 |
if use debug ; then |
| 156 |
sed -i -e "s:GNOME_DISABLE_CRASH_DIALOG=1:GNOME_DISABLE_CRASH_DIALOG=0:g" \ |
| 157 |
"${ms}"/build/unix/run-mozilla.sh || die "sed failed!" |
| 158 |
fi |
| 159 |
|
| 160 |
# Disable gnomevfs extension |
| 161 |
sed -i -e "s:gnomevfs::" "${S}"/suite/confvars.sh \ |
| 162 |
-e "s:gnomevfs::" "${ms}"/browser/confvars.sh \ |
| 163 |
-e "s:gnomevfs::" "${ms}"/xulrunner/confvars.sh \ |
| 164 |
|| die "Failed to remove gnomevfs extension" |
| 165 |
|
| 166 |
# Ensure that are plugins dir is enabled as default |
| 167 |
sed -i -e "s:/usr/lib/mozilla/plugins:/usr/$(get_libdir)/nsbrowser/plugins:" \ |
| 168 |
"${ms}"/xpcom/io/nsAppFileLocationProvider.cpp || die "sed failed to replace plugin path!" |
| 169 |
|
| 170 |
# Don't exit with error when some libs are missing which we have in |
| 171 |
# system. |
| 172 |
sed '/^MOZ_PKG_FATAL_WARNINGS/s@= 1@= 0@' \ |
| 173 |
-i "${S}"/suite/installer/Makefile.in || die |
| 174 |
# Don't error out when there's no files to be removed: |
| 175 |
sed 's@\(xargs rm\)$@\1 -f@' \ |
| 176 |
-i "${ms}"/toolkit/mozapps/installer/packager.mk || die |
| 177 |
|
| 178 |
eautoreconf |
| 179 |
cd "${S}"/mozilla |
| 180 |
eautoconf |
| 181 |
} |
| 182 |
|
| 183 |
src_configure() { |
| 184 |
MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}" |
| 185 |
MEXTENSIONS="default" |
| 186 |
|
| 187 |
#################################### |
| 188 |
# |
| 189 |
# mozconfig, CFLAGS and CXXFLAGS setup |
| 190 |
# |
| 191 |
#################################### |
| 192 |
|
| 193 |
mozconfig_init |
| 194 |
mozconfig_config |
| 195 |
|
| 196 |
# It doesn't compile on alpha without this LDFLAGS |
| 197 |
use alpha && append-ldflags "-Wl,--no-relax" |
| 198 |
|
| 199 |
if use chatzilla ; then |
| 200 |
MEXTENSIONS+=",irc" |
| 201 |
else |
| 202 |
MEXTENSIONS+=",-irc" |
| 203 |
fi |
| 204 |
if ! use roaming ; then |
| 205 |
MEXTENSIONS+=",-sroaming" |
| 206 |
fi |
| 207 |
|
| 208 |
# We must force enable jemalloc 3 threw .mozconfig |
| 209 |
echo "export MOZ_JEMALLOC=1" >> ${S}/.mozconfig |
| 210 |
|
| 211 |
mozconfig_annotate '' --prefix="${EPREFIX}"/usr |
| 212 |
mozconfig_annotate '' --libdir="${EPREFIX}"/usr/$(get_libdir) |
| 213 |
mozconfig_annotate '' --enable-extensions="${MEXTENSIONS}" |
| 214 |
mozconfig_annotate '' --disable-gconf |
| 215 |
mozconfig_annotate '' --enable-jsd |
| 216 |
mozconfig_annotate '' --enable-canvas |
| 217 |
mozconfig_annotate '' --with-default-mozilla-five-home=${MOZILLA_FIVE_HOME} |
| 218 |
mozconfig_annotate '' --enable-system-ffi |
| 219 |
mozconfig_annotate '' --with-system-png |
| 220 |
mozconfig_annotate '' --target="${CTARGET:-${CHOST}}" |
| 221 |
mozconfig_annotate '' --enable-safe-browsing |
| 222 |
mozconfig_annotate '' --build="${CTARGET:-${CHOST}}" |
| 223 |
|
| 224 |
mozconfig_use_enable gstreamer |
| 225 |
mozconfig_use_enable system-sqlite |
| 226 |
mozconfig_use_with system-jpeg |
| 227 |
# Feature is know to cause problems on hardened |
| 228 |
mozconfig_use_enable jit methodjit |
| 229 |
mozconfig_use_enable jit tracejit |
| 230 |
|
| 231 |
# Causes breakage, extremely experimental feature still in development |
| 232 |
use ppc64 && mozconfig_annotate '' --disable-ion |
| 233 |
|
| 234 |
# Use an objdir to keep things organized. |
| 235 |
echo "mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/seamonk" \ |
| 236 |
>> "${S}"/.mozconfig |
| 237 |
|
| 238 |
# Finalize and report settings |
| 239 |
mozconfig_final |
| 240 |
|
| 241 |
# Work around breakage in makeopts with --no-print-directory |
| 242 |
MAKEOPTS="${MAKEOPTS/--no-print-directory/}" |
| 243 |
|
| 244 |
if [[ $(gcc-major-version) -lt 4 ]] ; then |
| 245 |
append-cxxflags -fno-stack-protector |
| 246 |
elif [[ $(gcc-major-version) -gt 4 || $(gcc-minor-version) -gt 3 ]] ; then |
| 247 |
if use amd64 || use x86 ; then |
| 248 |
append-flags -mno-avx |
| 249 |
fi |
| 250 |
fi |
| 251 |
} |
| 252 |
|
| 253 |
src_compile() { |
| 254 |
CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getLD)" \ |
| 255 |
MOZ_MAKE_FLAGS="${MAKEOPTS}" \ |
| 256 |
emake -f client.mk || die |
| 257 |
|
| 258 |
# Only build enigmail extension if conditions are met. |
| 259 |
if use crypt ; then |
| 260 |
cd "${S}"/mailnews/extensions/enigmail || die |
| 261 |
./makemake -r 2&> /dev/null |
| 262 |
cd "${S}"/seamonk/mailnews/extensions/enigmail |
| 263 |
emake || die "make enigmail failed" |
| 264 |
emake xpi || die "make enigmail xpi failed" |
| 265 |
fi |
| 266 |
} |
| 267 |
|
| 268 |
src_install() { |
| 269 |
MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}" |
| 270 |
local emid obj_dir="seamonk" |
| 271 |
cd "${S}/${obj_dir}" |
| 272 |
|
| 273 |
# Copy our preference before omnijar is created. |
| 274 |
sed "s|SEAMONKEY_PVR|${PVR}|" "${FILESDIR}"/all-gentoo-1.js > \ |
| 275 |
"${S}/${obj_dir}/mozilla/dist/bin/defaults/pref/all-gentoo.js" \ |
| 276 |
|| die |
| 277 |
|
| 278 |
echo 'pref("extensions.autoDisableScopes", 3);' >> \ |
| 279 |
"${S}/${obj_dir}/mozilla/dist/bin/defaults/pref/all-gentoo.js" \ |
| 280 |
|| die |
| 281 |
|
| 282 |
# Without methodjit and tracejit there's no conflict with PaX |
| 283 |
if use jit ; then |
| 284 |
# Pax mark xpcshell for hardened support, only used for startupcache creation. |
| 285 |
pax-mark m "${S}"/dist/bin/xpcshell |
| 286 |
fi |
| 287 |
|
| 288 |
MOZ_MAKE_FLAGS="${MAKEOPTS}" \ |
| 289 |
emake DESTDIR="${D}" install || die "emake install failed" |
| 290 |
cp -f "${FILESDIR}"/icon/${PN}.desktop "${T}" || die |
| 291 |
|
| 292 |
if use crypt ; then |
| 293 |
cd "${T}" || die |
| 294 |
unzip "${S}"/${obj_dir}/mozilla/dist/bin/enigmail*.xpi install.rdf || die |
| 295 |
emid=$(sed -n '/<em:id>/!d; s/.*\({.*}\).*/\1/; p; q' install.rdf) |
| 296 |
|
| 297 |
dodir ${MOZILLA_FIVE_HOME}/extensions/${emid} || die |
| 298 |
cd "${D}"${MOZILLA_FIVE_HOME}/extensions/${emid} || die |
| 299 |
unzip "${S}"/${obj_dir}/mozilla/dist/bin/enigmail*.xpi || die |
| 300 |
|
| 301 |
cd "${S}" || die |
| 302 |
fi |
| 303 |
|
| 304 |
sed 's|^\(MimeType=.*\)$|\1text/x-vcard;text/directory;application/mbox;message/rfc822;x-scheme-handler/mailto;|' \ |
| 305 |
-i "${T}"/${PN}.desktop || die |
| 306 |
sed 's|^\(Categories=.*\)$|\1Email;|' -i "${T}"/${PN}.desktop \ |
| 307 |
|| die |
| 308 |
|
| 309 |
# Install language packs |
| 310 |
mozlinguas_src_install |
| 311 |
|
| 312 |
# Add StartupNotify=true bug 290401 |
| 313 |
if use startup-notification ; then |
| 314 |
echo "StartupNotify=true" >> "${T}"/${PN}.desktop |
| 315 |
fi |
| 316 |
|
| 317 |
# Install icon and .desktop for menu entry |
| 318 |
newicon "${S}"/suite/branding/nightly/content/icon64.png ${PN}.png \ |
| 319 |
|| die |
| 320 |
domenu "${T}"/${PN}.desktop || die |
| 321 |
|
| 322 |
# Without methodjit and tracejit there's no conflict with PaX |
| 323 |
if use jit ; then |
| 324 |
# Required in order to use plugins and even run firefox on hardened. |
| 325 |
pax-mark m "${ED}"${MOZILLA_FIVE_HOME}/{seamonkey,seamonkey-bin} |
| 326 |
fi |
| 327 |
|
| 328 |
# Plugin-container needs to be pax-marked for hardened to ensure plugins such as flash |
| 329 |
# continue to work as expected. |
| 330 |
pax-mark m "${ED}"${MOZILLA_FIVE_HOME}/plugin-container |
| 331 |
|
| 332 |
# Handle plugins dir through nsplugins.eclass |
| 333 |
share_plugins_dir |
| 334 |
|
| 335 |
doman "${S}"/${obj_dir}/suite/app/${PN}.1 || die |
| 336 |
} |
| 337 |
|
| 338 |
pkg_preinst() { |
| 339 |
MOZILLA_FIVE_HOME="${ROOT}/usr/$(get_libdir)/${PN}" |
| 340 |
|
| 341 |
if [ -d ${MOZILLA_FIVE_HOME}/plugins ] ; then |
| 342 |
rm ${MOZILLA_FIVE_HOME}/plugins -rf |
| 343 |
fi |
| 344 |
} |
| 345 |
|
| 346 |
pkg_postinst() { |
| 347 |
MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}" |
| 348 |
|
| 349 |
# Update mimedb for the new .desktop file |
| 350 |
fdo-mime_desktop_database_update |
| 351 |
|
| 352 |
if use chatzilla ; then |
| 353 |
elog "chatzilla is now an extension which can be en-/disabled and configured via" |
| 354 |
elog "the Add-on manager." |
| 355 |
fi |
| 356 |
} |