public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ben de Groot" <yngwin@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/qt:master commit in: www-client/qupzilla/
Date: Wed,  1 Oct 2014 03:02:55 +0000 (UTC)	[thread overview]
Message-ID: <1412132560.7a6dca6e6029eecbd7792b5f4b24db0784d66605.yngwin@gentoo> (raw)

commit:     7a6dca6e6029eecbd7792b5f4b24db0784d66605
Author:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  1 03:02:40 2014 +0000
Commit:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
CommitDate: Wed Oct  1 03:02:40 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=7a6dca6e

www-client/qupzilla: add ebuild for 1.8.0 WIP

---
 www-client/qupzilla/Manifest              |  2 +
 www-client/qupzilla/qupzilla-1.8.0.ebuild | 92 +++++++++++++++++++++++++++++++
 2 files changed, 94 insertions(+)

diff --git a/www-client/qupzilla/Manifest b/www-client/qupzilla/Manifest
new file mode 100644
index 0000000..56ef24c
--- /dev/null
+++ b/www-client/qupzilla/Manifest
@@ -0,0 +1,2 @@
+DIST qupzilla-1.8.0.tar.gz 4526759 SHA256 414e97d752eaac64f48992957123612461f5fed109f056f5451465a1a1610929 SHA512 321014033acf6cc2e6c986b58cef65a1ef4f13783b2320280b6b7f9a6f03548997521dc538a5a5e13521d806375f370e8f015be526e46f64bb67a9094340985c WHIRLPOOL a683fc8c06f9cee2ef2d34d301cd4c63e8b32cb4a5ceca0884c3f5554bf59b813937c0c27d229653acde8adaa272cfc3a2663bcabab15b645d3cf6ad59dd93cc
+DIST qupzilla-plugins-1.8.0.tar.gz 202290 SHA256 992066f55202c33b94fbb08507097d8588c31ec0a8a3142ff65f84d3090b832f SHA512 956e9301c297fce0d26fce5bbcda004f5c0ca5446e358c893e1c0f0811c4b33548e153755d067a9848138a2016936cc1974a196f8c0418203580651fbf1579d7 WHIRLPOOL d573004bc97cab49bfe0d535d9bb2370342c67cf18fe5bf6aa2245defbaa7268cffa6092698935476cbbbab73d63dbe38a90c9a3713d605c7c3cdbc360086c48

diff --git a/www-client/qupzilla/qupzilla-1.8.0.ebuild b/www-client/qupzilla/qupzilla-1.8.0.ebuild
new file mode 100644
index 0000000..9b22c99
--- /dev/null
+++ b/www-client/qupzilla/qupzilla-1.8.0.ebuild
@@ -0,0 +1,92 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/www-client/qupzilla/qupzilla-1.6.6.ebuild,v 1.1 2014/05/28 09:45:47 pinkbyte Exp $
+
+EAPI=5
+PLOCALES="ar_SA bg_BG ca_ES cs_CZ de_DE el_GR es_ES es_MX es_VE eu_ES fa_IR fi_FI fr_FR gl_ES he_IL hr_HR hu_HU id_ID it_IT ja_JP ka_GE lg lv_LV nl_NL nqo pl_PL pt_BR pt_PT ro_RO ru_RU sk_SK sr sr@ijekavian sr@ijekavianlatin sr@latin sv_SE tr_TR uk_UA uz@Latn zh_CN zh_TW"
+PLUGINS_HASH='4e0c457e106ec6365c93851adc33fafced354e7a'
+PLUGINS_VERSION='1.8.0' # if there are no updates, we can use the older archive
+
+inherit eutils l10n multilib qmake-utils vcs-snapshot
+
+DESCRIPTION="Qt WebKit web browser"
+HOMEPAGE="http://www.qupzilla.com/"
+SRC_URI="https://github.com/QupZilla/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
+	https://github.com/QupZilla/${PN}-plugins/archive/${PLUGINS_HASH}.tar.gz -> ${PN}-plugins-${PLUGINS_VERSION}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="dbus debug gnome-keyring kde nonblockdialogs +qt4 qt5"
+REQUIRED_USE="^^ ( qt4 qt5 )"
+
+RDEPEND="dev-libs/openssl:0
+	gnome-keyring? ( gnome-base/gnome-keyring )
+	kde? ( kde-base/kwalletd:4 )
+	qt4? ( >=dev-qt/qtcore-4.8:4
+		>=dev-qt/qtgui-4.8:4
+		>=dev-qt/qtscript-4.8:4
+		>=dev-qt/qtsql-4.8:4[sqlite]
+		>=dev-qt/qtwebkit-4.8:4
+		dbus? ( >=dev-qt/qtdbus-4.8:4 ) )
+	qt5? ( dev-qt/linguist-tools:5
+		dev-qt/qtcore:5
+		dev-qt/qtgui:5
+		dev-qt/qtconcurrent:5
+		dev-qt/qtprintsupport:5
+		dev-qt/qtscript:5
+		dev-qt/qtsql:5[sqlite]
+		dev-qt/qtwebkit:5
+		dbus? ( dev-qt/qtdbus:5 ) )"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+DOCS=( AUTHORS CHANGELOG FAQ README.md )
+
+src_prepare() {
+	rm_loc() {
+		# remove localizations that the user doesn't need
+		sed -i -e "/${1}.ts/d" translations/translations.pri || die
+		rm translations/${1}.ts || die
+	}
+
+	# remove outdated prebuilt localizations
+	rm -rf bin/locale || die
+
+	# remove empty locale
+	rm translations/empty.ts || die
+
+	# get extra plugins into qupzilla build tree
+	mv "${WORKDIR}"/${PN}-plugins-${PLUGINS_VERSION}/plugins/* "${S}"/src/plugins/ || die
+
+	l10n_find_plocales_changes "translations" "" ".ts"
+	l10n_for_each_disabled_locale_do rm_loc
+}
+
+src_configure() {
+	# see BUILDING document for explanation of options
+	export \
+		QUPZILLA_PREFIX="${EPREFIX}/usr/" \
+		USE_LIBPATH="${EPREFIX}/usr/$(get_libdir)" \
+		USE_QTWEBKIT_2_2=true \
+		DISABLE_DBUS=$(usex dbus '' 'true') \
+		KDE_INTEGRATION=$(usex kde 'true' '') \
+		NONBLOCK_JS_DIALOGS=$(usex nonblockdialogs 'true' '')
+
+	if use qt4 ; then
+		eqmake4 $(use gnome-keyring && echo "DEFINES+=GNOME_INTEGRATION")
+	else
+		eqmake5 $(use gnome-keyring && echo "DEFINES+=GNOME_INTEGRATION")
+	fi
+}
+
+src_install() {
+	emake INSTALL_ROOT="${D}" install
+	einstalldocs
+}
+
+pkg_postinst() {
+	if has_version www-plugins/adobe-flash; then
+		ewarn "For using adobe flash plugin you most likely need to run \"paxctl-ng -m /usr/bin/qupzilla\""
+	fi
+}


             reply	other threads:[~2014-10-01  3:03 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-01  3:02 Ben de Groot [this message]
  -- strict thread matches above, loose matches on Subject: below --
2018-06-12 16:05 [gentoo-commits] proj/qt:master commit in: www-client/qupzilla/ Andreas Sturmlechner
2017-08-26 14:52 Andreas Sturmlechner
2017-02-25 10:44 Michael Palimaka
2017-02-25 10:44 Michael Palimaka
2016-05-26 17:44 Davide Pesavento
2016-05-26 17:44 Davide Pesavento
2016-05-26 17:44 Davide Pesavento
2016-04-28 20:01 Davide Pesavento
2016-04-28 13:25 Davide Pesavento
2016-04-28 13:25 Davide Pesavento
2016-04-28 13:25 Davide Pesavento
2016-01-16 12:47 Michael Palimaka
2016-01-16 12:00 Michael Palimaka
2016-01-16 11:43 Michael Palimaka
2016-01-16 11:43 Michael Palimaka
2015-10-01 13:00 Michael Palimaka
2015-10-01 13:00 Michael Palimaka
2014-10-02  3:14 Ben de Groot
2014-06-18 19:31 Sergey Popov
2014-06-18 19:31 Sergey Popov
2014-06-18 13:07 Michael Palimaka
2013-01-29 21:21 Markos Chandras
2012-09-19  8:31 Ben de Groot
2012-09-17 16:58 Ben de Groot
2012-09-03  3:33 Ben de Groot
2012-03-31 13:17 Davide Pesavento
2012-03-03  4:02 Ben de Groot
2012-02-03 23:36 Johannes Huber
2012-02-03  4:22 Ben de Groot

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=1412132560.7a6dca6e6029eecbd7792b5f4b24db0784d66605.yngwin@gentoo \
    --to=yngwin@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