mirror of
https://github.com/gryf/webbrowser-overlay.git
synced 2026-01-01 03:22:33 +01:00
Added ebuilds for version 29.2.0 and 29.3.0.
This commit is contained in:
153
eclass/webbrowser-1.eclass
Normal file
153
eclass/webbrowser-1.eclass
Normal file
@@ -0,0 +1,153 @@
|
||||
inherit check-reqs gnome2-utils toolchain-funcs xdg-utils
|
||||
|
||||
EXPORT_FUNCTIONS pkg_pretend pkg_preinst pkg_postinst pkg_postrm pkg_setup
|
||||
|
||||
|
||||
###
|
||||
# Package
|
||||
###
|
||||
|
||||
webbrowser-1_pkg_pretend() {
|
||||
# Ensure that we have enough disk space to compile:
|
||||
CHECKREQS_DISK_BUILD=${REQUIRED_BUILDSPACE}
|
||||
check-reqs_pkg_setup
|
||||
}
|
||||
|
||||
webbrowser-1_pkg_preinst() {
|
||||
gnome2_icon_savelist
|
||||
}
|
||||
|
||||
webbrowser-1_pkg_postinst() {
|
||||
# Update mimedb for the new .desktop file:
|
||||
xdg_desktop_database_update
|
||||
gnome2_icon_cache_update
|
||||
}
|
||||
|
||||
webbrowser-1_pkg_postrm() {
|
||||
gnome2_icon_cache_update
|
||||
}
|
||||
|
||||
webbrowser-1_pkg_setup() {
|
||||
# Nested configure scripts in mozilla products generate unrecognized
|
||||
# options false positives when toplevel configure passes downwards:
|
||||
export QA_CONFIGURE_OPTIONS=".*"
|
||||
}
|
||||
|
||||
|
||||
###
|
||||
# Messages
|
||||
###
|
||||
|
||||
official-branding_warning() {
|
||||
elog "You are enabling the official branding. You may not redistribute this build"
|
||||
elog "to any users on your network or the internet. Doing so puts yourself into"
|
||||
elog "a legal problem with Moonchild Productions."
|
||||
elog "You can disable the official branding by emerging ${PN} _without_"
|
||||
elog "the official-branding USE flag."
|
||||
}
|
||||
|
||||
unsupported_compiler_warning() {
|
||||
ewarn "Building Pale Moon with a compiler other than a supported gcc version"
|
||||
ewarn "may result in an unstable build."
|
||||
ewarn "Be aware that building Pale Moon with an unsupported compiler"
|
||||
ewarn "means that the official support channels may refuse to offer any"
|
||||
ewarn "kind of help in case the build fails or the browser behaves incorrectly."
|
||||
ewarn "Supported GCC versions: ${GCC_SUPPORTED_VERSIONS// /, }"
|
||||
if [[ "$1" == "gcc" ]]; then
|
||||
ewarn "Selected GCC version: $(gcc-version)"
|
||||
else
|
||||
ewarn "Unsupported compiler selected: $1"
|
||||
fi
|
||||
ewarn "To disable this warning unset the PALEMOON_ENABLE_UNSUPPORTED_COMPILERS"
|
||||
ewarn "environment variable."
|
||||
}
|
||||
|
||||
unsupported_compiler_error() {
|
||||
eerror "Building Pale Moon with a compiler other than a supported gcc version"
|
||||
eerror "may result in an unstable build."
|
||||
eerror "You can use gcc-config to change your compiler profile, just remember"
|
||||
eerror "to change it back afterwards."
|
||||
eerror "You need to have the appropriate versions of gcc installed for them"
|
||||
eerror "to be shown in gcc-config."
|
||||
eerror "Alternatively, you can set the PALEMOON_ENABLE_UNSUPPORTED_COMPILERS"
|
||||
eerror "environment variable to 1 either by exporting it from the current shell"
|
||||
eerror "or by adding it to your make.conf file."
|
||||
eerror "Be aware though that building Pale Moon with an unsupported compiler"
|
||||
eerror "means that the official support channels may refuse to offer any"
|
||||
eerror "kind of help in case the build fails or the browser behaves incorrectly."
|
||||
eerror "Supported GCC versions: ${GCC_SUPPORTED_VERSIONS// /, }"
|
||||
if [[ "$1" == "gcc" ]]; then
|
||||
eerror "Selected GCC version: $(gcc-version)"
|
||||
else
|
||||
eerror "Unsupported compiler selected: $1"
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
###
|
||||
# Configuration
|
||||
###
|
||||
|
||||
mozconfig_init() {
|
||||
echo "ac_add_options --enable-application=webbrowser" > "${S}/.mozconfig"
|
||||
}
|
||||
|
||||
mozconfig_enable() {
|
||||
for option in "$@"; do
|
||||
echo "ac_add_options --enable-${option}" >> "${S}/.mozconfig"
|
||||
done
|
||||
}
|
||||
|
||||
mozconfig_disable() {
|
||||
for option in "$@"; do
|
||||
echo "ac_add_options --disable-${option}" >> "${S}/.mozconfig"
|
||||
done
|
||||
}
|
||||
|
||||
mozconfig_with() {
|
||||
for option in "$@"; do
|
||||
echo "ac_add_options --with-${option}" >> "${S}/.mozconfig"
|
||||
done
|
||||
}
|
||||
|
||||
mozconfig_opt() {
|
||||
echo "mk_add_options $1=$2" >> "${S}/.mozconfig"
|
||||
}
|
||||
|
||||
mozconfig_var() {
|
||||
echo "$1=$2" >> "${S}/.mozconfig"
|
||||
}
|
||||
|
||||
mozconfig_ac() {
|
||||
echo "ac_add_options $1=$2" >> "${S}/.mozconfig"
|
||||
}
|
||||
|
||||
set_pref() {
|
||||
echo "pref(\"$1\", $2);" >> "${S}/${obj_dir}/dist/bin/browser/defaults/preferences/palemoon.js"
|
||||
}
|
||||
|
||||
|
||||
###
|
||||
# Branding
|
||||
###
|
||||
|
||||
install_branding_files() {
|
||||
cp -rL "${S}/${obj_dir}/dist/branding" "${extracted_dir}/"
|
||||
local size sizes icon_path icon name
|
||||
sizes="16 32 48"
|
||||
icon_path="${extracted_dir}/branding"
|
||||
icon="${PN}"
|
||||
name="WebBrowser"
|
||||
for size in ${sizes}; do
|
||||
insinto "/usr/share/icons/hicolor/${size}x${size}/apps"
|
||||
newins "${icon_path}/default${size}.png" "${icon}.png"
|
||||
done
|
||||
# The 128x128 icon has a different name:
|
||||
insinto "/usr/share/icons/hicolor/128x128/apps"
|
||||
newins "${icon_path}/mozicon128.png" "${icon}.png"
|
||||
# Install a 48x48 icon into /usr/share/pixmaps for legacy DEs:
|
||||
newicon "${icon_path}/default48.png" "${icon}.png"
|
||||
newmenu "${FILESDIR}/icon/${PN}.desktop" "${PN}.desktop"
|
||||
sed -i -e "s:@NAME@:${name}:" -e "s:@ICON@:${icon}:" \
|
||||
"${ED}/usr/share/applications/${PN}.desktop" || die
|
||||
}
|
||||
Reference in New Issue
Block a user