mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
www-client/otter: Old.
Package-Manager: Portage-2.3.40, Repoman-2.3.9
This commit is contained in:
@@ -1,3 +1,2 @@
|
||||
DIST otter-0.9.97.tar.gz 4656799 BLAKE2B 0ac51063f5ed87724db0a5072c463f2768810eeb394fd7c0d492bb67ed61520a7a9f5d94468630dbc87447f34f3041158dee9355af4359cce768ea8db29981af SHA512 2e11a20a5888632644b2bb99dcc550092c4132dfbfa72a1f75a9b22082676bf7cf7656d617e7d245763f07692778b0040404151eaf835b306945e92e1ac23efe
|
||||
DIST otter-0.9.98.tar.gz 4678111 BLAKE2B c6e71b4e48ba47c4e86f60c6a7b04926052aad46bc03215ef7ff8588933b8a97d9a84973326d13d9bae8db73645112496b9e9f4d2e8a81a4a0ec5b58a0967691 SHA512 7b467db87ea512097a3d39fdf892917cb70e1575d1ca9bb1040e857313fa391a9faa51405f172e8ed8480bc088202b5f0881635a46d3bf98e9d627160b3250b8
|
||||
DIST otter-0.9.99.tar.gz 4758228 BLAKE2B 503f94bb341e4a1701b8935cb14d7b972f0a212a1c626743a2758e95d864be534737d320daf142738a983a95512c1985aa035afdd33ac62ac2947a68403c49dd SHA512 7178dc9e7b7ecb9a1e9e4910616366f7e4186be592795cd6f9674238b1f94855cec2fa4065651491265f9d713ca8149aca225feff85fff62938580a050ca1afc
|
||||
|
||||
@@ -1,86 +0,0 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
inherit eutils cmake-utils gnome2-utils xdg-utils
|
||||
|
||||
DESCRIPTION="Project aiming to recreate classic Opera (12.x) UI using Qt5"
|
||||
HOMEPAGE="http://otter-browser.org/"
|
||||
SRC_URI="https://github.com/OtterBrowser/${PN}-browser/archive/v${PV/_p/-dev}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc64 ~x86"
|
||||
IUSE="webengine +webkit spell"
|
||||
REQUIRED_USE="
|
||||
|| ( webengine webkit )
|
||||
"
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtconcurrent:5
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtdbus:5
|
||||
dev-qt/qtdeclarative:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtmultimedia:5
|
||||
dev-qt/qtnetwork:5[ssl]
|
||||
dev-qt/qtprintsupport:5
|
||||
dev-qt/qtscript:5
|
||||
dev-qt/qtsql:5
|
||||
dev-qt/qtsvg:5
|
||||
dev-qt/qtwidgets:5
|
||||
dev-qt/qtxmlpatterns:5
|
||||
spell? ( kde-frameworks/sonnet )
|
||||
webengine? ( >=dev-qt/qtwebengine-5.9:5[widgets] )
|
||||
webkit? ( dev-qt/qtwebkit:5 )
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
S=${WORKDIR}/${PN}-browser-${PV/_p/-dev}
|
||||
DOCS=( CHANGELOG CONTRIBUTING.md TODO )
|
||||
|
||||
src_prepare() {
|
||||
cmake-utils_src_prepare
|
||||
|
||||
if [[ -n ${LINGUAS} ]]; then
|
||||
local lingua
|
||||
for lingua in resources/translations/*.qm; do
|
||||
lingua=$(basename ${lingua})
|
||||
lingua=${lingua/otter-browser_/}
|
||||
lingua=${lingua/.qm/}
|
||||
if ! has ${lingua} ${LINGUAS}; then
|
||||
rm resources/translations/otter-browser_${lingua}.qm || die
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
if ! use spell; then
|
||||
sed -i -e '/find_package(KF5Sonnet)/d' CMakeLists.txt || die
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
mycmakeargs=(
|
||||
-DENABLE_QTWEBENGINE="$(usex webengine)"
|
||||
-DENABLE_QTWEBKIT="$(usex webkit)"
|
||||
)
|
||||
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake-utils_src_install
|
||||
domenu ${PN}-browser.desktop
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
gnome2_icon_cache_update
|
||||
xdg_desktop_database_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
gnome2_icon_cache_update
|
||||
xdg_desktop_database_update
|
||||
}
|
||||
Reference in New Issue
Block a user