forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: portage-2.2.28
- Loading branch information
Jeroen Roovers
committed
Mar 16, 2016
1 parent
f117ac1
commit f5d3353
Showing
2 changed files
with
111 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
CHROMIUM_LANGS=" | ||
am ar bg bn ca cs da de el en_GB en_US es_419 es et fa fil fi fr gu he hi | ||
hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt_BR pt_PT ro ru sk sl sr sv | ||
sw ta te th tr uk vi zh_CN zh_TW | ||
" | ||
inherit chromium eutils multilib unpacker toolchain-funcs | ||
|
||
DESCRIPTION="A new browser for our friends" | ||
HOMEPAGE="http://vivaldi.com/" | ||
VIVALDI_BASE_URI="${HOMEPAGE}download/snapshot/${PN}-snapshot_${PV/_p/-}_" | ||
SRC_URI=" | ||
amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb ) | ||
x86? ( ${VIVALDI_BASE_URI}i386.deb -> ${P}-i386.deb ) | ||
" | ||
|
||
LICENSE="Vivaldi" | ||
SLOT="0" | ||
KEYWORDS="-* ~amd64 ~x86" | ||
|
||
RESTRICT="bindist mirror" | ||
|
||
S=${WORKDIR} | ||
|
||
RDEPEND=" | ||
dev-libs/expat | ||
dev-libs/glib:2 | ||
dev-libs/nspr | ||
dev-libs/nss | ||
>=dev-libs/openssl-1.0.1:0 | ||
gnome-base/gconf:2 | ||
media-libs/alsa-lib | ||
media-libs/fontconfig | ||
media-libs/freetype | ||
net-misc/curl | ||
net-print/cups | ||
sys-apps/dbus | ||
sys-libs/libcap | ||
x11-libs/cairo | ||
x11-libs/gdk-pixbuf | ||
x11-libs/gtk+:2 | ||
x11-libs/libX11 | ||
x11-libs/libXScrnSaver | ||
x11-libs/libXcomposite | ||
x11-libs/libXcursor | ||
x11-libs/libXdamage | ||
x11-libs/libXext | ||
x11-libs/libXfixes | ||
x11-libs/libXi | ||
x11-libs/libXrandr | ||
x11-libs/libXrender | ||
x11-libs/libXtst | ||
x11-libs/pango[X] | ||
" | ||
|
||
QA_PREBUILT="*" | ||
S=${WORKDIR} | ||
VIVALDI_HOME="opt/${PN}-snapshot" | ||
|
||
src_unpack() { | ||
unpack_deb ${A} | ||
} | ||
|
||
src_prepare() { | ||
sed -i \ | ||
-e "s|@LIBDIR@|$(get_libdir)|g" \ | ||
opt/vivaldi-snapshot/vivaldi-snapshot || die | ||
|
||
sed -i \ | ||
-e 's|vivaldi-snapshot|vivaldi|g' \ | ||
usr/share/applications/${PN}-snapshot.desktop \ | ||
usr/share/xfce4/helpers/${PN}-snapshot.desktop || die | ||
|
||
mv usr/share/doc/${PN}-snapshot usr/share/doc/${PF} || die | ||
|
||
rm \ | ||
_gpgbuilder \ | ||
etc/cron.daily/${PN}-snapshot \ | ||
usr/bin/${PN}-snapshot \ | ||
|| die | ||
rmdir \ | ||
etc/cron.daily/ \ | ||
etc/ \ | ||
|| die | ||
|
||
local c d | ||
for d in 16 22 24 32 48 64 128 256; do | ||
mkdir -p usr/share/icons/hicolor/${d}x${d}/apps || die | ||
cp \ | ||
${VIVALDI_HOME}/product_logo_${d}.png \ | ||
usr/share/icons/hicolor/${d}x${d}/apps/vivaldi.png || die | ||
done | ||
|
||
pushd "${VIVALDI_HOME}/locales" > /dev/null || die | ||
chromium_remove_language_paks | ||
popd > /dev/null || die | ||
|
||
} | ||
|
||
src_install() { | ||
mv * "${D}" || die | ||
dosym /${VIVALDI_HOME}/${PN}-snapshot /usr/bin/${PN} | ||
|
||
fperms 4711 /${VIVALDI_HOME}/${PN}-sandbox | ||
} |